/*
Theme Name: ECV-Play
Theme URI: https://ecv-play.nl
Author: ECVesports
Author URI: https://ecvisualize.nl
Description: Custom theme for ECV-Play - Nederlandse CS2 Community. Dark gaming theme with teal/cyan accents.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ecv-play
Tags: gaming, esports, dark, custom-logo, custom-menu, featured-images
*/

/* ========================================
   CSS Variables - ECV-Play Branding
   ECVesports Teal/Cyan Color Scheme
   ======================================== */
:root {
    /* ECVesports Teal/Cyan Accent */
    --primary: #3dbdaa;
    --primary-hover: #4dd4c0;
    --primary-dark: #18534c;
    --primary-glow: rgba(61, 189, 170, 0.15);

    /* Light Theme - Clean and modern */
    --secondary: #E8EEF2;
    --surface: #DCE4E8;
    --surface-light: #E5EBEF;
    --surface-lighter: #D2DADF;
    --surface-glass: rgba(232, 238, 242, 0.95);

    /* Dark Typography for Light Mode */
    --text-primary: #001522;
    --text-secondary: #184763;
    --text-muted: #5A7080;

    /* Muted Accent Colors */
    --success: #22875A;
    --error: #C53030;
    --warning: #C08A2D;
    --info: #3dbdaa;

    /* Brand Colors - Third Party */
    --discord: #D8E0E6;
    --discord-hover: #C8D4DC;
    --twitch: #DDD7E6;
    --twitch-hover: #CCC6DC;
    --stream: #DDD7E6;
    --stream-hover: #CCC6DC;

    /* Borders & Effects for Light Mode */
    --border: rgba(0, 21, 34, 0.10);
    --border-light: rgba(0, 21, 34, 0.14);
    --shadow-sm: 0 1px 3px rgba(0, 21, 34, 0.10), 0 1px 2px rgba(0, 21, 34, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 21, 34, 0.10);
    --shadow-lg: 0 10px 30px rgba(0, 21, 34, 0.12);
    --shadow-glow: 0 0 20px rgba(61, 189, 170, 0.15);

    /* Typography */
    --font-heading: 'Rajdhani', 'Segoe UI', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing & Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --radius-full: 9999px;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   Dark Theme Variables (Toggle)
   ======================================== */
[data-theme="dark"] {
    /* ECVesports Teal/Cyan Accent - Brighter for dark mode */
    --primary: #3dbdaa;
    --primary-hover: #5ad4c2;
    --primary-dark: #18534c;
    --primary-glow: rgba(61, 189, 170, 0.20);

    /* ECVesports Dark Theme - Deep Navy/Black */
    --secondary: #001522;
    --surface: #0a2233;
    --surface-light: #184763;
    --surface-lighter: #1f5570;
    --surface-glass: rgba(0, 21, 34, 0.95);

    /* Light Typography for Dark Mode */
    --text-primary: #F5F8FA;
    --text-secondary: #A8C0D0;
    --text-muted: #6B8899;

    /* Muted Accent Colors */
    --success: #2D9D6B;
    --error: #D45454;
    --warning: #D9A03D;
    --info: #3dbdaa;

    /* Borders & Effects for Dark Mode */
    --border: rgba(61, 189, 170, 0.10);
    --border-light: rgba(61, 189, 170, 0.15);
    --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 25px var(--primary-glow);
}


/* ========================================
   Theme Toggle Button
   ======================================== */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-secondary);
    flex-shrink: 0;
}

.theme-toggle:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.theme-toggle svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.theme-toggle:hover svg {
    transform: rotate(15deg);
}

/* Light theme default: show moon icon (to switch to dark) */
.theme-toggle .icon-sun {
    display: none;
}

.theme-toggle .icon-moon {
    display: block;
}

/* Dark theme: show sun icon (to switch to light) */
[data-theme="dark"] .theme-toggle .icon-sun {
    display: block;
}

[data-theme="dark"] .theme-toggle .icon-moon {
    display: none;
}

[data-theme="dark"] .theme-toggle {
    background: var(--surface-light);
    border: 1px solid var(--border);
}

/* ========================================
   Logo Theming
   ======================================== */

/* ECV-Play Logo - Keep original colors (has orange accents) */
.site-logo-img,
.hero-logo {
    filter: none;
    transition: filter 0.3s ease;
}

/* ECVesports Logo (white logo) - make dark in light mode */
.header-ecvesports-logo img,
.ecv-partnership-logo img,
.footer-ecv-logo,
.ecv-logo-img,
.ecv-logo,
.ecv-logo-contact,
.ecv-logo-large img,
.ecv-banner-logo img,
.ecv-home-logo img {
    filter: brightness(0) saturate(100%);
    transition: filter 0.3s ease;
}

/* Dark mode: ECVesports logos become white */
[data-theme="dark"] .header-ecvesports-logo img,
[data-theme="dark"] .ecv-partnership-logo img,
[data-theme="dark"] .footer-ecv-logo,
[data-theme="dark"] .ecv-logo-img,
[data-theme="dark"] .ecv-logo,
[data-theme="dark"] .ecv-logo-contact,
[data-theme="dark"] .ecv-logo-large img,
[data-theme="dark"] .ecv-banner-logo img,
[data-theme="dark"] .ecv-home-logo img {
    filter: brightness(0) invert(1);
}

/* Logos in section-light always dark (light background regardless of theme) */
.section-light .ecv-logo,
.section-light .ecv-logo-img,
.section-light .ecv-logo-large img,
.section-light .ecv-logo-contact {
    filter: brightness(0) !important;
    opacity: 0.85 !important;
}

/* ECV-Play logo keeps colors in both themes */

/* Smooth theme transition */
body {
    transition: background-color 0.3s ease, color 0.3s ease;
}

