:root {
    --primary-dark: #0a0f1c;
    --secondary-dark: #0d1829;
    --tertiary-dark: #121f36;
    --card-dark: #152238;
    --gold: #ffd700;
    --gold-light: #ffe44d;
    --gold-dark: #c9a800;
    --purple: #9d4edd;
    --purple-light: #c77dff;
    --purple-dark: #7b2cbf;
    --golden-purple: linear-gradient(135deg, #ffd700, #9d4edd);
    --text-primary: #fff;
    --text-secondary: #a0aec0;
    --text-muted: #718096;
    --glow-gold: 0 0 30px rgba(255, 215, 0, 0.4);
    --glow-purple: 0 0 30px rgba(157, 78, 221, 0.4);
    --transition: all .3s ease
}

[data-theme="light"] {
    --primary-dark: #f8fafc;
    --secondary-dark: #f1f5f9;
    --tertiary-dark: #e2e8f0;
    --card-dark: #fff;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --gold: #d97706;
    --gold-light: #f59e0b;
    --gold-dark: #b45309;
    --golden-purple: linear-gradient(135deg, #d97706, #7c3aed);
    --purple: #7c3aed;
    --purple-light: #8b5cf6;
    --purple-dark: #6d28d9;
    --glow-gold: 0 5px 20px rgba(217, 119, 6, 0.2);
    --glow-purple: 0 5px 20px rgba(124, 58, 237, 0.2)
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent !important;
    outline: none !important
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--primary-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    transition: var(--transition)
}

::-webkit-scrollbar {
    width: 10px
}

::-webkit-scrollbar-track {
    background: var(--secondary-dark)
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--gold), var(--purple));
    border-radius: 5px
}

::selection {
    background: var(--purple);
    color: #fff
}

#starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none
}

[data-theme="light"] #starfield {
    opacity: .4;
    filter: invert(1)
}

.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10001;
    transition: transform .1s ease;
    mix-blend-mode: difference
}

.cursor-outline {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid var(--purple);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transition: all .15s ease;
    mix-blend-mode: difference
}

.cursor-outline.hover {
    transform: scale(1.5);
    border-color: var(--gold)
}

[data-theme="light"] .cursor-dot {
    mix-blend-mode: normal;
    background: var(--purple)
}

[data-theme="light"] .cursor-outline {
    mix-blend-mode: normal;
    border-color: var(--purple)
}

.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity .5s ease, visibility .5s ease
}

.loader-container.hidden {
    opacity: 0;
    visibility: hidden
}

.loader {
    position: relative;
    width: 150px;
    height: 150px
}

.loader-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-radius: 50%;
    animation: loader-spin 2s linear infinite
}

.loader-ring:nth-child(1) {
    border-top-color: var(--gold)
}

.loader-ring:nth-child(2) {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    border-right-color: var(--purple);
    animation-delay: .2s;
    animation-direction: reverse
}

.loader-ring:nth-child(3) {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    border-bottom-color: var(--purple-light);
    animation-delay: .4s
}

.loader-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    color: var(--gold);
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase
}

@keyframes loader-spin {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
    background: transparent
}

.navbar.scrolled {
    background: rgba(10, 15, 28, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 5%;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3)
}

[data-theme="light"] .navbar.scrolled {
    background: rgba(248, 250, 252, 0.97);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06)
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--golden-purple);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: #fff;
    box-shadow: var(--glow-gold);
    animation: pulse 2s ease-in-out infinite
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: var(--glow-gold)
    }

    50% {
        box-shadow: var(--glow-purple)
    }
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 700;
    background: var(--golden-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold)
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--golden-purple);
    transition: width .3s ease
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 14px
}

.theme-toggle {
    width: 50px;
    height: 26px;
    background: var(--tertiary-dark);
    border-radius: 30px;
    position: relative;
    cursor: pointer;
    border: 2px solid var(--purple);
    transition: var(--transition)
}

.theme-toggle::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    background: var(--golden-purple);
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: var(--transition)
}

[data-theme="light"] .theme-toggle::before {
    left: 26px
}

.theme-toggle i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    transition: var(--transition)
}

.theme-toggle .fa-moon {
    left: 5px;
    color: var(--text-secondary)
}

.theme-toggle .fa-sun {
    right: 5px;
    color: var(--gold)
}

[data-theme="dark"] .theme-toggle .fa-moon {
    color: #fff
}

[data-theme="light"] .theme-toggle .fa-sun {
    color: #fff
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001
}

.mobile-menu-btn span {
    width: 30px;
    height: 3px;
    background: var(--gold);
    border-radius: 3px;
    transition: var(--transition)
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px)
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px)
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--secondary-dark);
    padding: 30px;
    flex-direction: column;
    gap: 20px;
    border-bottom: 2px solid var(--purple);
    transform: translateY(-100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 999;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1
}

.mobile-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 18px;
    padding: 15px;
    border-radius: 10px;
    transition: var(--transition)
}

.mobile-menu a:hover {
    background: var(--tertiary-dark);
    color: var(--gold)
}

.mobile-menu::-webkit-scrollbar {
    width: 4px
}

.mobile-menu::-webkit-scrollbar-track {
    background: var(--tertiary-dark);
    border-radius: 4px
}

.mobile-menu::-webkit-scrollbar-thumb {
    background: var(--purple);
    border-radius: 4px
}

.mobile-menu::after {
    content: '';
    display: block;
    height: 20px;
    width: 100%
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 5%;
    overflow: hidden
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden
}

.particle {
    position: absolute;
    background: var(--gold);
    border-radius: 50%;
    opacity: .6;
    animation: particleFloat 15s infinite
}

.hero-content {
    text-align: center;
    max-width: 900px;
    z-index: 10
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(157, 78, 221, 0.2);
    border: 1px solid var(--purple);
    padding: 10px 25px;
    border-radius: 50px;
    margin-bottom: 30px;
    animation: fadeInDown 1s ease
}

[data-theme="light"] .hero-badge {
    background: rgba(124, 58, 237, 0.08);
    border-color: rgba(124, 58, 237, 0.3)
}

.hero-badge i {
    color: var(--gold);
    animation: rocketBounce 2s ease infinite
}

.hero-badge span {
    color: var(--text-secondary);
    font-size: 14px
}

@keyframes rocketBounce {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-5px)
    }
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(40px, 8vw, 80px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    animation: fadeInUp 1s ease .2s backwards
}

.hero h1 .gradient-text {
    background: var(--golden-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite
}

@keyframes gradientShift {

    0%,
    100% {
        filter: hue-rotate(0)
    }

    50% {
        filter: hue-rotate(30deg)
    }
}

.hero p {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
    animation: fadeInUp 1s ease .4s backwards
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease .6s backwards
}

.btn {
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 0;
    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: left .5s ease
}

.btn:hover::before {
    left: 100%
}

.btn-primary {
    background: var(--golden-purple);
    color: #fff;
    box-shadow: var(--glow-gold)
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.4)
}

[data-theme="light"] .btn-primary:hover {
    box-shadow: 0 10px 40px rgba(217, 119, 6, 0.35)
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--purple)
}

.btn-secondary:hover {
    background: var(--purple);
    color: #fff;
    transform: translateY(-3px)
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    animation: fadeInUp 1s ease .8s backwards;
    flex-wrap: wrap
}

.hero-stat {
    text-align: center
}

.hero-stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--gold);
    display: block
}

.hero-stat-label {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 5px
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: fadeIn 1s ease 1.5s backwards;
    cursor: pointer
}

.scroll-indicator span {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid var(--purple);
    border-radius: 15px;
    position: relative;
    display: flex;
    justify-content: center
}

.scroll-arrow i {
    position: absolute;
    top: 10px;
    color: var(--gold);
    animation: scrollBounce 2s ease infinite
}

@keyframes scrollBounce {

    0%,
    100% {
        top: 10px;
        opacity: 1
    }

    50% {
        top: 25px;
        opacity: .5
    }
}

.floating-element {
    position: absolute;
    opacity: .1;
    animation: float 6s ease-in-out infinite
}

[data-theme="light"] .floating-element {
    opacity: .04
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    font-size: 100px;
    color: var(--gold)
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 10%;
    font-size: 80px;
    color: var(--purple);
    animation-delay: 2s
}

.floating-element:nth-child(3) {
    bottom: 20%;
    left: 20%;
    font-size: 60px;
    color: var(--purple-light);
    animation-delay: 4s
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0)
    }

    50% {
        transform: translateY(-20px) rotate(5deg)
    }
}

section {
    padding: 100px 5%;
    position: relative
}