.site-header,
.card,
.live-card,
.event-card,
.section,
.site-footer,
.btn-secondary {
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

/* ========================================
   Reset & Base Styles
   ======================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: #001522;
    background-image: url('assets/images/background.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-hover);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* ========================================
   Layout
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Main Content - Account for fixed header + announcement bar */
.site-main {
    padding-top: 110px; /* 32px announcement bar + ~78px header */
}

/* Pages with hero section handle their own spacing */
.site-main:has(.hero) {
    padding-top: 0;
}

/* Community page hero also handles own spacing */
.site-main:has(.community-hero) {
    padding-top: 0;
}

/* Play Hub hero extends under header */
.site-main:has(.play-hub) {
    padding-top: 0;
}

.site-main:has(.play-hub) .play-hub-hero {
    margin-top: 0;
    padding-top: calc(110px + 5rem);
}

/* ========================================
   Top Announcement Bar with Typing Animation
   ======================================== */
.top-announcement-bar {
    background-color: rgba(0, 21, 34, 0.8);
    background-image: url('assets/images/background2.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    padding: 0.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    border-bottom: 1px solid rgba(61, 189, 170, 0.25);
}

.top-announcement-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.typing-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.typing-static {
    color: rgba(255, 255, 255, 0.7);
}

.typing-dynamic {
    color: var(--primary);
    font-weight: 700;
}

.typing-dynamic::after {
    content: '|';
    color: var(--primary);
    animation: blink 0.8s infinite;
    font-weight: 300;
    margin-left: 1px;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* ========================================
   Header & Navigation
   ======================================== */
/* Light Theme Header (Default) */
.site-header {
    background-color: rgba(0, 21, 34, 0.7);
    background-image: url('assets/images/background2.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    position: fixed;
    top: 32px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(61, 189, 170, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Dark Theme Header */
[data-theme="dark"] .site-header {
    background-color: rgba(0, 21, 34, 0.75);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

/* Left and right sides equal width for centered nav */
.site-logo {
    flex: 1 1 0;
    min-width: 0;
}

/* Right side header elements wrapper */
.header-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1 1 0;
    min-width: 0;
    justify-content: flex-end;
}

/* Admin Panel Link */
.admin-panel-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.85rem;
    background: var(--surface-light);
    color: var(--text-primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    transition: var(--transition-fast);
}

.admin-panel-link svg {
    width: 16px;
    height: 16px;
}

.admin-panel-link:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

@media (max-width: 768px) {
    .admin-panel-link span {
        display: none;
    }
    .admin-panel-link {
        padding: 0.45rem;
    }
}

/* Header Login Button */
.header-login-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.85rem;
    background: var(--primary);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.header-login-btn svg {
    width: 16px;
    height: 16px;
}

.header-login-btn:hover {
    background: var(--primary-hover);
    color: #fff;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .header-login-btn span {
        display: none;
    }
    .header-login-btn {
        padding: 0.45rem;
    }
}

/* Header Register Button */
.header-register-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.85rem;
    background: transparent;
    color: var(--text-primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    transition: var(--transition-fast);
}

.header-register-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

@media (max-width: 768px) {
    .header-register-btn {
        display: none;
    }
}

/* Header User Menu */
.header-user-menu {
    position: relative;
}

.header-user-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.7rem;
    background: var(--surface-light);
    color: var(--text-primary);
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-fast);
}

.header-user-btn svg {
    width: 16px;
    height: 16px;
}

.header-user-btn .chevron {
    width: 14px;
    height: 14px;
    transition: transform 0.2s ease;
}

.header-user-btn:hover {
    border-color: var(--primary);
}

.header-user-menu.open .header-user-btn .chevron {
    transform: rotate(180deg);
}

.header-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    min-width: 160px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1000;
}

.header-user-menu.open .header-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-dropdown a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: background 0.15s ease;
}

.header-dropdown a:first-child {
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.header-dropdown a:last-child {
    border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.header-dropdown a:hover {
    background: var(--surface-light);
}

.header-dropdown svg {
    width: 16px;
    height: 16px;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .header-user-btn span {
        display: none;
    }
    .header-user-btn .chevron {
        display: none;
    }
    .header-user-btn {
        padding: 0.45rem;
    }
}

/* Header CTA Button */
.header-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.header-cta-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(61, 189, 170, 0.3);
}

.header-cta-btn svg {
    transition: transform 0.2s ease;
}

.header-cta-btn:hover svg {
    transform: translateX(2px);
}

@media (max-width: 768px) {
    .header-cta-btn {
        padding: 0.375rem 0.75rem;
        font-size: 0.75rem;
    }

    .header-cta-btn span {
        display: none;
    }

    .header-cta-btn svg {
        width: 16px;
        height: 16px;
    }
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0;
}

/* Header Partner */
.header-partner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius);
    background: rgba(61, 189, 170, 0.1);
    border: 1px solid rgba(61, 189, 170, 0.2);
    transition: all 0.2s ease;
}

.header-partner:hover {
    background: rgba(61, 189, 170, 0.2);
    border-color: var(--primary);
}

.partner-label {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary);
}

.header-cph-image {
    height: 28px;
    width: auto;
    object-fit: contain;
}

/* Theme Toggle - Better styling */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--surface-light);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.2s ease;
}

.theme-toggle:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.theme-toggle:hover svg {
    stroke: white;
}

.theme-toggle svg {
    width: 18px;
    height: 18px;
    stroke: var(--text-secondary);
    transition: all 0.2s ease;
}

/* Hide site logo on play page (already in main header) */
.is-play-page .site-logo {
    visibility: hidden;
}

.site-logo img,
.site-logo-img {
    height: 45px;
    width: auto;
}

.site-logo-img {
    margin-right: 0.25rem;
}

/* Brand text wrapper (title + slogan) */
.site-brand-text {
    display: flex;
    flex-direction: column;
    margin-left: -25px;
}

.site-slogan {
    font-size: 0.55rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Video Logo Styling */
.site-logo-video-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.site-logo-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.site-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    white-space: nowrap;
}

.site-title span {
    color: var(--primary);
}

/* ECV Rotating Text Animation */
.ecv-rotating-text {
    display: inline-block;
    position: relative;
    min-width: 185px;
    height: 1em;
    overflow: hidden;
    vertical-align: baseline;
    line-height: 1;
}

.ecv-rotating-text .ecv-word {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    line-height: 1;
    opacity: 0;
    transform: translateY(100%);
    animation: ecv-rotate-words 6s infinite;
    color: var(--primary);
    font-weight: 700;
    white-space: nowrap;
}

.ecv-rotating-text .ecv-word:nth-child(1) {
    animation-delay: 0s;
}

.ecv-rotating-text .ecv-word:nth-child(2) {
    animation-delay: 2s;
}

.ecv-rotating-text .ecv-word:nth-child(3) {
    animation-delay: 4s;
}

@keyframes ecv-rotate-words {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }
    5%, 28% {
        opacity: 1;
        transform: translateY(0);
    }
    33%, 100% {
        opacity: 0;
        transform: translateY(-100%);
    }
}

/* ECVesports Logo (right side) */
.header-ecvesports-logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    opacity: 0.85;
    transition: var(--transition);
}

.header-ecvesports-logo:hover {
    opacity: 1;
}

.header-ecvesports-logo img {
    height: 50px;
    width: auto;
    max-width: none;
    object-fit: contain;
}

/* Navigation */
.main-navigation {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    color: var(--text-secondary);
    font-weight: 600;
    padding: 0.6rem 1rem;
    position: relative;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.75px;
    border-radius: var(--radius-sm);
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* Underline animation from center */
.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.main-navigation a:hover {
    color: var(--text-primary);
    background: var(--surface-light);
}

.main-navigation a:hover::after {
    width: 60%;
}

.main-navigation .current-menu-item a {
    color: var(--primary);
    background: rgba(61, 189, 170, 0.1);
}

.main-navigation .current-menu-item a::after {
    width: 80%;
    background: var(--primary);
}

/* Dropdown Menu Support */
.main-navigation .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 200px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    z-index: 100;
    flex-direction: column;
    gap: 0;
}

.main-navigation li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.main-navigation .sub-menu li {
    width: 100%;
}

.main-navigation .sub-menu a {
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
    text-transform: none;
    letter-spacing: 0;
    border-radius: var(--radius-sm);
    width: 100%;
}

.main-navigation .sub-menu a::after {
    display: none;
}

.main-navigation .sub-menu a:hover {
    background: var(--primary);
    color: #fff;
}

/* Dropdown arrow for items with children */
.main-navigation .menu-item-has-children > a::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    margin-left: auto;
    transition: transform 0.25s ease;
}

.main-navigation .menu-item-has-children:hover > a::before {
    transform: rotate(180deg);
}

/* Special Play Button Effect for "Play" menu item */
.main-navigation .menu-item a[href*="/play"]::before,
.main-navigation .menu-item a[href$="/play/"]::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 8px solid currentColor;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin-right: -8px;
}

.main-navigation .menu-item a[href*="/play"]:hover::before,
.main-navigation .menu-item a[href$="/play/"]:hover::before {
    opacity: 1;
    transform: scale(1);
    margin-right: 0.5rem;
}

.main-navigation .menu-item a[href*="/play"]:hover,
.main-navigation .menu-item a[href$="/play/"]:hover {
    color: var(--primary);
    padding-left: 0.5rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem 0.75rem;
    transition: var(--transition);
    z-index: 1001;
}

.menu-toggle:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.menu-toggle .hamburger {
    display: block;
    line-height: 1;
}

/* Mobile Navigation Styles */
@media (max-width: 900px) {
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--surface);
        border-left: 1px solid var(--border);
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
        padding: 5rem 1.5rem 2rem;
        transition: right 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }

    .main-navigation.active {
        right: 0;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 0;
    }

    .main-navigation li {
        border-bottom: 1px solid var(--border);
    }

    .main-navigation a {
        display: block;
        padding: 1rem 0;
        font-size: 1rem;
        background: none;
        border-radius: 0;
    }

    .main-navigation a:hover {
        background: none;
        color: var(--primary);
    }

    .main-navigation a::after {
        display: none;
    }

    .main-navigation .menu-item-has-children > a::before {
        display: none;
    }

    /* Mobile Sub-menu */
    .main-navigation .sub-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        min-width: 100%;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0 0 0 1rem;
        border-left: 2px solid var(--primary);
        margin-left: 0.5rem;
    }

    .main-navigation .sub-menu a {
        padding: 0.75rem 0;
        font-size: 0.9rem;
    }

    .main-navigation .sub-menu a:hover {
        background: none;
        color: var(--primary);
    }

    /* Mobile Menu Overlay */
    .menu-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 998;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Mobile Close Button */
    .mobile-menu-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        background: var(--surface-light);
        border: 1px solid var(--border);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: var(--text-primary);
        font-size: 1.25rem;
        transition: var(--transition);
    }

    .mobile-menu-close:hover {
        background: var(--error);
        border-color: var(--error);
        color: white;
    }

    /* Header Right on Mobile */
    .header-right {
        gap: 0.5rem;
    }

    .header-ecvesports-logo {
        display: none;
    }
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    min-height: auto;
    padding: 9rem 0 3rem; /* Extra 2rem to account for announcement bar */
    display: flex;
    align-items: center;
    background: #001522;
    position: relative;
    overflow: hidden;
}

/* ECVesports style background with diagonal lines */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 80px,
            rgba(61, 189, 170, 0.03) 80px,
            rgba(61, 189, 170, 0.03) 82px
        ),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 120px,
            rgba(24, 71, 99, 0.15) 120px,
            rgba(24, 71, 99, 0.15) 122px
        ),
        radial-gradient(ellipse at 70% 20%, rgba(61, 189, 170, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 80%, rgba(24, 71, 99, 0.12) 0%, transparent 40%);
    z-index: 1;
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    inset: -10px;
    background-size: cover;
    background-position: center right;
    opacity: 0.4;
    filter: blur(3px);
}

/* Hero Background Overlay - Dark gradient for readability */
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 21, 34, 0.9) 0%, rgba(0, 21, 34, 0.7) 50%, rgba(0, 21, 34, 0.4) 100%);
}

/* Hero Container */
.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 4rem;
    align-items: center;
}

/* Hero Content - Left Side */
.hero-content {
    max-width: 580px;
}

/* Hero Brand */
.hero-brand {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 2rem;
}

.hero-logo {
    width: auto;
    height: 64px;
    flex-shrink: 0;
}

/* Hero Video Logo */
.hero-logo-video-wrapper {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(61, 189, 170, 0.2);
    border: 2px solid rgba(61, 189, 170, 0.3);
}

.hero-logo-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-brand-text {
    display: flex;
    flex-direction: column;
    margin-left: -20px;
}

.hero-brand-name {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff; /* Always white on dark hero background */
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.hero-brand-name span {
    color: var(--primary);
}

.hero-brand-name .ecv-rotating-text {
    height: 1em;
    vertical-align: baseline;
    line-height: 1;
}

.hero-brand-name .ecv-rotating-text .ecv-word {
    color: var(--primary);
}

.hero-brand-tagline {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7); /* Always light on dark hero background */
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Title */
.hero-title {
    margin-bottom: 1.25rem;
}

.hero-title-main {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #fff; /* Always white on dark hero background */
    line-height: 1.1;
    font-style: italic;
}

/* Hero Text */
.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85); /* Always light on dark hero background */
    line-height: 1.7;
    margin-bottom: 2rem;
}

.nl-flag-img {
    height: 1em;
    width: auto;
    vertical-align: baseline;
    margin: 0 0.25em;
    border-radius: 2px;
    position: relative;
    top: 0.1em;
}

/* Hero Live Badge */
.hero-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    padding: 0.5rem 1rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #22c55e;
}

.hero-live-badge .live-dot {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 0.75rem;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: var(--primary);
    color: white;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-md);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 123, 42, 0.35);
    color: white;
}

.btn-hero-discord {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: rgba(88, 101, 242, 0.15);
    border: 1px solid rgba(88, 101, 242, 0.3);
    color: #5865F2;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-md);
    transition: background 0.2s, border-color 0.2s;
}

.btn-hero-discord:hover {
    background: rgba(88, 101, 242, 0.25);
    border-color: #5865F2;
    color: #5865F2;
}

/* Hero Sidebar - Right Side */
.hero-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Stats Card */
.hero-stats-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.25rem 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.hero-stats-card .hero-stat {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.hero-stats-card .stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--primary-glow);
    border-radius: var(--radius-md);
    margin-bottom: 0.25rem;
}

.hero-stats-card .stat-icon svg {
    color: var(--primary);
}

.hero-stats-card .stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.hero-stats-card .stat-label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Event Card */
.hero-event-card {
    display: block;
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(61, 189, 170, 0.3);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.hero-event-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('assets/images/cs2-hero.jpg') center center / cover no-repeat;
    filter: blur(3px);
    z-index: 0;
}

.hero-event-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 21, 34, 0.8) 0%, rgba(24, 71, 99, 0.85) 100%);
    z-index: 1;
}

.hero-event-card > * {
    position: relative;
    z-index: 2;
}

.hero-event-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.hero-event-card .event-label {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 0.875rem;
    font-weight: 600;
}

.hero-event-card .event-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-event-card .event-date {
    text-align: center;
    padding: 0.5rem 0.75rem;
    background: var(--primary);
    border-radius: var(--radius-sm);
    color: white;
    min-width: 52px;
}

.hero-event-card .date-day {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1;
}

.hero-event-card .date-month {
    display: block;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

a.hero-event-card .event-details h4,
.hero-event-card .event-details h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.125rem;
    color: var(--text-primary);
}

a.hero-event-card .event-details p,
.hero-event-card .event-details p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
}

/* Discord Widget */
.hero-discord-widget {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.hero-discord-widget:hover {
    border-color: rgba(88, 101, 242, 0.4);
    box-shadow: 0 8px 24px rgba(88, 101, 242, 0.15);
}

.hero-discord-widget iframe {
    display: block;
}

/* Video Card */
.hero-video-card {
    display: block;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: var(--shadow-sm);
}

.hero-video-card:hover {
    border-color: rgba(255, 0, 0, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 0, 0, 0.15);
}

.hero-video-card .video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.hero-video-card .video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-card .video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    opacity: 1;
    transition: opacity 0.2s, background 0.2s;
}

.hero-video-card:hover .video-overlay {
    background: rgba(255, 0, 0, 0.5);
}

.hero-video-card .video-play-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff0000;
    transition: transform 0.2s, background 0.2s;
}

.hero-video-card:hover .video-play-btn {
    transform: scale(1.1);
    background: white;
}

.hero-video-card .video-card-info {
    padding: 0.875rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--surface-light);
    border-top: 1px solid var(--border);
}

.hero-video-card .video-channel {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.hero-video-card .youtube-icon {
    color: #ff0000;
}

.hero-video-card .video-cta {
    font-size: 0.75rem;
    color: var(--text-muted);
    transition: color 0.2s;
}

.hero-video-card:hover .video-cta {
    color: #ff0000;
}

/* Scroll Button */
.hero-scroll-btn {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    border: 1px solid var(--border);
    background: var(--surface-glass);
    border-radius: 50%;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.hero-scroll-btn:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.hero-scroll-btn svg {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(3px); }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(217, 123, 42, 0.15);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary) 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 123, 42, 0.2);
}