.section-header {
    text-align: center;
    margin-bottom: 60px
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(157, 78, 221, 0.1);
    border: 1px solid rgba(157, 78, 221, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    color: var(--purple-light);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px
}

[data-theme="light"] .section-badge {
    background: rgba(124, 58, 237, 0.07);
    border-color: rgba(124, 58, 237, 0.25);
    color: var(--purple)
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 20px
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8
}

.about {
    background: var(--secondary-dark)
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center
}

.about-image {
    position: relative
}

.about-image-main {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 3px solid var(--purple);
    transition: var(--transition)
}

[data-theme="light"] .about-image-main {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1)
}

.about-image-main:hover {
    transform: scale(1.02)
}

.about-image-overlay {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: var(--golden-purple);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: var(--glow-gold);
    animation: floatSmall 3s ease-in-out infinite
}

@keyframes floatSmall {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

.about-image-overlay span:first-child {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #fff
}

.about-image-overlay span:last-child {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9)
}

.about-floating-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--card-dark);
    border: 1px solid var(--purple);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--glow-purple);
    animation: floatSmall 3s ease-in-out infinite 1.5s
}

[data-theme="light"] .about-floating-card {
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.15);
    border-color: rgba(124, 58, 237, 0.4)
}

.about-floating-card i {
    font-size: 30px;
    color: var(--gold)
}

.about-floating-card strong {
    display: block;
    font-size: 14px;
    color: var(--text-primary)
}

.about-floating-card span {
    font-size: 12px;
    color: var(--text-muted)
}

.about-content .section-badge {
    margin-bottom: 20px
}

.about-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    margin-bottom: 25px
}

.about-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--tertiary-dark);
    border-radius: 10px;
    transition: var(--transition)
}

.about-feature:hover {
    background: rgba(157, 78, 221, 0.2);
    transform: translateX(5px)
}

[data-theme="light"] .about-feature:hover {
    background: rgba(124, 58, 237, 0.1)
}

.about-feature i {
    width: 40px;
    height: 40px;
    background: rgba(157, 78, 221, 0.2);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--gold)
}

[data-theme="light"] .about-feature i {
    background: rgba(124, 58, 237, 0.1)
}

.about-feature span {
    font-weight: 500
}

.about-btn {
    margin-top: 30px
}

.org-chart {
    background: var(--primary-dark)
}

.org-tree {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px
}

.org-level {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    position: relative
}

.org-connector-vertical {
    width: 2px;
    height: 40px;
    background: var(--purple)
}

.org-connector-horizontal {
    width: 200px;
    height: 2px;
    background: var(--purple)
}

.org-connector-horizontal.wide {
    width: 400px
}

.org-card {
    background: var(--card-dark);
    border: 2px solid var(--tertiary-dark);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    min-width: 200px;
    transition: var(--transition);
    position: relative;
    overflow: hidden
}

.org-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--golden-purple)
}

.org-card:hover {
    transform: translateY(-10px);
    border-color: var(--purple);
    box-shadow: var(--glow-purple)
}

.org-card.ceo {
    min-width: 280px;
    padding-top: 40px;
    border-color: var(--gold)
}

.org-card.ceo::before {
    background: var(--gold);
    height: 6px
}

.org-avatar {
    position: relative;
    width: 128px;
    height: 128px;
    margin: 0 auto 12px;
    flex-shrink: 0
}

.org-avatar img {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 3px solid rgba(255, 255, 255, 0.15);
    transition: border-color .3s
}

[data-theme="light"] .org-avatar img {
    border-color: rgba(0, 0, 0, 0.12)
}

.org-card:hover .org-avatar img {
    border-color: rgba(255, 255, 255, 0.4)
}

[data-theme="light"] .org-card:hover .org-avatar img {
    border-color: var(--purple)
}

.org-avatar-placeholder {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 3px solid rgba(255, 255, 255, 0.15);
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.4);
    transition: background .3s, border-color .3s
}

[data-theme="light"] .org-avatar-placeholder {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.12);
    color: rgba(0, 0, 0, 0.3)
}

.org-card:hover .org-avatar-placeholder {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.35)
}

[data-theme="light"] .org-card:hover .org-avatar-placeholder {
    background: rgba(0, 0, 0, 0.08);
    border-color: var(--purple)
}

.org-crown-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f6d365 0, #fda085 100%);
    box-shadow: 0 2px 8px rgba(246, 211, 101, 0.55);
    z-index: 2;
    pointer-events: none
}

.org-crown-badge i {
    font-size: 1rem;
    color: #7c4a00;
    line-height: 0
}

.org-card.ceo .org-avatar img,
.org-card.ceo .org-avatar-placeholder {
    border-color: rgba(246, 211, 101, 0.6);
    box-shadow: 0 0 0 3px rgba(246, 211, 101, 0.15)
}

.org-card.ceo:hover .org-avatar img,
.org-card.ceo:hover .org-avatar-placeholder {
    border-color: rgba(246, 211, 101, 0.9);
    box-shadow: 0 0 0 4px rgba(246, 211, 101, 0.25)
}

.org-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px
}

.org-role {
    font-size: 13px;
    color: var(--purple-light);
    margin-bottom: 15px
}

.org-socials {
    display: flex;
    justify-content: center;
    gap: 10px
}

.org-socials a {
    width: 35px;
    height: 35px;
    background: var(--tertiary-dark);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-secondary);
    transition: var(--transition);
    text-decoration: none
}

.org-socials a:hover {
    background: var(--purple);
    color: #fff;
    transform: scale(1.1)
}

.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition)
}

.video-modal.active {
    opacity: 1;
    visibility: visible
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    background: var(--card-dark);
    border-radius: 20px;
    overflow: hidden;
    transform: scale(0.8);
    transition: var(--transition)
}

.video-modal.active .video-modal-content {
    transform: scale(1)
}

.video-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--primary-dark);
    border: 0;
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition)
}

.video-modal-close:hover {
    background: var(--purple);
    color: #fff
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 400px
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain
}

#videoModalPlayBtn {
    width: 90%
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--tertiary-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px
}

.video-placeholder i {
    font-size: 60px;
    color: var(--purple)
}

.video-placeholder p {
    color: var(--text-secondary)
}

.video-placeholder h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--gold)
}

.video-play-btn {
    margin-top: 10px
}

.rules {
    background: var(--primary-dark)
}

.rules-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px
}

.rules-list {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.rule-card {
    background: var(--card-dark);
    border-radius: 15px;
    padding: 25px;
    border-left: 4px solid var(--gold);
    transition: var(--transition);
    cursor: pointer
}

.rule-card:hover {
    transform: translateX(10px);
    background: var(--tertiary-dark)
}

.rule-card.active {
    border-left-color: var(--purple);
    box-shadow: var(--glow-purple)
}

.rule-header {
    display: flex;
    align-items: center;
    gap: 15px
}

.rule-number {
    width: 40px;
    height: 40px;
    background: var(--golden-purple);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0
}

.rule-title {
    font-size: 18px;
    font-weight: 600;
    flex: 1
}

.rule-toggle {
    color: var(--text-muted);
    transition: var(--transition)
}

.rule-card.active .rule-toggle {
    transform: rotate(180deg);
    color: var(--gold)
}

.rule-description {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: all .3s ease
}

.rule-card.active .rule-description {
    max-height: 200px;
    margin-top: 15px
}

.rules-sidebar {
    background: var(--card-dark);
    border-radius: 20px;
    padding: 30px;
    height: fit-content;
    position: sticky;
    top: 120px
}

[data-theme="light"] .rules-sidebar {
    border: 1px solid var(--tertiary-dark)
}

.rules-sidebar h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px
}

.rules-sidebar h3 i {
    color: var(--gold)
}

.procedure-list {
    display: flex;
    flex-direction: column;
    gap: 15px
}

.procedure-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: var(--tertiary-dark);
    border-radius: 10px;
    transition: var(--transition)
}

.procedure-item:hover {
    background: rgba(157, 78, 221, 0.2);
    transform: translateX(5px)
}

[data-theme="light"] .procedure-item:hover {
    background: rgba(124, 58, 237, 0.1)
}

.procedure-icon {
    width: 35px;
    height: 35px;
    background: var(--golden-purple);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 14px;
    flex-shrink: 0
}

.procedure-text h4 {
    font-size: 14px;
    margin-bottom: 5px
}

.procedure-text p {
    font-size: 12px;
    color: var(--text-muted)
}

.rules-download {
    width: 100%;
    margin-top: 25px;
    justify-content: center
}

.services {
    background: var(--secondary-dark)
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px
}

.service-card {
    background: var(--card-dark);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--tertiary-dark);
    position: relative;
    overflow: hidden
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--golden-purple);
    opacity: 0;
    transition: var(--transition);
    z-index: 0
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--purple)
}

.service-card:hover::before {
    opacity: .07
}

[data-theme="light"] .service-card:hover::before {
    opacity: .05
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(157, 78, 221, 0.15);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    position: relative;
    z-index: 1;
    transition: var(--transition)
}

[data-theme="light"] .service-icon {
    background: rgba(124, 58, 237, 0.1)
}

.service-icon i {
    font-size: 32px;
    background: var(--golden-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.service-card:hover .service-icon {
    background: var(--golden-purple)
}

.service-card:hover .service-icon i {
    -webkit-text-fill-color: #fff
}

.service-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1
}

.service-desc {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    margin-bottom: 20px
}

.service-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
    transition: var(--transition)
}

.service-link:hover {
    color: var(--purple-light)
}

[data-theme="light"] .service-link:hover {
    color: var(--purple)
}

.service-link i {
    transition: var(--transition)
}

.service-link:hover i {
    transform: translateX(5px)
}

.stats {
    position: relative;
    overflow: hidden
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--golden-purple);
    opacity: .07
}

[data-theme="light"] .stats::before {
    opacity: .04
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px
}

.stat-card {
    background: var(--card-dark);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid var(--tertiary-dark);
    transition: var(--transition);
    position: relative;
    overflow: hidden
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--golden-purple)
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--glow-purple);
    border-color: var(--purple)
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(157, 78, 221, 0.15);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px
}

[data-theme="light"] .stat-icon {
    background: rgba(124, 58, 237, 0.1)
}

.stat-icon i {
    font-size: 24px;
    color: var(--gold)
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    font-weight: 700;
    background: var(--golden-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px
}

.stat-label {
    color: var(--text-secondary);
    font-size: 14px
}

.faq {
    background: var(--primary-dark)
}

.faq-container {
    max-width: 800px;
    margin: 0 auto
}

.faq-item {
    background: var(--card-dark);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid var(--tertiary-dark);
    transition: var(--transition)
}

.faq-item:hover {
    border-color: var(--purple)
}

.faq-question {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition)
}

.faq-question:hover {
    background: var(--tertiary-dark)
}

.faq-question h4 {
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px
}

.faq-question h4 i {
    color: var(--gold)
}

.faq-question .toggle-icon {
    width: 30px;
    height: 30px;
    background: var(--tertiary-dark);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    color: var(--purple-light);
    flex-shrink: 0
}

.faq-item.active .faq-question .toggle-icon {
    background: var(--purple);
    color: #fff;
    transform: rotate(180deg)
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all .3s ease
}

.faq-item.active .faq-answer {
    max-height: 300px
}

.faq-answer p {
    padding: 0 25px 25px;
    color: var(--text-secondary);
    line-height: 1.8
}

.contact {
    background: var(--secondary-dark)
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px
}

.contact-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    margin-bottom: 20px
}

.contact-info>p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 30px
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 25px
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px
}

.contact-item-icon {
    width: 55px;
    height: 55px;
    background: rgba(157, 78, 221, 0.15);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0
}

[data-theme="light"] .contact-item-icon {
    background: rgba(124, 58, 237, 0.1)
}

.contact-item-icon i {
    font-size: 22px;
    color: var(--gold)
}

.contact-item-text h4 {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 5px
}

.contact-item-text p {
    margin: 0;
    font-weight: 500;
    color: var(--text-primary)
}

.contact-social {
    display: flex;
    gap: 15px;
    margin-top: 30px
}

.contact-social a {
    width: 50px;
    height: 50px;
    background: var(--tertiary-dark);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-secondary);
    font-size: 20px;
    transition: var(--transition);
    text-decoration: none
}

.contact-social a:hover {
    background: var(--golden-purple);
    color: #fff;
    transform: translateY(-5px)
}

.contact-map {
    margin-top: 30px;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid var(--tertiary-dark)
}

.contact-form {
    background: var(--card-dark);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--tertiary-dark);
    position: relative
}

.form-group {
    margin-bottom: 25px;
    position: relative
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 14px
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    background: var(--tertiary-dark);
    border: 2px solid transparent;
    border-radius: 12px;
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    transition: var(--transition)
}

[data-theme="light"] .form-group input,
[data-theme="light"] .form-group textarea,
[data-theme="light"] .form-group select {
    background: var(--primary-dark);
    border-color: var(--tertiary-dark)
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--purple);
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.15)
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #ef4444
}

.form-group textarea {
    min-height: 150px;
    resize: vertical
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23a0aec0' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center
}

[data-theme="light"] .form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23475569' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px
}

.form-error {
    color: #ef4444;
    font-size: 12px;
    margin-top: 5px;
    display: none
}

.form-group input.error+.form-error,
.form-group textarea.error+.form-error,
.form-group select.error+.form-error {
    display: block
}

.char-count {
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 12px;
    color: var(--text-muted)
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--purple);
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px
}

.form-checkbox label {
    font-size: 14px;
    color: var(--text-secondary);
    cursor: pointer
}

.form-checkbox label a {
    color: var(--gold);
    text-decoration: none
}

.form-checkbox label a:hover {
    text-decoration: underline
}

.form-submit {
    width: 100%;
    padding: 18px;
    background: var(--golden-purple);
    border: 0;
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: relative
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-gold)
}

.form-submit:disabled {
    opacity: .7;
    cursor: not-allowed;
    transform: none
}

.form-submit .btn-text,
.form-submit .btn-loader {
    display: flex;
    align-items: center;
    gap: 10px
}

.form-submit .btn-loader {
    display: none
}

.form-submit.loading .btn-text {
    display: none
}

.form-submit.loading .btn-loader {
    display: flex
}

.form-success {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--card-dark);
    border-radius: 20px;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    text-align: center;
    padding: 40px
}

.form-success.show {
    display: flex
}

.form-success i {
    font-size: 60px;
    color: var(--gold)
}

.form-success h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px
}

.form-success p {
    color: var(--text-secondary)
}

.footer {
    background: var(--primary-dark);
    padding: 80px 5% 30px
}

[data-theme="light"] .footer {
    border-top: 1px solid var(--tertiary-dark)
}

.footer-top {
    margin-bottom: 40px
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px
}

.footer-brand .logo {
    margin-bottom: 20px
}

.footer-brand>p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 14px
}

.footer-social {
    display: flex;
    gap: 12px
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: var(--tertiary-dark);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-secondary);
    transition: var(--transition);
    text-decoration: none
}

.footer-social a:hover {
    background: var(--golden-purple);
    color: #fff;
    transform: translateY(-3px)
}

.footer-column h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--gold)
}

.footer-links {
    list-style: none
}

.footer-links li {
    margin-bottom: 12px
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(5px)
}

.footer-links a i {
    font-size: 10px
}

.footer-contact {
    list-style: none
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-secondary);
    font-size: 14px
}

.footer-contact li i {
    color: var(--gold);
    margin-top: 3px
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--tertiary-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 14px
}

.footer-bottom-links {
    display: flex;
    gap: 30px
}

.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition)
}

.footer-bottom-links a:hover {
    color: var(--gold)
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--golden-purple);
    border: 0;
    border-radius: 15px;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--glow-gold)
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible
}

.back-to-top:hover {
    transform: translateY(-5px)
}

.toast-container {
    position: fixed;
    top: 100px;
    right: 30px;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    gap: 15px
}

.toast {
    background: var(--card-dark);
    border-radius: 12px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-left: 4px solid var(--gold);
    animation: slideInRight .5s ease;
    min-width: 300px;
    border: 1px solid var(--tertiary-dark);
    border-left: 4px solid var(--gold)
}

[data-theme="light"] .toast {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08)
}

.toast.success {
    border-left-color: #10b981
}

.toast.error {
    border-left-color: #ef4444
}

.toast.info {
    border-left-color: var(--purple)
}

.toast i {
    font-size: 24px
}

.toast.success i {
    color: #10b981
}

.toast.error i {
    color: #ef4444
}

.toast.info i {
    color: var(--purple)
}

.toast-content h4 {
    font-size: 14px;
    margin-bottom: 3px
}

.toast-content p {
    font-size: 12px;
    color: var(--text-muted)
}

.toast-close {
    margin-left: auto;
    background: 0;
    border: 0;
    color: var(--text-muted);
    font-size: 16px;
    cursor: pointer;
    padding: 5px
}

.toast-close:hover {
    color: var(--text-primary)
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0
    }

    to {
        transform: translateX(0);
        opacity: 1
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all .8s ease
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0)
}

.hosts {
    background: var(--secondary-dark)
}

.hosts-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start
}

.host-group {
    background: var(--card-dark);
    border-radius: 20px;
    border: 1px solid var(--tertiary-dark);
    overflow: hidden;
    transition: var(--transition)
}

.host-group:hover {
    border-color: var(--purple);
    box-shadow: var(--glow-purple)
}

.host-group.active {
    border-color: var(--gold)
}

.group-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 40px 30px;
    cursor: pointer;
    transition: var(--transition);
    background: var(--tertiary-dark)
}