.btn-secondary {
    background: var(--surface);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: rgba(217, 123, 42, 0.08);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   Sections
   ======================================== */
.section {
    padding: 6rem 0;
    position: relative;
}

.section-dark {
    background: var(--secondary);
}

.section-light {
    background: linear-gradient(180deg, var(--surface) 0%, var(--surface-light) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header h2 span {
    background: linear-gradient(135deg, var(--primary) 0%, #E89A50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* ========================================
   Cards
   ======================================== */
.card {
    background: linear-gradient(145deg, var(--surface-light) 0%, var(--surface) 100%);
    border-radius: var(--radius-xl);
    padding: 2rem;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: var(--transition);
}

.card:hover {
    border-color: rgba(217, 123, 42, 0.25);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    box-shadow: 0 4px 15px rgba(217, 123, 42, 0.15);
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.card p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* ========================================
   Events Section
   ======================================== */
.event-card {
    display: flex;
    gap: 1.5rem;
    background: linear-gradient(145deg, var(--surface-light) 0%, var(--surface) 100%);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.event-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(217, 123, 42, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.event-card:hover {
    border-color: rgba(217, 123, 42, 0.25);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.event-date {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    text-align: center;
    min-width: 85px;
    box-shadow: 0 4px 15px rgba(217, 123, 42, 0.15);
    position: relative;
    z-index: 1;
}

.event-date .day {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1;
    display: block;
}

.event-date .month {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    opacity: 0.9;
}

.event-info h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.event-info p {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.event-meta {
    display: flex;
    gap: 1.25rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.events-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* ========================================
   Live Community Section
   ======================================== */
.live-community {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.live-card {
    position: relative;
    padding: 1.75rem;
    background: linear-gradient(145deg, var(--surface-light) 0%, var(--surface) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
    overflow: hidden;
}

.live-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.live-card:hover {
    transform: translateY(-4px);
    border-color: rgba(217, 123, 42, 0.3);
    box-shadow: var(--shadow-md);
}

.live-card:hover::before {
    opacity: 1;
}

.live-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.live-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--success);
    animation: pulse-live 2s infinite;
    box-shadow: 0 0 10px var(--success);
}

.live-indicator.orange {
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}

.live-indicator.blue {
    background: var(--info);
    box-shadow: 0 0 10px var(--info);
}

.live-indicator.static {
    animation: none;
    background: var(--text-muted);
    box-shadow: none;
}

@keyframes pulse-live {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(0.9);
    }
}

.live-card-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    font-weight: 600;
}

.live-card-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.live-card-value span {
    color: var(--primary);
}

.live-card-detail {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.live-card-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: var(--surface-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-left: auto;
}

/* Next Event Card - Special Styling */
.live-card.next-event {
    grid-column: span 2;
    background: linear-gradient(145deg, rgba(217, 123, 42, 0.1) 0%, var(--surface) 100%);
    border-color: rgba(217, 123, 42, 0.2);
}

.live-card.next-event .live-card-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.next-event-date {
    text-align: center;
    padding: 1rem 1.25rem;
    background: var(--primary);
    border-radius: var(--radius-md);
    color: var(--secondary);
}

.next-event-date .day {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    display: block;
}

.next-event-date .month {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.next-event-info h4 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.next-event-info p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

/* ========================================
   Dark Theme Overrides (Comprehensive)
   ======================================== */

/* Section Backgrounds */
[data-theme="dark"] .section-dark {
    background: var(--secondary);
}

[data-theme="dark"] .section-light {
    background: linear-gradient(180deg, var(--surface) 0%, var(--secondary) 100%);
}

/* Cards */
[data-theme="dark"] .card {
    background: var(--surface);
    border-color: var(--border);
    box-shadow: none;
}

[data-theme="dark"] .card:hover {
    border-color: rgba(217, 123, 42, 0.3);
}

[data-theme="dark"] .live-card {
    background: var(--surface);
    border-color: var(--border);
}

[data-theme="dark"] .live-card:hover {
    border-color: rgba(217, 123, 42, 0.25);
}

[data-theme="dark"] .live-card.next-event {
    background: linear-gradient(145deg, rgba(217, 123, 42, 0.08) 0%, var(--surface) 100%);
    border-color: rgba(217, 123, 42, 0.2);
}

/* Event Cards */
[data-theme="dark"] .event-card {
    background: var(--surface);
    border-color: var(--border);
}

[data-theme="dark"] .event-card:hover {
    border-color: rgba(217, 123, 42, 0.25);
}

/* Hero Sidebar Cards */
[data-theme="dark"] .hero-stats-card {
    background: var(--surface);
    border-color: var(--border);
}

[data-theme="dark"] .hero-event-card {
    background: linear-gradient(145deg, rgba(217, 123, 42, 0.08) 0%, var(--surface) 100%);
    border-color: rgba(217, 123, 42, 0.2);
}

[data-theme="dark"] .hero-video-card {
    background: var(--surface);
    border-color: var(--border);
}

[data-theme="dark"] .hero-video-card .video-card-info {
    background: var(--surface-light);
}

/* Buttons */
[data-theme="dark"] .btn-secondary {
    background: var(--surface-light);
    color: var(--text-primary);
    border-color: var(--border);
}

[data-theme="dark"] .btn-secondary:hover {
    background: rgba(217, 123, 42, 0.1);
    border-color: var(--primary);
    color: var(--primary);
}

[data-theme="dark"] .btn-hero-discord {
    background: rgba(88, 101, 242, 0.15);
    border-color: rgba(88, 101, 242, 0.3);
    color: #7289DA;
}

[data-theme="dark"] .hero-live-badge {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.25);
}

/* Social Bar */
[data-theme="dark"] .social-bar-section {
    background: var(--secondary);
    border-color: var(--border);
}

[data-theme="dark"] .social-bar-links a {
    background: var(--surface);
    border-color: var(--border);
    color: var(--text-secondary);
}

[data-theme="dark"] .social-bar-links a:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* CS2 Banner */
[data-theme="dark"] .cs2-banner-overlay {
    background: linear-gradient(90deg,
        rgba(26, 31, 38, 0.95) 0%,
        rgba(34, 41, 47, 0.85) 40%,
        rgba(34, 41, 47, 0.5) 70%,
        rgba(34, 41, 47, 0.3) 100%);
}

[data-theme="dark"] .cs2-logo {
    filter: none;
}

/* Discord Widget */
[data-theme="dark"] .discord-widget-section {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.08) 0%, var(--secondary) 50%, rgba(88, 101, 242, 0.05) 100%);
}

[data-theme="dark"] .discord-widget-placeholder {
    background: var(--surface);
    border-color: var(--border);
}

/* Launch Banner */
[data-theme="dark"] .launch-banner {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--surface) 50%, var(--secondary) 100%);
}

[data-theme="dark"] .launch-banner-bg {
    background:
        radial-gradient(ellipse at 20% 50%, rgba(217, 123, 42, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(217, 123, 42, 0.08) 0%, transparent 50%);
}

[data-theme="dark"] .launch-prize {
    background: linear-gradient(135deg, rgba(217, 123, 42, 0.1) 0%, rgba(217, 123, 42, 0.05) 100%);
    border-color: rgba(217, 123, 42, 0.3);
}

/* Footer */
[data-theme="dark"] .site-footer {
    background: linear-gradient(180deg, var(--surface) 0%, var(--secondary) 100%);
    border-color: var(--border);
}

[data-theme="dark"] .footer-bottom {
    border-color: var(--border);
}

[data-theme="dark"] .social-icon {
    background: var(--surface);
    border-color: var(--border);
    color: var(--text-secondary);
}

[data-theme="dark"] .social-icon:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ECVisualize Banner */
[data-theme="dark"] .ecvisualize-footer-banner {
    background: linear-gradient(135deg, var(--surface) 0%, var(--secondary) 100%);
    border-color: var(--border);
}

/* Join CTA */
[data-theme="dark"] .join-cta-section {
    background: linear-gradient(180deg, var(--secondary) 0%, var(--surface) 50%, var(--secondary) 100%);
}

[data-theme="dark"] .join-cta {
    background: var(--surface);
    border-color: var(--border);
    box-shadow: none;
}

/* Mobile Navigation */
@media (max-width: 900px) {
    [data-theme="dark"] .main-navigation {
        background: var(--secondary);
        border-top-color: var(--border);
    }

    [data-theme="dark"] .main-navigation li {
        border-bottom-color: var(--border);
    }
}

@media (max-width: 1024px) {
    .live-community {
        grid-template-columns: repeat(2, 1fr);
    }

    .live-card.next-event {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .live-community {
        grid-template-columns: 1fr;
    }

    .live-card.next-event {
        grid-column: span 1;
    }

    .live-card.next-event .live-card-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ========================================
   CS2 Feature Banner
   ======================================== */
.cs2-banner-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.cs2-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

/* Light Theme CS2 Banner Overlay (Default) - More transparent to show wallpaper */
.cs2-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg,
        rgba(232, 228, 224, 0.92) 0%,
        rgba(221, 217, 213, 0.78) 40%,
        rgba(221, 217, 213, 0.5) 70%,
        rgba(221, 217, 213, 0.25) 100%);
}

/* Dark Theme CS2 Banner Overlay */
[data-theme="dark"] .cs2-banner-overlay {
    background: linear-gradient(90deg,
        rgba(26, 31, 38, 0.98) 0%,
        rgba(26, 31, 38, 0.85) 40%,
        rgba(26, 31, 38, 0.4) 70%,
        rgba(26, 31, 38, 0.2) 100%);
}

.cs2-banner-content {
    position: relative;
    z-index: 2;
    max-width: 550px;
}

/* Light Theme CS2 Logo (Default) - Dark logo */
.cs2-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1.5rem;
    filter: brightness(0);
}

/* Dark Theme CS2 Logo - White/inverted logo */
[data-theme="dark"] .cs2-logo {
    filter: brightness(0) invert(1);
}

.cs2-banner-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cs2-banner-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cs2-banner-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* CS2 Section Badge */
.cs2-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(217, 123, 42, 0.1);
    border: 1px solid rgba(217, 123, 42, 0.3);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cs2-mini-logo {
    height: 20px;
    width: auto;
    filter: brightness(0) saturate(100%) invert(51%) sepia(98%) saturate(407%) hue-rotate(346deg) brightness(93%) contrast(89%);
}

/* CS2 Events Section */
.cs2-events-section {
    position: relative;
}

.cs2-events-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-hover) 50%, var(--primary) 100%);
}

@media (max-width: 768px) {
    .cs2-banner-section {
        min-height: 400px;
        padding: 4rem 0;
    }

    .cs2-banner-bg {
        background-position: 70% center;
    }

    .cs2-banner-overlay {
        background: linear-gradient(180deg,
            rgba(232, 228, 224, 0.94) 0%,
            rgba(221, 217, 213, 0.9) 100%);
    }

    [data-theme="dark"] .cs2-banner-overlay {
        background: linear-gradient(180deg,
            rgba(26, 31, 38, 0.95) 0%,
            rgba(26, 31, 38, 0.85) 100%);
    }

    .cs2-banner-content {
        text-align: center;
        max-width: 100%;
    }

    .cs2-banner-content h2 {
        font-size: 2rem;
    }

    .cs2-logo {
        margin-left: auto;
        margin-right: auto;
    }

    .cs2-banner-buttons {
        justify-content: center;
    }
}

/* ========================================
   Social Bar Section
   ======================================== */
.social-bar-section {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0;
}

.social-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-bar-label {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}

.social-bar-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.social-bar-links a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    transition: var(--transition);
}

.social-bar-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(217, 123, 42, 0.25);
}

/* Discord specific hover */
.social-bar-links a[aria-label="Discord"]:hover {
    background: #5865F2;
    border-color: #5865F2;
}

/* YouTube specific hover */
.social-bar-links a[aria-label="YouTube"]:hover {
    background: #FF0000;
    border-color: #FF0000;
}

/* Instagram specific hover */
.social-bar-links a[aria-label="Instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #dc2743;
}

/* TikTok specific hover */
.social-bar-links a[aria-label="TikTok"]:hover {
    background: #000000;
    border-color: #00f2ea;
    box-shadow: 0 0 10px rgba(0, 242, 234, 0.4);
}

/* X/Twitter specific hover */
.social-bar-links a[aria-label="X"]:hover {
    background: #000000;
    border-color: #000000;
}

/* Facebook specific hover */
.social-bar-links a[aria-label="Facebook"]:hover {
    background: #1877F2;
    border-color: #1877F2;
}

.social-bar-links a svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 640px) {
    .social-bar {
        flex-direction: column;
        gap: 1rem;
    }

    .social-bar-links {
        gap: 0.5rem;
    }

    .social-bar-links a {
        width: 40px;
        height: 40px;
    }
}