.group-header:hover {
    background: rgba(157, 78, 221, 0.1)
}

[data-theme="light"] .group-header:hover {
    background: rgba(124, 58, 237, 0.07)
}

.group-icon {
    width: 60px;
    height: 60px;
    background: var(--golden-purple);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: #fff;
    box-shadow: var(--glow-gold);
    flex-shrink: 0
}

.group-info {
    flex: 1
}

.group-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    background: var(--golden-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.group-stats {
    display: flex;
    gap: 25px;
    flex-wrap: wrap
}

.group-stats span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary)
}

.group-stats span i {
    color: var(--purple-light)
}

.group-views {
    color: var(--gold) !important
}

.group-views i {
    color: var(--gold) !important
}

.group-view-count {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    color: var(--gold)
}

.group-toggle {
    width: 45px;
    height: 45px;
    background: var(--card-dark);
    border: 2px solid var(--purple);
    border-radius: 50%;
    color: var(--purple-light);
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center
}

.group-toggle:hover {
    background: var(--purple);
    color: #fff
}

.host-group.active .group-toggle {
    transform: rotate(180deg);
    background: var(--gold);
    border-color: var(--gold);
    color: var(--primary-dark)
}

[data-theme="light"] .host-group.active .group-toggle {
    color: #fff
}

.group-members {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all .5s ease
}

.host-group.active .group-members {
    max-height: 2000px;
    padding: 30px
}

.member-card {
    background: var(--tertiary-dark);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden
}

.member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--golden-purple);
    opacity: 0;
    transition: var(--transition)
}

.member-card:hover {
    transform: translateX(10px);
    border-color: var(--purple);
    background: var(--card-dark)
}

.member-card:hover::before {
    opacity: 1
}

.member-image {
    position: relative;
    width: 80px;
    height: 80px;
    flex-shrink: 0
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--purple);
    transition: var(--transition)
}

.member-card:hover .member-image img {
    border-color: var(--gold);
    box-shadow: var(--glow-gold)
}

.member-video-btn {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 32px;
    height: 32px;
    background: var(--golden-purple);
    border: 0;
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3)
}

.member-video-btn:hover {
    transform: scale(1.2)
}

.member-video-btn i {
    margin-left: 2px
}

.member-info {
    flex: 1;
    min-width: 0
}

.member-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.member-username {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--purple-light);
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition);
    margin-bottom: 8px
}

.member-username:hover {
    color: var(--gold)
}

.member-username i {
    font-size: 14px
}

.member-views {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
    background: var(--card-dark);
    padding: 5px 12px;
    border-radius: 20px;
    width: fit-content
}

[data-theme="light"] .member-views {
    background: var(--tertiary-dark)
}

.member-views i {
    color: var(--gold);
    font-size: 12px
}

.member-view-count {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    color: var(--gold)
}

.host-member-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    padding: 20px
}

.host-member-modal.active {
    opacity: 1;
    visibility: visible
}

.host-modal-content {
    position: relative;
    width: 100%;
    max-width: 1000px;
    max-height: 90vh;
    background: var(--card-dark);
    border-radius: 25px;
    overflow-y: auto;
    overflow-x: hidden;
    transform: scale(0.9);
    transition: all .3s ease;
    border: 2px solid var(--purple);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4)
}

[data-theme="light"] .host-modal-content {
    border-color: rgba(124, 58, 237, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15)
}

.host-member-modal.active .host-modal-content {
    transform: scale(1)
}

.host-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: var(--primary-dark);
    border: 2px solid var(--purple);
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center
}

.host-modal-close:hover {
    background: var(--purple);
    color: #fff;
    transform: rotate(90deg)
}

.host-modal-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 0;
    height: auto
}

.host-modal-video-section {
    background: var(--tertiary-dark);
    padding: 40px;
    display: block;
    border-right: 1px solid rgba(157, 78, 221, 0.3)
}

[data-theme="light"] .host-modal-video-section {
    border-right-color: rgba(124, 58, 237, 0.15)
}

.host-modal-video-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 9/16;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--glow-purple)
}

.host-modal-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none
}

.host-video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--purple-dark), var(--primary-dark));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    text-align: center;
    padding: 30px
}

[data-theme="light"] .host-video-placeholder {
    background: linear-gradient(135deg, #7c3aed, #312e81)
}

.host-video-placeholder i {
    font-size: 60px;
    color: var(--gold)
}

.host-video-placeholder p {
    color: rgba(255, 255, 255, 0.8)
}

.host-video-placeholder h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--gold);
    font-size: 24px
}

.host-video-play-btn {
    margin-top: 20px;
    padding: 12px 30px
}

.host-modal-info-section {
    padding: 40px;
    max-height: calc(90vh - 80px)
}

.host-modal-profile {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 20px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--tertiary-dark)
}

.host-profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid var(--gold);
    object-fit: cover;
    box-shadow: var(--glow-gold);
    flex-shrink: 0
}

.host-profile-info {
    flex: 1
}

.host-profile-info h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    margin-bottom: 8px;
    color: var(--text-primary)
}

.host-username-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--purple-light);
    font-size: 18px;
    text-decoration: none;
    transition: var(--transition);
    background: rgba(157, 78, 221, 0.1);
    padding: 10px 20px;
    border-radius: 25px;
    border: 1px solid rgba(157, 78, 221, 0.3)
}

.host-username-link:hover {
    color: var(--gold);
    background: rgba(157, 78, 221, 0.2);
    transform: translateY(-3px)
}

[data-theme="light"] .host-username-link {
    color: var(--purple);
    background: rgba(124, 58, 237, 0.07);
    border-color: rgba(124, 58, 237, 0.2)
}

[data-theme="light"] .host-username-link:hover {
    background: rgba(124, 58, 237, 0.15)
}

.host-username-link i {
    font-size: 20px
}

.host-modal-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px
}

.host-stat-card {
    background: var(--tertiary-dark);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    border: 1px solid transparent;
    transition: var(--transition)
}

.host-stat-card:hover {
    border-color: var(--purple);
    transform: translateY(-5px)
}

.host-stat-icon {
    width: 50px;
    height: 50px;
    background: var(--golden-purple);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    font-size: 20px;
    color: #fff
}

.host-stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
    display: block;
    margin-bottom: 5px
}

.host-stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px
}

.host-modal-bio {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--tertiary-dark)
}

.host-modal-bio h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold)
}

.host-modal-bio h3 i {
    font-size: 20px
}

.host-modal-bio p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 15px
}

.host-modal-social {
    padding-top: 40px;
    padding-bottom: 12px
}

.host-modal-social h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold)
}

.host-modal-social h3 i {
    font-size: 20px
}

.host-social-links {
    display: flex;
    gap: 15px
}

.host-social-link {
    width: 50px;
    height: 50px;
    background: var(--tertiary-dark);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-secondary);
    font-size: 22px;
    transition: var(--transition);
    text-decoration: none;
    border: 2px solid transparent
}

.host-social-link:hover {
    background: var(--golden-purple);
    color: #fff;
    transform: translateY(-5px);
    border-color: var(--gold)
}

.host-modal-view-counter {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--card-dark);
    border: 1px solid var(--purple);
    padding: 15px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10002;
    box-shadow: var(--glow-purple);
    animation: slideInLeft 1s ease
}

[data-theme="light"] .host-modal-view-counter {
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: 0 5px 20px rgba(124, 58, 237, 0.12)
}

.host-modal-view-counter i {
    font-size: 24px;
    color: var(--gold)
}

.host-modal-view-counter-info h4 {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 5px
}

.host-modal-view-count {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    color: var(--purple-light)
}

.host-info-btn {
    position: absolute;
    bottom: 45px;
    right: 20px;
    width: 35px;
    height: 35px;
    background: var(--golden-purple);
    border: 0;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 2
}

.host-info-btn:hover {
    transform: scale(1.2);
    box-shadow: var(--glow-gold)
}

.member-card .host-info-btn {
    opacity: 1;
    transition: var(--transition)
}

.host-modal-rating {
    margin-top: -20px;
    margin-bottom: 30px;
    padding: 25px;
    background: var(--tertiary-dark);
    border-radius: 15px;
    border: 1px solid rgba(157, 78, 221, 0.3)
}

[data-theme="light"] .host-modal-rating {
    border-color: rgba(124, 58, 237, 0.15)
}

.host-modal-rating h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold)
}

.host-modal-rating h3 i {
    font-size: 20px
}

.rating-display {
    text-align: center;
    margin-bottom: 25px
}

.rating-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3)
}

.rating-bar {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 15px
}

[data-theme="light"] .rating-bar {
    background: rgba(0, 0, 0, 0.08)
}