/* ========================================
   ECVisualize Partnership Banner
   ======================================== */
/* Light Theme ECVisualize Footer Banner (Default) */
.ecvisualize-footer-banner {
    background: linear-gradient(135deg, var(--surface) 0%, var(--secondary) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 2rem 0;
}

/* Dark Theme ECVisualize Footer Banner */
[data-theme="dark"] .ecvisualize-footer-banner {
    background: linear-gradient(135deg, var(--surface) 0%, var(--secondary) 100%);
}

.ecv-partnership {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.ecv-partnership-logo {
    flex-shrink: 0;
}

.ecv-partnership-logo .ecv-logo-img {
    height: 48px;
    width: auto;
    opacity: 0.9;
    transition: var(--transition);
}

.ecv-partnership-logo:hover .ecv-logo-img {
    opacity: 1;
}

.ecv-partnership-text {
    flex: 1;
    min-width: 200px;
}

.ecv-partnership-text .partnership-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.ecv-partnership-text p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.ecv-partnership-text p a {
    color: var(--primary);
    font-weight: 600;
}

.ecv-partnership-cta {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .ecv-partnership {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .ecv-partnership-cta {
        width: 100%;
    }

    .ecv-partnership-cta .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   Footer
   ======================================== */
/* Light Theme Footer (Default) */
.site-footer {
    background: linear-gradient(180deg, var(--surface) 0%, var(--surface-lighter) 100%);
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
}

/* Dark Theme Footer */
[data-theme="dark"] .site-footer {
    background: linear-gradient(180deg, var(--surface) 0%, #001522 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    align-items: start;
    text-align: left;
}

.footer-brand .site-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 0.75rem;
}

.footer-tagline {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1rem;
}

.footer-brand > p {
    margin-top: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.footer-section h4 {
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.6rem;
}

.footer-section a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary);
    transform: translateX(3px);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 38px;
    height: 38px;
    background: var(--surface-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Footer Partners Section */
.footer-partners {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 1.5rem 0;
    margin-top: 1rem;
    border-top: 1px solid var(--border);
}

.footer-partners .partners-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.footer-partners .partners-logos {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-partners .partner-link {
    display: inline-flex;
    align-items: center;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-partners .partner-link:hover {
    opacity: 1;
}

.footer-partners .partner-link img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-ecv-logo {
    height: 28px;
    width: auto;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-ecv-logo:hover {
    opacity: 1;
}

.ecv-link {
    display: inline-flex;
    align-items: center;
}

/* ========================================
   Discord Widget Section
   ======================================== */
/* Light Theme Discord Widget Section (Default) */
.discord-widget-section {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.08) 0%, var(--surface) 50%, rgba(88, 101, 242, 0.04) 100%);
    padding: 5rem 0;
}

/* Dark Theme Discord Widget Section */
[data-theme="dark"] .discord-widget-section {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.1) 0%, var(--secondary) 50%, rgba(88, 101, 242, 0.05) 100%);
}

.discord-widget-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    align-items: center;
}

.discord-widget-info {
    padding: 2rem;
}

.discord-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.discord-logo-icon {
    color: #5865F2;
    flex-shrink: 0;
}

.discord-brand-text h3 {
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.discord-brand-text p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.discord-features {
    list-style: none;
    margin: 0 0 2rem 0;
    padding: 0;
}

.discord-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border);
}

.discord-features li:last-child {
    border-bottom: none;
}

.discord-features li svg {
    color: #5865F2;
    flex-shrink: 0;
}

.discord-widget-embed {
    background: #2f3136;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(88, 101, 242, 0.2);
}

.discord-widget-embed iframe {
    display: block;
    border: none;
}

/* Discord Widget Placeholder */
.discord-widget-placeholder {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #36393f 0%, #2f3136 100%);
}

.placeholder-content {
    text-align: center;
    padding: 2rem;
}

.placeholder-content svg {
    color: #5865F2;
    margin-bottom: 1rem;
}

.placeholder-content h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.member-count {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #b9bbbe;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.online-dot {
    width: 10px;
    height: 10px;
    background: #3ba55c;
    border-radius: 50%;
    animation: pulse-online 2s infinite;
}

@keyframes pulse-online {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.placeholder-join-btn {
    display: inline-block;
    background: #3ba55c;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.placeholder-join-btn:hover {
    background: #2d8049;
    color: white;
}

/* Discord Button */
.btn-discord {
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

.btn-discord:hover {
    background: linear-gradient(135deg, #6B75F5 0%, #5865F2 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.4);
}

@media (max-width: 900px) {
    .discord-widget-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .discord-widget-info {
        text-align: center;
        padding: 1rem;
    }

    .discord-brand {
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }

    .discord-features li {
        justify-content: center;
    }

    .discord-widget-info .btn {
        width: 100%;
        justify-content: center;
    }

    .discord-widget-embed {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ========================================
   News Section - Frontpage
   ======================================== */
.news-section {
    padding: 3rem 0;
    background: var(--surface);
}

.news-section .section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.news-section .section-header h2 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.news-section .section-header h2 svg {
    color: var(--primary);
}

.news-section .section-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.news-section .section-link:hover {
    gap: 0.75rem;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.news-card {
    background: var(--secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
}

.news-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.news-card-content {
    padding: 1.25rem;
}

.news-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    line-height: 1.4;
    color: var(--text-primary);
}

.news-card h4 a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s;
}

.news-card h4 a:hover {
    color: var(--primary);
}

.news-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0 0 0.75rem;
    line-height: 1.5;
}

.news-card .news-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Featured News Card - Theme Aware */
.news-card.news-featured {
    grid-column: span 1;
    grid-row: span 2;
    background: linear-gradient(145deg, var(--surface-light) 0%, var(--surface) 100%);
    border: 2px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.news-card.news-featured:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(200, 109, 31, 0.15);
}

.news-card.news-featured .news-card-content {
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card.news-featured .news-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    width: fit-content;
}

.news-card.news-featured h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 0 1rem;
    line-height: 1.3;
    color: var(--text-primary);
}

.news-card.news-featured h3 a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s;
}

.news-card.news-featured h3 a:hover {
    color: var(--primary);
}

.news-card.news-featured p {
    color: var(--text-secondary);
    flex: 1;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.news-card.news-featured .news-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.news-card.news-featured .news-date {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.news-card.news-featured .news-date svg {
    opacity: 0.7;
    color: var(--text-muted);
}

.news-card.news-featured .news-read-more {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.2s;
}

.news-card.news-featured .news-read-more:hover {
    gap: 0.625rem;
}

.no-news {
    text-align: center;
    color: var(--text-muted);
    padding: 2rem;
}

/* News Section Responsive */
@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-card.news-featured {
        grid-column: span 1;
        grid-row: span 1;
    }

    .news-section .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* ========================================
   Strategic Navigation Cards
   ======================================== */
.home-quick-nav {
    padding: 3rem 0;
    background: var(--secondary);
}

.nav-cards-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    align-items: stretch;
}

/* Discord Primary CTA Card */
.nav-card-primary {
    position: relative;
    display: flex;
    align-items: center;
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    overflow: hidden;
    transition: var(--transition);
}

.discord-primary {
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
}

.nav-card-primary .nav-card-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition);
}

.nav-card-primary:hover .nav-card-bg {
    opacity: 1;
}

.nav-card-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(88, 101, 242, 0.35);
}

.nav-card-primary .nav-card-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
}

.nav-card-primary .nav-card-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    color: white;
}

.nav-card-primary .nav-card-text {
    flex: 1;
}

.nav-card-primary .nav-card-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.25rem;
}

.nav-card-primary h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: white;
    margin: 0 0 0.35rem;
}

.nav-card-primary p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.4;
}

.nav-card-cta {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.625rem 1rem;
    border-radius: var(--radius-full);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition);
}

.nav-card-primary:hover .nav-card-cta {
    background: rgba(255, 255, 255, 0.3);
    gap: 0.75rem;
}

/* Secondary Navigation Cards Container */
.nav-cards-secondary {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Secondary Navigation Cards */
.nav-card-secondary {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1.25rem 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: var(--transition);
    overflow: hidden;
}

.nav-card-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    transition: var(--transition);
}

.nav-card-secondary:hover::before {
    opacity: 0.5;
}

.play-secondary::before {
    background-image: url('assets/images/playhub-bg.png');
}

.community-secondary::before {
    background-image: url('assets/images/community-bg.jpg');
}

.nav-card-secondary:hover {
    border-color: var(--primary);
    background: var(--surface-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav-card-header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.nav-card-secondary p,
.nav-card-stats {
    position: relative;
    z-index: 1;
}

.nav-card-header svg:first-child {
    flex-shrink: 0;
    color: var(--primary);
    padding: 0.5rem;
    background: var(--primary-glow);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

/* Play Hub Play Button Circle */
svg.play-icon-circle {
    flex-shrink: 0;
    fill: var(--primary);
    filter: drop-shadow(0 2px 8px rgba(200, 109, 31, 0.4));
    transition: var(--transition);
}

.nav-card-secondary:hover svg.play-icon-circle {
    fill: var(--primary-hover);
    transform: scale(1.15);
    filter: drop-shadow(0 4px 12px rgba(200, 109, 31, 0.6));
}

.nav-card-secondary:hover .nav-card-header svg:first-child {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
}

.nav-card-header h4 {
    flex: 1;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.nav-card-header .arrow {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: var(--transition);
}

.nav-card-secondary:hover .nav-card-header .arrow {
    color: var(--primary);
    transform: translateX(3px);
}

.nav-card-secondary p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0 0 0.75rem;
    line-height: 1.45;
}

.nav-card-stats {
    margin-top: auto;
}

.stat-mini {
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    background: var(--secondary);
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-full);
}

.stat-mini strong {
    color: var(--primary);
    margin-right: 0.25rem;
}

/* Play Hub specific accent */
.play-secondary:hover {
    border-color: var(--primary);
}

/* Community specific accent */
.community-secondary:hover {
    border-color: var(--primary);
}

/* Strategic Nav Cards - Responsive */
@media (max-width: 900px) {
    .nav-cards-layout {
        grid-template-columns: 1fr;
    }

    .nav-card-primary .nav-card-content {
        flex-wrap: wrap;
    }

    .nav-card-cta {
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
    }
}

@media (max-width: 600px) {
    .nav-cards-layout {
        gap: 1rem;
    }

    .nav-card-primary {
        padding: 1.5rem;
    }

    .nav-card-primary .nav-card-icon {
        width: 48px;
        height: 48px;
    }

    .nav-card-primary .nav-card-icon svg {
        width: 28px;
        height: 28px;
    }

    .nav-card-primary h3 {
        font-size: 1.15rem;
    }

    .nav-card-secondary {
        padding: 1rem 1.25rem;
    }

    .nav-cards-secondary {
        gap: 1rem;
    }
}

/* ========================================
   Launch Banner - Opening Cup (Legacy)
   ======================================== */
/* Light Theme Launch Banner (Default) */
.launch-banner {
    position: relative;
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--surface) 0%, var(--surface-lighter) 50%, var(--surface) 100%);
    overflow: hidden;
    border-top: 3px solid var(--primary);
    border-bottom: 3px solid var(--primary);
}