.rating-fill {
    height: 100%;
    background: var(--golden-purple);
    width: 0;
    transition: width .8s ease;
    border-radius: 5px
}

.rating-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 10px
}

.like-stat,
.dislike-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary)
}

.like-stat i {
    color: #4ade80
}

.dislike-stat i {
    color: #f87171
}

.rating-buttons {
    display: flex;
    gap: 15px
}

.rating-btn {
    flex: 1;
    padding: 15px;
    border-radius: 12px;
    border: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden
}

.rating-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left .5s ease
}

.rating-btn:hover::before {
    left: 100%
}

.like-btn {
    background: rgba(74, 222, 128, 0.1);
    border: 2px solid rgba(74, 222, 128, 0.3);
    color: #4ade80
}

.like-btn:hover {
    background: rgba(74, 222, 128, 0.2);
    border-color: #4ade80;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(74, 222, 128, 0.2)
}

.dislike-btn {
    background: rgba(248, 113, 113, 0.1);
    border: 2px solid rgba(248, 113, 113, 0.3);
    color: #f87171
}

.dislike-btn:hover {
    background: rgba(248, 113, 113, 0.2);
    border-color: #f87171;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(248, 113, 113, 0.2)
}

.rating-btn.active,
.like-btn.active {
    background: linear-gradient(135deg, #4ade80, #22c55e);
    color: #fff;
    border-color: transparent
}

.dislike-btn.active {
    background: linear-gradient(135deg, #f87171, #ef4444);
    color: #fff;
    border-color: transparent
}

.rating-btn i {
    font-size: 18px
}

#hostModalJoinYear {
    font-size: 16px
}

.sao-owners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: .5rem
}

.sao-owner-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1.25rem;
    overflow: hidden;
    transition: transform .4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .4s ease, border-color .4s ease
}

[data-theme="light"] .sao-owner-card {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06)
}

.sao-owner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.25)
}

[data-theme="light"] .sao-owner-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-color: rgba(217, 119, 6, 0.35)
}

.sao-owner-visual {
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 2.5rem;
    padding-bottom: 1.5rem
}

.sao-owner-backdrop {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0, rgba(138, 43, 226, 0.12) 50%, rgba(0, 191, 255, 0.08) 100%);
    clip-path: ellipse(120% 80% at 50% 0);
    pointer-events: none
}

[data-theme="light"] .sao-owner-backdrop {
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.06) 0, rgba(124, 58, 237, 0.08) 50%, rgba(0, 100, 200, 0.06) 100%)
}

.sao-owner-avatar-ring {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    padding: 4px;
    background: conic-gradient(from 0, #ffd700, #ff6b35, #c471ed, #12c2e9, #ffd700);
    animation: saoRingSpin 6s linear infinite;
    z-index: 1
}

@keyframes saoRingSpin {
    to {
        filter: hue-rotate(360deg)
    }
}

.sao-owner-avatar-ring img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-dark);
    display: block
}

.sao-owner-badge {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #ffd700, #ff9500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    color: #1a1a2e;
    border: 2px solid var(--primary-dark);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    z-index: 2
}

.sao-owner-body {
    padding: 0 1.75rem 1.75rem;
    text-align: center
}

.sao-owner-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: .25rem;
    letter-spacing: .5px
}

.sao-owner-title {
    font-size: .8rem;
    font-weight: 500;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem
}

.sao-owner-bio {
    font-size: .875rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis
}

.sao-owner-links {
    display: flex;
    justify-content: center;
    gap: .6rem;
    margin-bottom: 1.25rem
}

.sao-owner-social {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: .9rem;
    transition: all .3s ease;
    text-decoration: none
}

[data-theme="light"] .sao-owner-social {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.1)
}

.sao-owner-social:hover {
    background: rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.4);
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(255, 215, 0, 0.2)
}

[data-theme="light"] .sao-owner-social:hover {
    background: rgba(217, 119, 6, 0.1);
    border-color: rgba(217, 119, 6, 0.35)
}

.sao-owner-rating {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1rem
}

[data-theme="light"] .sao-owner-rating {
    border-top-color: rgba(0, 0, 0, 0.08)
}

.sao-owner-rating-bar-wrap {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: .75rem
}

.sao-owner-pct {
    font-family: 'Orbitron', sans-serif;
    font-size: .85rem;
    font-weight: 700;
    color: var(--gold);
    min-width: 42px
}

.sao-owner-bar {
    flex: 1;
    height: 8px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden
}

[data-theme="light"] .sao-owner-bar {
    background: rgba(0, 0, 0, 0.08)
}

.sao-owner-bar-fill {
    height: 100%;
    width: 0;
    border-radius: 99px;
    background: linear-gradient(90deg, #ffd700, #ff6b35);
    transition: width .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

[data-theme="light"] .sao-owner-bar-fill {
    background: linear-gradient(90deg, #d97706, #dc2626)
}

.sao-owner-votes {
    display: flex;
    justify-content: center;
    gap: .75rem
}

.sao-vote-btn {
    display: flex;
    align-items: center;
    gap: .4rem;
    padding: .45rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-secondary);
    font-size: .82rem;
    cursor: pointer;
    transition: all .3s ease;
    font-family: 'Poppins', sans-serif
}

[data-theme="light"] .sao-vote-btn {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.1)
}

.sao-vote-btn:hover {
    transform: scale(1.05)
}

.sao-vote-up:hover,
.sao-vote-up.active {
    background: rgba(76, 175, 80, 0.15);
    border-color: rgba(76, 175, 80, 0.4);
    color: #4caf50
}

.sao-vote-down:hover,
.sao-vote-down.active {
    background: rgba(244, 67, 54, 0.15);
    border-color: rgba(244, 67, 54, 0.4);
    color: #f44336
}

.hosts-cta {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-top: 4rem;
    padding: 5rem 2rem;
    grid-column: 1/-1;
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(180deg, transparent 0, rgba(255, 215, 0, 0.02) 20%, rgba(138, 43, 226, 0.04) 50%, rgba(255, 215, 0, 0.02) 80%, transparent 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06)
}

[data-theme="light"] .hosts-cta {
    background: linear-gradient(180deg, transparent 0, rgba(217, 119, 6, 0.03) 20%, rgba(124, 58, 237, 0.04) 50%, rgba(217, 119, 6, 0.03) 80%, transparent 100%);
    border-top-color: rgba(0, 0, 0, 0.06);
    border-bottom-color: rgba(0, 0, 0, 0.06)
}

.hosts-cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden
}

.hosts-cta-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .35;
    animation: ctaGlowFloat 8s ease-in-out infinite alternate
}

.hosts-cta-glow-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3), transparent 70%);
    top: -30%;
    left: 10%
}

.hosts-cta-glow-2 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.3), transparent 70%);
    bottom: -30%;
    right: 10%;
    animation-delay: -4s;
    animation-direction: alternate-reverse
}

[data-theme="light"] .hosts-cta-glow-1 {
    opacity: .12
}

[data-theme="light"] .hosts-cta-glow-2 {
    opacity: .1
}

@keyframes ctaGlowFloat {
    0% {
        transform: translate(0, 0) scale(1)
    }

    100% {
        transform: translate(40px, -30px) scale(1.15)
    }
}

.hosts-cta-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1
}

.hosts-cta-header {
    margin-bottom: 3rem
}

.hosts-cta-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(138, 43, 226, 0.1));
    border: 1px solid rgba(255, 215, 0, 0.2);
    color: #ffd700;
    animation: ctaIconPulse 3s ease-in-out infinite
}

[data-theme="light"] .hosts-cta-icon {
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.12), rgba(124, 58, 237, 0.08));
    border-color: rgba(217, 119, 6, 0.25);
    color: var(--gold)
}

@keyframes ctaIconPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.2)
    }

    50% {
        box-shadow: 0 0 0 20px rgba(255, 215, 0, 0)
    }
}

.hosts-cta-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffd700, #ff6b35, #c471ed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: .75rem;
    line-height: 1.3
}

[data-theme="light"] .hosts-cta-title {
    background: linear-gradient(135deg, #cc7a00, #e64a19, #7b2cbf);
    -webkit-background-clip: text;
    background-clip: text
}

.hosts-cta-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7
}

.hosts-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap
}

.btn-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2rem;
    border-radius: 1rem;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    transition: all .4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    min-width: 300px;
    position: relative;
    overflow: hidden
}

.btn-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity .4s ease
}

.btn-cta:hover::before {
    opacity: 1
}

.btn-cta-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: transform .3s ease
}

.btn-cta:hover .btn-cta-icon {
    transform: scale(1.1)
}

.btn-cta span {
    display: flex;
    flex-direction: column;
    text-align: left;
    position: relative;
    z-index: 1;
    flex: 1
}

.btn-cta strong {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3
}

.btn-cta small {
    font-size: .8rem;
    opacity: .65;
    font-weight: 400;
    margin-top: 2px
}

.btn-cta-arrow {
    font-size: .9rem;
    position: relative;
    z-index: 1;
    transition: transform .3s ease;
    opacity: .5
}

.btn-cta:hover .btn-cta-arrow {
    transform: translateX(6px);
    opacity: 1
}

.btn-cta-host {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(255, 165, 0, 0.04));
    border: 1px solid rgba(255, 215, 0, 0.2);
    color: #ffd700
}

.btn-cta-host::before {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12), rgba(255, 165, 0, 0.06))
}

.btn-cta-host .btn-cta-icon {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.1));
    color: #ffd700
}

.btn-cta-host:hover {
    border-color: rgba(255, 215, 0, 0.45);
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(255, 215, 0, 0.12), 0 0 0 1px rgba(255, 215, 0, 0.1);
    color: #ffd700
}

[data-theme="light"] .btn-cta-host {
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.07), rgba(255, 215, 0, 0.03));
    border-color: rgba(217, 119, 6, 0.25);
    color: #b45309
}

[data-theme="light"] .btn-cta-host .btn-cta-icon {
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.15), rgba(255, 215, 0, 0.08));
    color: #b45309
}

[data-theme="light"] .btn-cta-host:hover {
    border-color: rgba(217, 119, 6, 0.5);
    box-shadow: 0 16px 48px rgba(217, 119, 6, 0.1);
    color: #b45309
}

.btn-cta-agency {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.08), rgba(0, 191, 255, 0.04));
    border: 1px solid rgba(138, 43, 226, 0.2);
    color: #c471ed
}

.btn-cta-agency::before {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.12), rgba(0, 191, 255, 0.06))
}

.btn-cta-agency .btn-cta-icon {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(0, 191, 255, 0.1));
    color: #c471ed
}

.btn-cta-agency:hover {
    border-color: rgba(138, 43, 226, 0.45);
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(138, 43, 226, 0.12), 0 0 0 1px rgba(138, 43, 226, 0.1);
    color: #c471ed
}

[data-theme="light"] .btn-cta-agency {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.06), rgba(0, 100, 200, 0.03));
    border-color: rgba(124, 58, 237, 0.2);
    color: #6a1fb0
}

[data-theme="light"] .btn-cta-agency .btn-cta-icon {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(0, 100, 200, 0.06));
    color: #6a1fb0
}

[data-theme="light"] .btn-cta-agency:hover {
    border-color: rgba(124, 58, 237, 0.45);
    box-shadow: 0 16px 48px rgba(124, 58, 237, 0.1);
    color: #6a1fb0
}

.sao-video-btn {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #ffd700, #ff9500);
    border: 0;
    border-radius: 50%;
    color: #1a1a2e;
    font-size: .85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.5);
    transition: transform .3s ease, box-shadow .3s ease;
    z-index: 3
}

.sao-video-btn:hover {
    transform: translateX(-50%) scale(1.15);
    box-shadow: 0 6px 18px rgba(255, 215, 0, 0.7)
}

.agreement-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100000;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 20px
}

.agreement-modal.active {
    display: flex
}

.agreement-modal-content {
    background: var(--secondary-dark);
    border: 1px solid var(--tertiary-dark);
    border-radius: 16px;
    width: 100%;
    max-width: 720px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    position: relative;
    animation: agreementModalIn .3s ease
}

[data-theme="light"] .agreement-modal-content {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12)
}

@keyframes agreementModalIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(10px)
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0)
    }
}

.agreement-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--tertiary-dark);
    flex-shrink: 0
}

.agreement-modal-header h2 {
    margin: 0;
    font-size: 1.4rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px
}

.agreement-modal-header h2 i {
    color: var(--gold)
}

.agreement-modal-close {
    background: 0;
    border: 1px solid var(--tertiary-dark);
    color: var(--text-secondary);
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s ease;
    font-size: 1rem
}

.agreement-modal-close:hover {
    color: var(--text-primary);
    border-color: var(--text-secondary);
    background: var(--tertiary-dark)
}

.agreement-modal-body {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: .95rem
}

.agreement-modal-body h1,
.agreement-modal-body h2,
.agreement-modal-body h3,
.agreement-modal-body h4 {
    color: var(--text-primary);
    margin-top: 1.2em;
    margin-bottom: .6em
}

.agreement-modal-body p {
    margin-bottom: 1em
}

.agreement-modal-body ul,
.agreement-modal-body ol {
    margin-bottom: 1em;
    padding-left: 1.5em
}

.agreement-modal-body li {
    margin-bottom: .4em
}

.agreement-modal-body a {
    color: var(--gold);
    text-decoration: underline
}

.agreement-modal-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--tertiary-dark);
    display: flex;
    justify-content: flex-end;
    flex-shrink: 0
}

.agreement-modal-footer button {
    background: var(--golden-purple);
    color: #fff;
    border: 0;
    padding: 10px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: .95rem;
    transition: all .2s ease
}

.agreement-modal-footer button:hover {
    opacity: .9;
    transform: translateY(-1px)
}

[data-agreement] {
    cursor: pointer;
    text-decoration: underline;
    color: var(--gold)
}

[data-agreement]:hover {
    opacity: .85
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-right: 6px
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 8px;
    text-decoration: none;
    font-size: .78rem;
    font-weight: 700;
    color: var(--text-secondary);
    transition: all .2s;
    border: 1px solid transparent;
    letter-spacing: .04em
}

.lang-btn:hover {
    background: var(--tertiary-dark);
    color: var(--text-primary)
}

.lang-btn.lang-active {
    background: var(--tertiary-dark);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, .18)
}

[data-theme="light"] .lang-btn.lang-active {
    border-color: rgba(0, 0, 0, 0.15)
}

.lang-flag {
    width: 19px;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .3)
}

.lang-sep {
    color: var(--text-muted);
    font-size: .75rem
}

.mobile-lang-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 0 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

[data-theme="light"] .mobile-lang-row {
    border-bottom-color: rgba(0, 0, 0, 0.08)
}

.mobile-lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-size: .82rem;
    font-weight: 700;
    color: var(--text-secondary);
    border: 1px solid var(--tertiary-dark);
    transition: all .2s
}

.mobile-lang-btn.lang-active {
    background: var(--tertiary-dark);
    color: var(--text-primary);
    border-color: var(--purple)
}

.host-disclaimer-fields {
    overflow: hidden
}

.disclaimer-section-wrap {
    background: linear-gradient(135deg, rgba(32, 201, 151, .06), rgba(32, 201, 151, .02));
    border: 1.5px solid rgba(32, 201, 151, .22);
    border-radius: 14px;
    padding: 18px 20px 8px;
    margin-bottom: 20px;
    animation: disclaimerSlideIn .3s ease
}

@keyframes disclaimerSlideIn {
    from {
        opacity: 0;
        transform: translateY(-8px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.disclaimer-section-heading {
    font-size: .72rem;
    font-weight: 800;
    color: #20c997;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(32, 201, 151, .18)
}

.disclaimer-check-item {
    padding: 10px 0;
    border-bottom: 1px solid var(--tertiary-dark);
    align-items: flex-start !important;
    gap: 12px !important
}

.disclaimer-check-item:last-child {
    border-bottom: 0;
    padding-bottom: 4px
}

.disclaimer-check-item input[type="checkbox"] {
    flex-shrink: 0;
    margin-top: 3px;
    accent-color: #20c997;
    width: 16px;
    height: 16px;
    cursor: pointer
}

.disclaimer-check-item label {
    font-size: .83rem;
    line-height: 1.55;
    cursor: pointer;
    color: var(--text-secondary)
}

.disclaimer-required-item label {
    font-weight: 500;
    color: var(--text-primary)
}

.disclaimer-required-mark {
    color: #ef4444;
    font-weight: 700
}

.disclaimer-error-msg {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ef4444;
    font-size: .8rem;
    margin: 0 0 20px 0;
    padding: 9px 14px;
    background: rgba(239, 68, 68, .08);
    border-radius: 9px;
    border: 1px solid rgba(239, 68, 68, .22);
    animation: disclaimerSlideIn .2s ease
}

.disclaimer-plain-item {
    padding: 10px 0;
    border-bottom: 1px solid var(--tertiary-dark);
    font-size: .83rem;
    line-height: 1.55;
    color: var(--text-secondary)
}

.disclaimer-plain-item:last-child {
    border-bottom: 0;
    padding-bottom: 4px
}

.disclaimer-required-item input[type="checkbox"] {
    accent-color: #ef4444
}

.disclaimer-optional-input-wrap {
    padding: 10px 0;
    border-bottom: 1px solid var(--tertiary-dark)
}

.disclaimer-optional-input-wrap:last-child {
    border-bottom: 0;
    padding-bottom: 4px
}

.disclaimer-optional-label {
    display: block;
    font-size: .83rem;
    line-height: 1.55;
    margin-bottom: 7px;
    color: var(--text-secondary)
}

.disclaimer-optional-field {
    width: 100%;
    background: var(--tertiary-dark);
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: .82rem;
    color: var(--text-primary);
    outline: 0;
    transition: border-color .2s
}

.disclaimer-optional-field:focus {
    border-color: var(--purple)
}

.disclaimer-optional-field::placeholder {
    color: var(--text-muted)
}

button#videoModalPlayBtn {
    justify-content: center;
}

.hl2 {
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02)
}

[data-theme="light"] .hl2 {
    background: var(--primary-dark)
}

.hl2-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0
}