/* Dark Theme Launch Banner */
[data-theme="dark"] .launch-banner {
    background: linear-gradient(135deg, #1a1f26 0%, #0d1117 50%, #1a1f26 100%);
}

.launch-banner-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(200, 109, 31, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(200, 109, 31, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

/* Dark Theme Launch Banner Background */
[data-theme="dark"] .launch-banner-bg {
    background:
        radial-gradient(ellipse at 20% 50%, rgba(217, 123, 42, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(217, 123, 42, 0.1) 0%, transparent 50%);
}

.launch-banner .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.launch-banner-content {
    max-width: 650px;
}

.launch-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

/* ECV-Play Logo in Launch Banner */
.launch-ecvplay-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    transition: filter 0.3s ease;
    filter: none;
}

/* Dark mode - slightly brighten the logo */
[data-theme="dark"] .launch-ecvplay-logo {
    filter: brightness(1.1) drop-shadow(0 0 8px rgba(217, 123, 42, 0.3));
}

.badge-new {
    background: var(--primary);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { box-shadow: 0 0 0 0 rgba(217, 123, 42, 0.5); }
    50% { box-shadow: 0 0 0 8px rgba(217, 123, 42, 0); }
}

.badge-text {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.launch-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.launch-subtitle {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.launch-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.launch-prize {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(217, 123, 42, 0.15) 0%, rgba(217, 123, 42, 0.05) 100%);
    border: 2px solid rgba(217, 123, 42, 0.3);
    border-radius: var(--radius-lg);
    padding: 1.25rem 2rem;
    margin-bottom: 2rem;
}

.prize-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.prize-amount {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.prize-info {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.launch-details {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.launch-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.launch-detail svg {
    color: var(--primary);
}

.launch-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.launch-btn {
    animation: glow-btn 2s infinite;
}

@keyframes glow-btn {
    0%, 100% { box-shadow: 0 4px 15px rgba(217, 123, 42, 0.3); }
    50% { box-shadow: 0 4px 25px rgba(217, 123, 42, 0.5); }
}

.launch-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

.launch-game-badge {
    flex-shrink: 0;
}

.cs2-game-logo {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.1));
    opacity: 0.9;
}

@media (max-width: 900px) {
    .launch-banner .container {
        flex-direction: column;
        text-align: center;
    }

    .launch-title {
        font-size: 2.25rem;
    }

    .launch-badge {
        justify-content: center;
    }

    .launch-details {
        justify-content: center;
    }

    .launch-cta {
        flex-direction: column;
        align-items: center;
    }

    .launch-prize {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .cs2-game-logo {
        width: 150px;
    }
}

/* ========================================
   Intro Section
   ======================================== */
.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.intro-content h2 span {
    background: linear-gradient(135deg, var(--primary) 0%, #E89A50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intro-content .lead {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.intro-content > p:last-child {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ========================================
   Join CTA Section
   ======================================== */
.join-cta-section {
    background: linear-gradient(180deg, var(--secondary) 0%, var(--surface) 50%, var(--secondary) 100%);
}

.join-cta {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(145deg, var(--surface-light) 0%, var(--surface) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.join-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-hover), var(--primary));
}

.join-cta h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.join-cta-text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.join-cta-subtext {
    margin-top: 1.25rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ========================================
   Discord Widget
   ======================================== */
.discord-widget {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--border);
    text-align: center;
}

.discord-widget h3 {
    margin-bottom: 1rem;
}

.discord-widget .btn {
    margin-top: 1rem;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    .hero {
        min-height: auto;
        padding: 8rem 0 3rem;
    }

    .hero-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
        max-width: calc(100% - 2rem);
    }

    .hero h1 {
        font-size: 2.25rem;
        letter-spacing: 2px;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 0.5rem 1.25rem;
        margin-bottom: 1.5rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        letter-spacing: 1px;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .header-inner {
        flex-wrap: wrap;
    }

    .menu-toggle {
        display: block;
        order: 2;
        margin-left: auto;
    }

    .site-logo {
        order: 1;
    }

    .main-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--secondary);
        border-top: 1px solid var(--border);
        display: none;
        order: 3;
        flex: 0 0 100%;
    }

    .main-navigation.active {
        display: block;
    }

    .main-navigation ul {
        flex-direction: column;
        padding: 1rem;
        gap: 0;
    }

    .main-navigation li {
        border-bottom: 1px solid var(--border);
    }

    .main-navigation a {
        display: block;
        padding: 1rem;
    }

    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
    }

    .live-community {
        gap: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .header-ecvesports-logo {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .section {
        padding: 3rem 0;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }

    .hero-brand {
        flex-direction: column;
        text-align: center;
    }

    .hero-brand-text {
        align-items: center;
    }

    .intro-content h2 {
        font-size: 1.75rem;
    }

    .join-cta {
        padding: 1.5rem;
    }

    .join-cta h3 {
        font-size: 1.5rem;
    }

    .discord-cta-banner {
        padding: 1.5rem;
    }
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes floatSubtle {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.animate-fade-in-up {
    animation: fadeInScale 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-fade-in-up .hero-badge {
    opacity: 0;
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.animate-fade-in-up h1 {
    opacity: 0;
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards;
}

.animate-fade-in-up .hero-tagline {
    opacity: 0;
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.animate-fade-in-up .hero-subtitle {
    opacity: 0;
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.animate-fade-in-up .hero-buttons {
    opacity: 0;
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.75s forwards;
}

/* Subtle highlight for primary elements */
.glow {
    box-shadow: 0 0 15px rgba(217, 123, 42, 0.15);
}

.glow-text {
    text-shadow: 0 0 15px rgba(217, 123, 42, 0.25);
}

/* Hero Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-brand {
        justify-content: center;
    }

    .hero-live-badge {
        justify-content: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-sidebar {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero-stats-card,
    .hero-event-card,
    .hero-video-teaser {
        flex: 1;
        min-width: 200px;
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 7rem 0 2rem;
    }

    .hero-container {
        padding: 0 1.25rem;
    }

    .hero-title-sub {
        font-size: 1.5rem;
        letter-spacing: 0.3em;
    }

    .hero-title-main {
        font-size: 3.5rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero-primary,
    .btn-hero-discord {
        width: 100%;
        max-width: 260px;
        justify-content: center;
    }

    .hero-sidebar {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats-card,
    .hero-event-card,
    .hero-video-teaser {
        width: 100%;
        max-width: 320px;
    }

    .hero-scroll-btn {
        bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title-sub {
        font-size: 1.25rem;
    }

    .hero-title-main {
        font-size: 2.75rem;
    }

    .hero-stats-card .stat-value {
        font-size: 1.25rem;
    }
}

/* Agent CTA - Fixed bottom right */
.agent-cta {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 100;
    display: flex;
    align-items: flex-end;
    gap: 0;
}

.agent-cta .agent-img {
    width: 100px;
    height: auto;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
    cursor: pointer;
}

.agent-cta .agent-bubble {
    position: absolute;
    bottom: 85px;
    right: 10px;
    background: var(--primary);
    color: white;
    padding: 0.6rem 1rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(200, 109, 31, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: bubblePulse 3s ease-in-out infinite;
    white-space: nowrap;
}

.agent-cta .agent-bubble::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 30px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--primary);
}

.agent-cta .agent-bubble span {
    font-size: 0.85rem;
    font-weight: 600;
}

.agent-cta .agent-bubble .btn-sm {
    background: white;
    color: var(--primary);
    padding: 0.35rem 0.9rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.agent-cta .agent-bubble .btn-sm:hover {
    background: var(--secondary);
    transform: scale(1.05);
}

.agent-cta:hover .agent-img {
    transform: scale(1.08);
}

@keyframes bubblePulse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@media (max-width: 600px) {
    .agent-cta .agent-img {
        width: 70px;
    }
    .agent-cta .agent-bubble {
        bottom: 60px;
        padding: 0.5rem 0.75rem;
    }
    .agent-cta .agent-bubble span {
        font-size: 0.75rem;
    }
}

/* ========================================
   Rules Tab Styling (Play Hub)
   ======================================== */

.rules-intro-hub {
    background: var(--surface-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.rules-intro-hub p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.rules-grid-hub {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (max-width: 900px) {
    .rules-grid-hub {
        grid-template-columns: 1fr;
    }
}

.rules-block {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.rules-block-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    background: var(--surface-light);
    border-bottom: 1px solid var(--border);
}

.rules-block-header svg {
    color: var(--primary);
    flex-shrink: 0;
}

.rules-block-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.rules-list-hub {
    padding: 1rem;
}

.rule-item-hub {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.rule-item-hub:hover {
    background: var(--surface-light);
}

.rule-item-hub .rule-number {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: var(--primary);
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.rule-item-hub .rule-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.35rem 0;
}

.rule-item-hub .rule-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.rules-cta-hub {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.1) 0%, rgba(88, 101, 242, 0.05) 100%);
    border: 1px solid rgba(88, 101, 242, 0.2);
    border-radius: var(--radius-lg);
    text-align: center;
}

.rules-cta-hub p {
    color: var(--text-secondary);
    margin: 0 0 1rem 0;
}

.btn-discord-hub {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #5865F2;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
}

.btn-discord-hub:hover {
    background: #4752c4;
    transform: translateY(-2px);
    color: white;
}

/* ===================================
   Live Tournaments Section
   =================================== */
.live-tournaments-section {
    position: relative;
}

.live-tournaments-section .section-title-hub {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.live-tournaments-section .live-indicator {
    width: 10px;
    height: 10px;
    background: #ef4444;
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.live-tournaments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.live-tournament-card {
    display: block;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.live-tournament-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ef4444, #f97316, #ef4444);
    background-size: 200% 100%;
    animation: liveGradient 2s linear infinite;
}

@keyframes liveGradient {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.live-tournament-card:hover {
    transform: translateY(-3px);
    border-color: rgba(239, 68, 68, 0.5);
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.15);
}

.live-tournament-card .live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #ef4444;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-sm);
    margin-bottom: 0.75rem;
}

.live-tournament-card .live-badge .pulse {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: livePulse 1s ease-in-out infinite;
}

.live-tournament-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.75rem 0;
}

.live-tournament-card .tournament-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.live-tournament-card .meta-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.live-tournament-card .meta-item svg {
    color: var(--text-muted);
}

.live-tournament-card .meta-item.round {
    color: #ef4444;
    font-weight: 600;
}

.live-tournament-card .view-bracket-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--primary);
    color: white;
    padding: 0.6rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.live-tournament-card:hover .view-bracket-btn {
    background: var(--primary-dark);
}

/* Tournament Card - Live variant */
.tournament-card.live {
    border-color: rgba(239, 68, 68, 0.3);
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, transparent 100%);
}

.tournament-card.live::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ef4444, #f97316, #ef4444);
    background-size: 200% 100%;
    animation: liveGradient 2s linear infinite;
}

.status-badge.live {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #ef4444;
    color: white;
}

.status-badge.live .pulse {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: livePulse 1s ease-in-out infinite;
}

/* Dark mode adjustments */
[data-theme="dark"] .live-tournament-card {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(239, 68, 68, 0.05) 100%);
}

[data-theme="dark"] .tournament-card.live {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, transparent 100%);
}

/* ============================================
   Tournament Card Template System
   ============================================ */

/* Base Tournament Card */
.tournament-card {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    transition: var(--transition);
}

.tournament-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.tournament-card__image {
    position: relative;
    height: 140px;
    background-size: cover;
    background-position: center;
}

.tournament-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
}

.tournament-card__game-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
    z-index: 1;
}

.tournament-card__status-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-sm);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    background: var(--primary);
    color: white;
    z-index: 1;
}

.tournament-card__content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tournament-card__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
}

.tournament-card__meta {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tournament-card__meta span {
    font-size: 0.75rem;
    color: var(--text-muted);
    background: var(--surface-light);
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-sm);
}

.tournament-card__stats {
    display: flex;
    gap: 1rem;
    margin-top: 0.25rem;
}

.tournament-card__stats span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.tournament-card__stats svg {
    color: var(--text-muted);
}

.tournament-card__prize svg {
    color: var(--cs2-gold) !important;
}

.tournament-card__date {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: auto;
}

/* Full Card Variant */
.tournament-card--full {
    min-height: 280px;
}

/* Compact Card Variant */
.tournament-card--compact,
.tournament-card-compact {
    flex-direction: row;
    align-items: center;
    padding: 0.75rem 1rem;
    gap: 0.75rem;
}

.tournament-card-compact__badge {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.tournament-card-compact__content {
    flex: 1;
    min-width: 0;
}

.tournament-card-compact__title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.25rem 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tournament-card-compact__meta {
    display: flex;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.tournament-card-compact__status {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    flex-shrink: 0;
}

/* Completed Card Variant */
.tournament-card--completed,
.tournament-card-completed {
    flex-direction: row;
    align-items: center;
    padding: 0.75rem 1rem;
    gap: 0.75rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: var(--transition);
}

.tournament-card-completed:hover {
    border-color: var(--primary);
    background: var(--surface-light);
}

.tournament-card-completed__badge {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.tournament-card-completed__content {
    flex: 1;
    min-width: 0;
}

.tournament-card-completed__title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.25rem 0;
}

.tournament-card-completed__winner {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    color: var(--cs2-gold);
    font-weight: 500;
}

.tournament-card-completed__winner svg {
    color: var(--cs2-gold);
}

.tournament-card-completed__meta {
    display: flex;
    gap: 0.5rem;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Live Card Variant (from template) */
.tournament-card--live .live-tournament-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.tournament-card--live .game-badge {
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.65rem;
    font-weight: 700;
    color: white;
}

.tournament-card--live .live-tournament-card__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
}

.tournament-card--live .live-tournament-card__meta {
    display: flex;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.tournament-card--live .live-tournament-card__stream {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: #9146FF;
    font-weight: 500;
}

/* Game-specific card borders */
.tournament-card--game-cs2:hover {
    border-color: #DE9B35;
}

.tournament-card--game-smash:hover {
    border-color: #E60012;
}

.tournament-card--game-valorant:hover {
    border-color: #FF4655;
}

.tournament-card--game-lol:hover {
    border-color: #C89B3C;
}

/* Registration status styling */
.tournament-card--registration .tournament-card__status-badge {
    background: var(--primary);
    animation: pulse 2s ease-in-out infinite;
}

.tournament-card--seeding .tournament-card__status-badge {
    background: #f59e0b;
}

.tournament-card--active .tournament-card__status-badge {
    background: #ef4444;
}

/* Grid layouts for tournament cards */
.tournament-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.tournament-cards-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tournament-card__image {
        height: 120px;
    }

    .tournament-card--full {
        min-height: 240px;
    }

    .tournament-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Lid Worden - Simple Registration Page
   ============================================ */

.lid-worden-page {
    background: var(--background);
    min-height: 100vh;
}

.lid-worden-main {
    padding: 4rem 0;
}

.lid-worden-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 900px) {
    .lid-worden-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Left Side - Info */
.lid-worden-info h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.lid-worden-info .intro {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 2rem;
}

/* Simple Steps */
.steps-simple {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.steps-simple .step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.steps-simple .step-num {
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.steps-simple .step strong {
    display: block;
    color: var(--text-primary);
    font-size: 0.95rem;
    margin-bottom: 0.125rem;
}

.steps-simple .step p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

/* Discord Link */
.discord-link {
    margin-top: 1.5rem;
}

.btn-discord {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #5865F2;
    color: white;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s;
}

.btn-discord:hover {
    background: #4752C4;
    color: white;
}

/* Right Side - Form */
.lid-worden-form {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

@media (max-width: 900px) {
    .lid-worden-form {
        padding: 1.5rem;
    }
}

/* ============================================
   Player Profile - Activity Stats
   ============================================ */

.activity-stats {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
}

.activity-stats h3 {
    margin: 0 0 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.activity-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.activity-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0.75rem 0.5rem;
    background: var(--surface-light);
    border-radius: var(--radius-md);
}

.activity-stat svg {
    color: var(--primary);
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.activity-stat .stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.activity-stat .stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Sidebar Widgets */
.sidebar-widget {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.sidebar-widget h3 {
    margin: 0 0 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.quick-stats-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.quick-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
}

.quick-stat:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.quick-stat .label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.quick-stat .value {
    color: var(--text-primary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .activity-stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .activity-stat {
        padding: 0.5rem 0.25rem;
    }

    .activity-stat .stat-value {
        font-size: 1.1rem;
    }

    .activity-stat .stat-label {
        font-size: 0.65rem;
    }
}

/* ============================================
   Player Profile - Name Row & Edit Button
   ============================================ */

.profile-name-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.profile-name-row h1 {
    margin: 0;
}

.edit-profile-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--surface-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-md, 8px);
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.edit-profile-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.edit-profile-btn svg {
    width: 16px;
    height: 16px;
}

/* ============================================
   Player Profile - Social Links Widget
   ============================================ */

.social-links-widget {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg, 12px);
    padding: 1.25rem;
}

.social-links-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0.75rem;
    background: var(--surface-light);
    border-radius: var(--radius-md, 8px);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.social-link:hover {
    background: var(--surface);
    transform: translateX(4px);
}

.social-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.social-link.social-twitter svg {
    color: #1DA1F2;
}

.social-link.social-twitch svg {
    color: #9146FF;
}

.social-link.social-youtube svg {
    color: #FF0000;
}

.social-link.social-instagram svg {
    color: #E4405F;
}

.social-link.social-tiktok svg {
    color: var(--text-primary);
}

.social-link.social-website svg {
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .profile-name-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .edit-profile-btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.75rem;
    }
}