.hl2-bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    opacity: .14
}

[data-theme="light"] .hl2-bg-blob {
    opacity: .06
}

.hl2-bg-blob:nth-child(1) {
    width: 520px;
    height: 520px;
    background: var(--purple);
    top: -160px;
    left: -120px;
    animation: hl2Blob 15s ease-in-out infinite alternate
}

.hl2-bg-blob:nth-child(2) {
    width: 420px;
    height: 420px;
    background: var(--gold);
    bottom: -120px;
    right: -60px;
    animation: hl2Blob 13s ease-in-out infinite alternate-reverse
}

@keyframes hl2Blob {
    from {
        transform: translate(0, 0) scale(1)
    }

    to {
        transform: translate(35px, -22px) scale(1.12)
    }
}

.hl2-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto
}

.hl2-groups {
    display: flex;
    flex-direction: column
}

.hl2-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    padding: 70px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08)
}

[data-theme="light"] .hl2-group {
    border-bottom-color: rgba(0, 0, 0, 0.08)
}

.hl2-group:first-child {
    padding-top: 0
}

.hl2-group:last-child {
    padding-bottom: 0;
    border-bottom: 0
}

.hl2-group--reverse .hl2-video-side {
    order: 2
}

.hl2-group--reverse .hl2-content-side {
    order: 1
}

.hl2-video-side {
    overflow: visible
}

.hl2-carousel {
    position: relative;
    width: 100%;
    max-width: 540px;
    margin: 0 auto
}

.hl2-stage {
    position: relative;
    height: 365px;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center
}

.hl2-slide {
    position: absolute;
    width: 180px;
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    will-change: transform, opacity, filter;
    transition: transform .55s cubic-bezier(.4, 0, .2, 1), opacity .55s ease, filter .55s ease, box-shadow .55s ease
}

.hl2-slide[data-offset="0"] {
    transform: translateX(0) scale(1);
    opacity: 1;
    filter: blur(0);
    z-index: 10;
    box-shadow: 0 24px 64px rgba(0, 0, 0, .6), 0 0 48px rgba(157, 78, 221, .22);
    pointer-events: auto
}

.hl2-slide[data-offset="1"] {
    transform: translateX(192px) scale(0.78);
    opacity: .62;
    filter: blur(1.5px);
    z-index: 6;
    pointer-events: auto
}

.hl2-slide[data-offset="-1"] {
    transform: translateX(-192px) scale(0.78);
    opacity: .62;
    filter: blur(1.5px);
    z-index: 6;
    pointer-events: auto
}

.hl2-slide:not([data-offset="0"]):not([data-offset="1"]):not([data-offset="-1"]) {
    transform: translateX(0) scale(0.4);
    opacity: 0;
    pointer-events: none;
    z-index: 1
}

.hl2-slide[data-offset="0"]::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    border: 2px solid rgba(157, 78, 221, .55);
    z-index: 30;
    pointer-events: none;
    animation: hl2BorderGlow 3s ease-in-out infinite
}

@keyframes hl2BorderGlow {

    0%,
    100% {
        border-color: rgba(157, 78, 221, .55);
        box-shadow: inset 0 0 24px rgba(157, 78, 221, .1)
    }

    50% {
        border-color: rgba(255, 215, 0, .55);
        box-shadow: inset 0 0 32px rgba(255, 215, 0, .12)
    }
}

.hl2-card-inner {
    position: absolute;
    inset: 0
}

.hl2-slide[data-offset="0"] .hl2-card-inner {
    animation: hl2Float 5s ease-in-out infinite
}

@keyframes hl2Float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-7px)
    }
}

.hl2-thumb {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2
}

.hl2-thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: center;
    animation: hl2KenBurns 12s ease-in-out infinite alternate
}

@keyframes hl2KenBurns {
    0% {
        transform: scale(1) translate(0, 0)
    }

    25% {
        transform: scale(1.07) translate(-1.5%, -1%)
    }

    50% {
        transform: scale(1.12) translate(1%, 1.5%)
    }

    75% {
        transform: scale(1.06) translate(-1%, 0.5%)
    }

    100% {
        transform: scale(1) translate(0.5%, -0.5%)
    }
}

.hl2-thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .78) 0, rgba(0, 0, 0, .18) 52%, rgba(0, 0, 0, .04) 100%);
    z-index: 1
}

.hl2-slide:not([data-offset="0"]) .hl2-thumb-overlay {
    background: linear-gradient(to top, rgba(5, 2, 20, .88) 0, rgba(5, 2, 20, .45) 100%)
}

.hl2-play-btn {
    position: relative;
    z-index: 3;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 2px solid rgba(255, 255, 255, .38);
    color: #fff;
    font-size: 17px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .28)
}

.hl2-play-btn i {
    margin-left: 3px
}

.hl2-slide[data-offset="0"] .hl2-thumb:hover .hl2-play-btn {
    background: var(--golden-purple);
    border-color: transparent;
    transform: scale(1.14);
    box-shadow: 0 0 44px rgba(255, 215, 0, .5)
}

.hl2-slide:not([data-offset="0"]) .hl2-play-btn {
    opacity: .35;
    transform: scale(0.7);
    pointer-events: none
}

.hl2-play-pulse {
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 215, 0, .32);
    animation: hl2Pulse 2.3s ease-out infinite;
    pointer-events: none
}

.hl2-play-pulse-2 {
    inset: -22px;
    border-color: rgba(255, 215, 0, .16);
    animation-delay: .75s
}

@keyframes hl2Pulse {
    0% {
        transform: scale(.82);
        opacity: .7
    }

    100% {
        transform: scale(1.38);
        opacity: 0
    }
}

.hl2-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 4;
    display: none
}

.hl2-video:fullscreen {
    object-fit: contain
}

.hl2-active-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 16px 4px 0;
    min-height: 46px
}

.hl2-video-title-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    animation: hl2MetaFade .4s ease
}

@keyframes hl2MetaFade {
    from {
        opacity: 0;
        transform: translateY(4px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.hl2-video-date {
    font-size: 11px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0
}

.hl2-video-date i {
    color: var(--gold)
}

.hl2-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 20px
}

.hl2-prev,
.hl2-next {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--card-dark);
    border: 1.5px solid rgba(157, 78, 221, .28);
    color: var(--text-secondary);
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s ease;
    flex-shrink: 0
}

[data-theme="light"] .hl2-prev,
[data-theme="light"] .hl2-next {
    background: var(--tertiary-dark);
    border-color: rgba(124, 58, 237, 0.2)
}

.hl2-prev:hover,
.hl2-next:hover {
    background: var(--purple);
    border-color: var(--purple);
    color: #fff;
    transform: scale(1.12)
}

.hl2-dots {
    display: flex;
    gap: 7px;
    align-items: center
}

.hl2-dot {
    position: relative;
    overflow: hidden;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
    cursor: pointer;
    border: 0;
    padding: 0;
    transition: all .35s ease;
    flex-shrink: 0
}

[data-theme="light"] .hl2-dot {
    background: rgba(0, 0, 0, 0.15)
}

.hl2-dot.active {
    width: 26px;
    border-radius: 4px;
    background: rgba(255, 215, 0, .2)
}

[data-theme="light"] .hl2-dot.active {
    background: rgba(217, 119, 6, 0.2)
}

.hl2-dot.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--golden-purple);
    border-radius: 4px;
    animation: hl2DotFill 6s linear forwards
}

@keyframes hl2DotFill {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

.hl2-slide-counter {
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: .04em;
    white-space: nowrap;
    min-width: 36px;
    text-align: center
}

.hl2-content-side {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.hl2-series-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--purple-light);
    background: rgba(157, 78, 221, .1);
    border: 1px solid rgba(157, 78, 221, .25);
    width: fit-content;
    animation: hl2TagGlow 4s ease-in-out infinite
}

[data-theme="light"] .hl2-series-tag {
    color: var(--purple);
    background: rgba(124, 58, 237, 0.07);
    border-color: rgba(124, 58, 237, 0.2)
}

@keyframes hl2TagGlow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(157, 78, 221, 0)
    }

    50% {
        box-shadow: 0 0 18px 2px rgba(157, 78, 221, .2)
    }
}

.hl2-group-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(18px, 2.5vw, 28px);
    font-weight: 700;
    line-height: 1.3;
    background: var(--golden-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0
}

.hl2-accent {
    width: 52px;
    height: 3px;
    background: var(--golden-purple);
    border-radius: 2px;
    position: relative;
    overflow: hidden
}

.hl2-accent::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: rgba(255, 255, 255, .65);
    border-radius: 2px;
    animation: hl2AccentShimmer 3s ease-in-out infinite
}

@keyframes hl2AccentShimmer {
    0% {
        left: -100%
    }

    60%,
    100% {
        left: 200%
    }
}

.hl2-group-desc {
    color: var(--text-secondary);
    line-height: 1.88;
    font-size: 15px;
    margin: 0
}

.hl2-chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.hl2-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    background: rgba(255, 215, 0, .08);
    border: 1px solid rgba(255, 215, 0, .2);
    color: var(--gold);
    transition: all .3s ease
}

[data-theme="light"] .hl2-chip {
    background: rgba(217, 119, 6, 0.07);
    border-color: rgba(217, 119, 6, 0.2)
}

.hl2-chip:hover {
    background: rgba(255, 215, 0, .15);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 215, 0, .15)
}

[data-theme="light"] .hl2-chip:hover {
    background: rgba(217, 119, 6, 0.14);
    box-shadow: 0 4px 16px rgba(217, 119, 6, 0.12)
}

[data-theme="dark"] .disclaimer-optional-input-wrap,
[data-theme="dark"] .disclaimer-check-item,
[data-theme="dark"] .disclaimer-plain-item {
    border-bottom: 1px solid #20c99738
}

[data-theme="light"] .disclaimer-optional-input-wrap,
[data-theme="light"] .disclaimer-check-item,
[data-theme="light"] .disclaimer-plain-item {
    border-bottom: 1px solid #e2e8f0
}

@media(max-width:1200px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr
    }

    .footer-brand {
        grid-column: 1/-1
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:992px) {
    .nav-links {
        display: none
    }

    .mobile-menu-btn {
        display: flex
    }

    .mobile-menu {
        display: flex
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr
    }

    .about-image {
        order: 1
    }

    .about-content {
        order: 2
    }

    .rules-container {
        grid-template-columns: 1fr
    }

    .rules-sidebar {
        position: static
    }

    .cursor-dot,
    .cursor-outline {
        display: none
    }

    .hosts-container {
        grid-template-columns: 1fr
    }

    .host-modal-container {
        grid-template-columns: 1fr;
        max-height: 80vh
    }

    .host-modal-video-section {
        border-right: 0;
        border-bottom: 1px solid rgba(157, 78, 221, 0.3);
        padding: 30px
    }

    .host-modal-video-container {
        max-width: 400px
    }

    .host-modal-info-section {
        padding: 30px;
        max-height: calc(80vh - 60px)
    }

    .host-modal-stats {
        grid-template-columns: repeat(2, 1fr)
    }

    .host-modal-content {
        max-height: 85vh
    }
}

@media(max-width:768px) {
    .hero-stats {
        gap: 30px
    }

    .about-features {
        grid-template-columns: 1fr
    }

    .about-image-overlay {
        width: 120px;
        height: 120px;
        top: -10px;
        right: -10px
    }

    .about-image-overlay span:first-child {
        font-size: 36px
    }

    .about-floating-card {
        left: 10px;
        bottom: -10px;
        padding: 15px
    }

    .stats-grid {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px
    }

    .footer-brand {
        grid-column: 1/-1;
        text-align: center
    }

    .footer-social {
        justify-content: center
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .back-to-top {
        right: 15px
    }

    .toast {
        min-width: auto;
        width: calc(100vw - 60px)
    }

    .group-header {
        padding: 20px;
        flex-wrap: wrap
    }

    .group-icon {
        width: 50px;
        height: 50px;
        font-size: 20px
    }

    .group-name {
        font-size: 18px
    }

    .group-stats {
        gap: 15px
    }

    .group-stats span {
        font-size: 12px
    }

    .host-group.active .group-members {
        padding: 20px
    }

    .member-card {
        padding: 15px
    }

    .member-image {
        width: 60px;
        height: 60px
    }

    .member-name {
        font-size: 14px
    }

    .member-username {
        font-size: 12px
    }

    .host-modal-stats {
        grid-template-columns: 1fr
    }

    .host-modal-profile {
        flex-direction: column;
        text-align: center;
        gap: 20px
    }

    .host-profile-info h2 {
        font-size: 24px
    }

    .host-username-link {
        font-size: 16px;
        padding: 8px 16px
    }

    .host-modal-view-counter {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px
    }

    .org-connector-horizontal,
    .org-connector-horizontal.wide {
        width: 100px
    }

    .sao-owners-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem
    }

    .hosts-cta {
        padding: 3.5rem 1.5rem;
        margin-top: 3rem
    }

    .hosts-cta-icon {
        width: 60px;
        height: 60px;
        font-size: 1.3rem
    }

    .hosts-cta-title {
        font-size: 1.6rem
    }

    .hosts-cta-text {
        font-size: .95rem
    }

    .hosts-cta-header {
        margin-bottom: 2rem
    }

    .hosts-cta-buttons {
        flex-direction: column;
        align-items: center
    }

    .btn-cta {
        min-width: unset;
        width: 100%;
        max-width: 380px;
        padding: 1rem 1.5rem
    }
}

@media(max-width:480px) {
    section {
        padding: 60px 5%
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center
    }

    .btn {
        width: 100%;
        justify-content: center
    }

    .org-card {
        min-width: 100%
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px
    }

    .group-members {
        grid-template-columns: 1fr
    }

    .group-toggle {
        width: 38px;
        height: 38px;
        font-size: 14px
    }

    .host-modal-content {
        max-height: 85vh
    }

    .host-modal-video-section {
        padding: 20px
    }

    .host-modal-info-section {
        padding: 20px;
        max-height: calc(85vh - 40px)
    }

    .host-video-placeholder h3 {
        font-size: 20px
    }

    .host-profile-image {
        width: 100px;
        height: 100px
    }

    .host-social-links {
        gap: 10px
    }

    .host-social-link {
        width: 45px;
        height: 45px;
        font-size: 20px
    }

    .host-modal-view-counter {
        bottom: 15px;
        right: 15px;
        padding: 10px 15px
    }

    .hero-content {
        margin-bottom: 50px
    }

    .theme-toggle {
        margin: 0 -12px 0 12px
    }

    .sao-owner-body {
        padding: 0 1.25rem 1.25rem
    }

    .sao-owner-name {
        font-size: 1.05rem
    }

    .sao-owner-bio {
        font-size: .82rem
    }

    .hosts-cta {
        padding: 2.5rem 1rem
    }

    .hosts-cta-title {
        font-size: 1.35rem
    }

    .hosts-cta-text {
        font-size: .88rem
    }

    .btn-cta {
        padding: .9rem 1.25rem;
        gap: .75rem
    }

    .btn-cta-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem
    }

    .btn-cta strong {
        font-size: .95rem
    }

    .btn-cta small {
        font-size: .72rem
    }

    .contact-form {
        padding: 20px 12px
    }

    .form-row {
        gap: 0
    }

    .lang-switcher {
        display: none
    }
}

@media(max-width:780px) {
    .host-info-btn {
        bottom: 35px
    }
}

@media(min-width:481px) {
    .mobile-lang-row {
        display: none
    }
}

@media(max-width:960px) {
    .hl2-group {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 52px 0
    }

    .hl2-group--reverse .hl2-video-side {
        order: unset
    }

    .hl2-group--reverse .hl2-content-side {
        order: unset
    }

    .hl2-content-side {
        text-align: center;
        align-items: center
    }

    .hl2-stage {
        height: 340px
    }
}

@media(max-width:480px) {
    .hl2 {
        padding: 60px 5%
    }

    .hl2-group {
        padding: 40px 0;
        gap: 24px
    }

    .hl2-stage {
        height: 310px
    }

    .hl2-slide {
        width: 155px;
        height: 275px
    }

    .hl2-slide[data-offset="1"] {
        transform: translateX(164px) scale(0.78)
    }

    .hl2-slide[data-offset="-1"] {
        transform: translateX(-164px) scale(0.78)
    }

    .hl2-play-btn {
        width: 46px;
        height: 46px;
        font-size: 15px
    }

    .hl2-play-pulse {
        inset: -10px
    }

    .hl2-play-pulse-2 {
        inset: -19px
    }
}

@media(prefers-reduced-motion:reduce) {
    * {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important
    }
}