:root {
    --purple: #7c3aed;
    --purple-dark: #5b21b6;
    --purple-light: #a78bfa;
    --gold: #c89b3c;
    --bg-dark: #06060a;
    --bg-card: #111118;
    --bg-card-hover: #1a1a28;
    --border-color: #1e1e30;
    --text-muted: #6b6b88;
    --neon-purple: #b16eff;
}

* { box-sizing: border-box; }

body {
    background-color: var(--bg-dark);
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

footer { margin-top: auto; }

.text-purple { color: var(--purple-light) !important; }
.bg-purple { background-color: var(--purple) !important; }
.border-purple { border-color: var(--purple-dark) !important; }

.text-gradient-gold {
    background: linear-gradient(135deg, #f0c27f, #c89b3c, #f0c27f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-glow {
    color: var(--neon-purple);
    text-shadow: 0 0 30px rgba(177, 110, 255, 0.5), 0 0 60px rgba(177, 110, 255, 0.2);
    -webkit-text-fill-color: var(--neon-purple);
}

.btn-purple {
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
    color: #fff;
    border: none;
    padding: 8px 24px;
    border-radius: 6px;
    transition: all 0.3s;
}
.btn-purple:hover {
    background: linear-gradient(135deg, var(--purple-light), var(--purple));
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.5);
}

.btn-outline-purple {
    border: 1px solid var(--purple);
    color: var(--purple-light);
    background: transparent;
    border-radius: 6px;
    padding: 8px 24px;
    transition: all 0.3s;
}
.btn-outline-purple:hover {
    background: var(--purple);
    color: #fff;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--purple), #9333ea);
    color: #fff;
    border: none;
    padding: 14px 36px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s;
}
.btn-hero-primary:hover::before { left: 100%; }
.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.6);
    color: #fff;
}

.btn-hero-outline {
    border: 2px solid rgba(167, 139, 250, 0.4);
    color: var(--purple-light);
    background: rgba(124, 58, 237, 0.05);
    padding: 12px 36px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}
.btn-hero-outline:hover {
    border-color: var(--purple);
    background: rgba(124, 58, 237, 0.15);
    color: #fff;
    transform: translateY(-2px);
}

.hero-landing {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg-dark);
    padding: 60px 0 40px;
}

.hero-grid-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        linear-gradient(rgba(124, 58, 237, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 58, 237, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-glow {
    position: absolute;
    top: -10%;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
    pointer-events: none;
    animation: glowPulse 6s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.hero-particles {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--purple-light);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(100vh); }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { opacity: 0; transform: translateY(-10vh); }
}

.min-vh-hero { }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.3);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--purple-light);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5); }
    50% { box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
    color: #fff;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 480px;
    line-height: 1.7;
}

.hero-stats-row {
    display: flex;
    align-items: center;
    gap: 30px;
}

.hero-stat-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    font-variant-numeric: tabular-nums;
}

.hero-stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--border-color), transparent);
}

.live-pulse {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulseDot 1.5s infinite;
}
.live-pulse { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.5); }
@keyframes pulseDot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.5); }
    50% { box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
}

.hero-visual {
    position: relative;
    height: 320px;
}

.floating-card {
    position: absolute;
    width: 200px;
    height: 120px;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(124, 58, 237, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: all 0.4s;
}
.floating-card:hover {
    transform: scale(1.08) !important;
    border-color: var(--purple);
    z-index: 10 !important;
}
.floating-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.fc-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 8px 14px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.fc-1 { top: 10px; right: 30px; z-index: 3; animation: float1 8s ease-in-out infinite; }
.fc-2 { top: 110px; right: 110px; z-index: 2; animation: float2 7s ease-in-out infinite; }
.fc-3 { top: 200px; right: 10px; z-index: 1; animation: float3 9s ease-in-out infinite; }

@keyframes float1 { 0%, 100% { transform: translateY(0) rotate(-3deg); } 50% { transform: translateY(-15px) rotate(-1deg); } }
@keyframes float2 { 0%, 100% { transform: translateY(0) rotate(2deg); } 50% { transform: translateY(-20px) rotate(4deg); } }
@keyframes float3 { 0%, 100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-12px) rotate(1deg); } }

.hero-trophy-icon {
    position: absolute;
    top: 80px;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), #f0c27f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #1a1a2e;
    z-index: 5;
    animation: trophySpin 10s linear infinite;
    box-shadow: 0 0 30px rgba(200, 155, 60, 0.2);
}

@keyframes trophySpin {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(5deg) scale(1.05); }
    75% { transform: rotate(-5deg) scale(1.05); }
}

.hero-scroll-indicator {
    position: relative;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 10;
}
.scroll-mouse {
    width: 22px;
    height: 36px;
    border: 2px solid rgba(167, 139, 250, 0.3);
    border-radius: 12px;
    position: relative;
}
.scroll-mouse::after {
    content: '';
    width: 3px;
    height: 8px;
    background: var(--purple-light);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollDown 2s infinite;
}
@keyframes scrollDown {
    0%, 100% { opacity: 1; top: 6px; }
    50% { opacity: 0.3; top: 18px; }
}
.hero-scroll-indicator span {
    font-size: 0.6rem;
    letter-spacing: 3px;
    color: var(--text-muted);
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--purple-light);
    text-transform: uppercase;
}
.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -1px;
}
.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 500px;
    margin: 10px auto 0;
}

.games-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0a0a14 50%, var(--bg-dark) 100%);
}

.games-carousel {
    position: relative;
    overflow: hidden;
}
.games-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.games-track::-webkit-scrollbar { display: none; }

.game-poster-card {
    flex-shrink: 0;
    width: 220px;
}
.game-poster-img {
    position: relative;
    height: 300px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.4s;
    cursor: pointer;
}
.game-poster-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}
.game-poster-card:hover .game-poster-img img { transform: scale(1.1); }
.game-poster-card:hover .game-poster-img {
    border-color: var(--accent);
    box-shadow: 0 0 30px color-mix(in srgb, var(--accent) 30%, transparent);
}

.game-poster-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 20px 16px 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.95));
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s;
}
.game-poster-card:hover .game-poster-overlay {
    opacity: 1;
    transform: translateY(0);
}
.game-poster-overlay h4 {
    font-size: 1rem;
    font-weight: 800;
    margin: 0;
    color: #fff;
}
.game-genre {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--purple-light);
}
.game-players {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.game-poster-bottom {
    padding: 10px 4px;
    display: flex;
    flex-direction: column;
}
.game-poster-name {
    font-weight: 700;
    font-size: 0.85rem;
    color: #fff;
}
.game-poster-type {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.scroll-btn { width: 40px; height: 40px; padding: 0; margin: 0 4px; }

.features-section {
    position: relative;
}
.feature-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
}
.feature-box:hover {
    border-color: var(--purple);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: color-mix(in srgb, var(--clr) 10%, transparent);
    border: 1px solid color-mix(in srgb, var(--clr) 30%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--clr);
    margin: 0 auto 16px;
}
.feature-box h5 {
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.feature-box p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.6;
}

.tournaments-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #08080f 100%);
}

.tournament-card-v2 {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s;
}
.tournament-card-v2:hover {
    border-color: var(--purple);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(124, 58, 237, 0.15);
}
.tc-banner {
    height: 120px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, rgba(17, 17, 24, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.tc-game-icon { font-size: 2.5rem; color: var(--purple-light); opacity: 0.3; }
.tc-status {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.tc-body { padding: 20px; }
.tc-game-badge {
    display: inline-block;
    background: rgba(124, 58, 237, 0.15);
    color: var(--purple-light);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
}
.tc-name {
    color: #fff;
    font-weight: 800;
    margin: 10px 0;
    font-size: 1.1rem;
}
.tc-meta {
    display: flex;
    gap: 16px;
    color: var(--text-muted);
    font-size: 0.78rem;
    margin-bottom: 16px;
}
.tc-progress {
    height: 4px;
    background: var(--border-color);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 10px;
}
.tc-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--purple), var(--neon-purple));
    border-radius: 2px;
    transition: width 1s ease;
}
.tc-slots {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.78rem;
}
.tc-prize {
    color: var(--gold);
    font-weight: 700;
}

.top-player-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
    overflow: hidden;
}
.top-player-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--rank-color);
}
.top-player-card:hover {
    border-color: var(--rank-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}
.tp-rank {
    display: inline-block;
    background: color-mix(in srgb, var(--rank-color) 15%, transparent);
    color: var(--rank-color);
    font-weight: 900;
    font-size: 0.75rem;
    letter-spacing: 2px;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}
.tp-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--rank-color);
    display: block;
    margin: 0 auto 12px;
}
.tp-name { color: #fff; font-weight: 800; font-size: 1rem; margin-bottom: 2px; }
.tp-username { color: var(--text-muted); font-size: 0.8rem; }
.tp-stats {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}
.tp-stat-val { font-weight: 800; font-size: 1.2rem; }
.tp-stat-lbl { font-size: 0.6rem; letter-spacing: 1px; color: var(--text-muted); }

.cta-section { padding: 60px 0; }
.cta-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
}
.cta-glow {
    position: absolute;
    top: -50%; right: -20%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
    pointer-events: none;
}
.cta-box h2 {
    font-size: 2rem;
    letter-spacing: -1px;
}

.leaderboard-section {
    background: linear-gradient(180deg, #08080f 0%, var(--bg-dark) 100%);
}

.card-dark {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.card-dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hero-section {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(15, 15, 19, 0.95) 70%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, var(--purple-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}
.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--purple-light);
}
.stat-card .stat-label {
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.tournament-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}
.tournament-card:hover {
    border-color: var(--purple);
    transform: translateY(-3px);
}
.tournament-card .card-banner {
    height: 160px;
    background: linear-gradient(135deg, var(--purple-dark), #1a1a2e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}
.tournament-card .card-body { padding: 20px; }
.tournament-card .game-badge,
.game-badge {
    background: rgba(124, 58, 237, 0.2);
    color: var(--purple-light);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}
.status-upcoming { background: rgba(59, 130, 246, 0.2); color: #60a5fa; }
.status-active { background: rgba(34, 197, 94, 0.2); color: #4ade80; }
.status-completed { background: rgba(107, 114, 128, 0.2); color: #9ca3af; }

.bracket-container {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    padding: 20px 0;
}
.bracket-round {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    min-width: 220px;
}
.bracket-round-title {
    text-align: center;
    font-weight: 700;
    color: var(--purple-light);
    margin-bottom: 10px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.bracket-match {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    min-width: 200px;
}
.bracket-match.active { border-color: var(--purple); }
.bracket-player {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--border-color);
}
.bracket-player:last-child { border-bottom: none; }
.bracket-player.winner { background: rgba(34, 197, 94, 0.1); color: #4ade80; }
.bracket-player.winner .bracket-avatar { border-color: #4ade80; box-shadow: 0 0 8px rgba(34, 197, 94, 0.4); }
.bracket-player.loser { opacity: 0.5; }
.bracket-player .score {
    font-weight: 700;
    min-width: 24px;
    text-align: center;
}
.bracket-player-info {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    overflow: hidden;
}
.bracket-player-info span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.bracket-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-color);
    flex-shrink: 0;
    background: var(--bg-dark);
}
.bracket-avatar-placeholder {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--border-color);
    flex-shrink: 0;
}

.player-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s;
}
.player-card:hover {
    border-color: var(--purple);
    transform: translateY(-2px);
}
.player-card .avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--purple);
    margin-bottom: 12px;
}

.chat-container {
    height: 500px;
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}
.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}
.chat-message {
    margin-bottom: 12px;
    display: flex;
    gap: 10px;
}
.chat-message .avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.chat-message .content {
    background: rgba(124, 58, 237, 0.1);
    padding: 8px 14px;
    border-radius: 12px;
    border-top-left-radius: 4px;
    max-width: 80%;
}
.chat-message .username {
    font-weight: 600;
    color: var(--purple-light);
    font-size: 0.85rem;
}
.chat-message .time {
    font-size: 0.7rem;
    color: var(--text-muted);
}
.chat-input {
    display: flex;
    padding: 12px;
    border-top: 1px solid var(--border-color);
    gap: 8px;
}
.chat-input input {
    flex: 1;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
}
.chat-input input:focus {
    outline: none;
    border-color: var(--purple);
}

.dm-list { list-style: none; padding: 0; }
.dm-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    transition: background 0.2s;
}
.dm-item:hover { background: var(--bg-card-hover); }
.dm-item.unread { border-left: 3px solid var(--purple); }

.profile-header {
    background: linear-gradient(135deg, var(--purple-dark), var(--bg-dark));
    padding: 40px 0;
    border-radius: 12px;
    margin-bottom: 24px;
}
.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--purple);
}

.form-control-dark {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    color: #fff;
    border-radius: 8px;
}
.form-control-dark:focus {
    background: var(--bg-dark);
    border-color: var(--purple);
    color: #fff;
    box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.25);
}

.form-select-dark {
    background-color: var(--bg-dark);
    border: 1px solid var(--border-color);
    color: #fff;
}

.nav-tabs .nav-link {
    color: var(--text-muted);
    border: none;
    padding: 12px 24px;
}
.nav-tabs .nav-link.active {
    color: var(--purple-light);
    background: transparent;
    border-bottom: 2px solid var(--purple);
}
.nav-tabs { border-bottom: 1px solid var(--border-color); }

.table-dark-custom {
    --bs-table-bg: var(--bg-card);
    --bs-table-border-color: var(--border-color);
}

.event-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}
.event-card:hover {
    border-color: var(--purple);
    transform: translateY(-2px);
}
.event-banner {
    height: 200px;
    background: linear-gradient(135deg, var(--purple), #1e1e3f);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--purple-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--purple); }

.nav-glow-line {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--purple) 20%, var(--neon-purple) 50%, var(--purple) 80%, transparent 100%);
    position: relative;
    z-index: 1100;
}
.site-navbar {
    backdrop-filter: blur(20px);
    background: rgba(6, 6, 10, 0.92) !important;
    border-bottom: 1px solid rgba(124, 58, 237, 0.15);
    padding: 8px 0;
    position: sticky;
    top: 0;
    z-index: 1050;
    transition: all 0.3s;
}
.nav-logo { filter: drop-shadow(0 0 8px rgba(177, 110, 255, 0.4)); transition: filter 0.3s; }
.site-navbar:hover .nav-logo { filter: drop-shadow(0 0 12px rgba(177, 110, 255, 0.7)); }
.nav-brand-text {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    background: linear-gradient(135deg, #fff 30%, var(--purple-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}
.nav-center-links .nav-link {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #a0a0c0 !important;
    padding: 8px 16px !important;
    position: relative;
    transition: all 0.3s;
}
.nav-center-links .nav-link:hover,
.nav-center-links .nav-link.active {
    color: #fff !important;
}
.nav-center-links .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--purple), var(--neon-purple));
    transition: width 0.3s;
    border-radius: 2px;
}
.nav-center-links .nav-link:hover::after,
.nav-center-links .nav-link.active::after { width: 60%; }
.nav-icon { font-size: 0.85rem; margin-right: 4px; opacity: 0.7; }
.nav-center-links .nav-link:hover .nav-icon,
.nav-center-links .nav-link.active .nav-icon { opacity: 1; }

.nav-icon-btn {
    font-size: 1.1rem;
    color: #a0a0c0 !important;
    padding: 6px 10px !important;
    transition: all 0.3s;
}
.nav-icon-btn:hover { color: var(--purple-light) !important; transform: scale(1.1); }

.nav-user-btn {
    display: flex !important;
    align-items: center;
    gap: 8px;
    padding: 4px 12px 4px 4px !important;
    border-radius: 50px;
    border: 1px solid rgba(124, 58, 237, 0.2);
    background: rgba(124, 58, 237, 0.05);
    transition: all 0.3s;
}
.nav-user-btn:hover { border-color: rgba(124, 58, 237, 0.5); background: rgba(124, 58, 237, 0.1); }
.nav-avatar-ring {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, var(--purple), var(--neon-purple));
}
.nav-avatar { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.nav-username {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: #e0e0f0 !important;
}

.nav-login-link {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    color: #b0b0d0 !important;
    transition: color 0.3s;
}
.nav-login-link:hover { color: #fff !important; }
.nav-register-btn {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--purple), #9333ea);
    color: #fff !important;
    border: none;
    padding: 6px 20px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}
.nav-register-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 0.5s;
}
.nav-register-btn:hover::before { left: 100%; }
.nav-register-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.6);
    color: #fff !important;
}

.nav-dropdown {
    background: rgba(15, 15, 25, 0.98) !important;
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 12px;
    padding: 8px;
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    min-width: 220px;
}
.nav-dropdown .dropdown-item {
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.9rem;
    transition: all 0.2s;
}
.nav-dropdown .dropdown-item:hover { background: rgba(124, 58, 237, 0.15); }
.nav-dropdown .dropdown-header { border-bottom: 1px solid rgba(255,255,255,0.06); padding-bottom: 10px; margin-bottom: 4px; }

.alert-custom {
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.site-footer {
    background: linear-gradient(180deg, #08080e 0%, #050508 100%);
    position: relative;
    overflow: hidden;
}
.footer-glow-top {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--purple), var(--neon-purple), var(--purple), transparent);
}
.footer-stats-bar {
    padding: 30px 0;
    background: rgba(124, 58, 237, 0.03);
    border-bottom: 1px solid rgba(124, 58, 237, 0.08);
}
.footer-stat-item { padding: 10px; }
.footer-stat-number {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    background: linear-gradient(135deg, #fff 30%, var(--purple-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.footer-stat-label {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-top: 4px;
}
.footer-main { padding: 50px 0 30px; }
.footer-brand-name {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #fff 30%, var(--purple-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}
.footer-desc {
    color: #7a7a95;
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 20px;
}
.footer-social-row { display: flex; gap: 10px; }
.footer-social-btn {
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 10px;
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.15);
    color: #a0a0c0;
    font-size: 1.1rem;
    transition: all 0.3s;
    text-decoration: none;
}
.footer-social-btn:hover {
    background: linear-gradient(135deg, var(--purple), #9333ea);
    border-color: var(--purple);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}
.footer-col-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--purple-light);
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}
.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 30px; height: 2px;
    background: linear-gradient(90deg, var(--purple), transparent);
    border-radius: 2px;
}
.footer-nav-list {
    list-style: none;
    padding: 0; margin: 0;
}
.footer-nav-list li { margin-bottom: 8px; }
.footer-nav-list a {
    color: #7a7a95;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.footer-nav-list a i { font-size: 0.65rem; opacity: 0; transition: all 0.3s; transform: translateX(-5px); }
.footer-nav-list a:hover { color: var(--purple-light); padding-left: 4px; }
.footer-nav-list a:hover i { opacity: 1; transform: translateX(0); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 20px 0;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-copy {
    color: #555570;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.footer-separator { color: rgba(124, 58, 237, 0.3); }
.footer-badges { display: flex; gap: 8px; }
.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #8080a0;
    background: rgba(124, 58, 237, 0.06);
    border: 1px solid rgba(124, 58, 237, 0.1);
}

.stream-container { margin-bottom: 16px; }
.stream-player-wrapper {
    background: #0a0a14;
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: 12px;
    overflow: hidden;
}
.stream-player-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    background: rgba(124, 58, 237, 0.06);
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}
.stream-live-dot {
    display: inline-block;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #ef4444;
    animation: livePulse 1.5s ease-in-out infinite;
}
@keyframes livePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.6); }
    50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
}
.stream-player {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}
.stream-iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}
.stream-chat-wrapper {
    background: #0a0a14;
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.stream-chat-header {
    padding: 10px 16px;
    background: rgba(124, 58, 237, 0.06);
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--purple-light);
}
.stream-chat-iframe {
    flex: 1;
    width: 100%;
    min-height: 500px;
}

.stream-player-wrapper.theater-mode {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 9999;
    border-radius: 0;
    border: none;
    background: #000;
}
.stream-player-wrapper.theater-mode .stream-player {
    padding-bottom: 0;
    height: calc(100vh - 48px);
}
.stream-player-wrapper.theater-mode .stream-player-header {
    background: rgba(0,0,0,0.9);
}

.live-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}
.live-card:hover {
    border-color: rgba(124, 58, 237, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.live-card-player {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}
.live-card-iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}
.live-card-info {
    padding: 16px;
}
.live-empty-state {
    padding: 60px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
}
.stream-badge-overlay {
    position: absolute;
    top: 10px; right: 10px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border-radius: 4px;
    background: rgba(239, 68, 68, 0.9);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 2;
}
.card-banner { position: relative; }

.about-page { overflow: hidden; }
.about-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0 50px;
    overflow: hidden;
}
.about-hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.08) 0%, var(--bg-dark) 70%);
}
.about-grid-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        linear-gradient(rgba(124, 58, 237, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 58, 237, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    animation: gridShift 20s linear infinite;
}
@keyframes gridShift {
    0% { transform: translateY(0); }
    100% { transform: translateY(50px); }
}
.about-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}
.about-glow-1 {
    top: 10%; left: 20%;
    width: 400px; height: 400px;
    background: rgba(124, 58, 237, 0.12);
    animation: aboutGlowFloat 8s ease-in-out infinite;
}
.about-glow-2 {
    bottom: 10%; right: 15%;
    width: 350px; height: 350px;
    background: rgba(147, 51, 234, 0.08);
    animation: aboutGlowFloat 10s ease-in-out infinite reverse;
}
@keyframes aboutGlowFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -20px) scale(1.1); }
}
.about-particles {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
}
.about-badge-row { margin-bottom: 24px; }
.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: var(--purple-light);
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.25);
    animation: badgePulse 3s ease-in-out infinite;
}
@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); }
    50% { box-shadow: 0 0 20px 4px rgba(124, 58, 237, 0.15); }
}
.about-main-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 3rem;
    line-height: 1.15;
    letter-spacing: -1px;
    color: #fff;
    margin-bottom: 16px;
}
.about-title-gradient {
    font-size: 3.8rem;
    background: linear-gradient(135deg, var(--purple-light), var(--neon-purple), #d946ef, var(--purple-light));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 5s ease infinite;
    filter: drop-shadow(0 0 30px rgba(177, 110, 255, 0.3));
}
@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.about-hero-subtitle {
    font-size: 1rem;
    color: #8888aa;
    max-width: 560px;
    margin: 0 auto 30px;
    line-height: 1.7;
}
.about-hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.about-hero-stat { text-align: center; }
.about-hero-stat-icon {
    font-size: 1.5rem;
    color: var(--purple-light);
    margin-bottom: 8px;
    filter: drop-shadow(0 0 10px rgba(177, 110, 255, 0.5));
}
.about-hero-stat-number {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    color: #fff;
}
.about-hero-stat-label {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-top: 4px;
}
.about-hero-stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, rgba(124, 58, 237, 0.3), transparent);
}
.about-scroll-hint {
    text-align: center;
    margin-top: 30px;
}
.about-scroll-line {
    width: 1px;
    height: 30px;
    background: linear-gradient(180deg, var(--purple), transparent);
    margin: 0 auto 6px;
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; height: 25px; }
    50% { opacity: 1; height: 35px; }
}
.about-scroll-hint span {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: var(--text-muted);
}

.about-mission-section,
.about-timeline-section,
.about-values-section,
.about-games-section,
.about-tech-section {
    padding: 100px 0;
    position: relative;
}
.about-mission-section { background: rgba(8, 8, 14, 0.5); }
.about-values-section { background: rgba(8, 8, 14, 0.5); }
.about-tech-section { background: rgba(8, 8, 14, 0.3); }

.about-section-tag {
    display: inline-block;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 4px;
    color: var(--purple-light);
    margin-bottom: 12px;
    padding: 4px 14px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 4px;
}
.about-section-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: #fff;
    letter-spacing: -1px;
    margin-bottom: 20px;
}
.about-text {
    color: #8888aa;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.mission-hex-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 350px;
    margin: 0 auto;
}
.mission-hex {
    width: 100px; height: 100px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    color: var(--purple-light);
    background: rgba(124, 58, 237, 0.06);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: 16px;
    transition: all 0.4s;
    animation: hexFloat 4s ease-in-out infinite;
    animation-delay: var(--delay);
}
.mission-hex:hover {
    background: rgba(124, 58, 237, 0.15);
    border-color: var(--purple);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}
@keyframes hexFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.about-mission-features { margin-top: 30px; }
.mission-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    border-radius: 12px;
    background: rgba(124, 58, 237, 0.04);
    border: 1px solid rgba(124, 58, 237, 0.08);
    margin-bottom: 12px;
    transition: all 0.3s;
}
.mission-feature:hover {
    background: rgba(124, 58, 237, 0.08);
    border-color: rgba(124, 58, 237, 0.2);
    transform: translateX(5px);
}
.mission-feature-icon {
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--purple), #9333ea);
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.mission-feature h6 {
    color: #e0e0f0;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 2px;
}
.mission-feature p {
    color: #7a7a95;
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.5;
}

.about-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent, var(--purple), var(--purple-dark), transparent);
    transform: translateX(-50%);
}
.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    margin-bottom: 30px;
}
.timeline-left { margin-right: auto; text-align: right; padding-right: 60px; }
.timeline-right { margin-left: auto; text-align: left; padding-left: 60px; }
.timeline-dot {
    position: absolute;
    top: 28px;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), #9333ea);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 1rem;
    z-index: 2;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.4);
}
.timeline-left .timeline-dot { right: -22px; }
.timeline-right .timeline-dot { left: -22px; }
.timeline-card {
    background: rgba(15, 15, 25, 0.8);
    border: 1px solid rgba(124, 58, 237, 0.12);
    border-radius: 14px;
    padding: 24px;
    transition: all 0.3s;
}
.timeline-card:hover {
    border-color: rgba(124, 58, 237, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.timeline-year {
    display: inline-block;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--purple-light);
    background: rgba(124, 58, 237, 0.1);
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 10px;
}
.timeline-card h5 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 8px;
}
.timeline-card p {
    color: #7a7a95;
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

.value-card {
    position: relative;
    background: rgba(15, 15, 25, 0.6);
    border: 1px solid rgba(124, 58, 237, 0.1);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s;
    overflow: hidden;
    height: 100%;
}
.value-card-glow {
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at center, rgba(124, 58, 237, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}
.value-card:hover .value-card-glow { opacity: 1; }
.value-card:hover {
    border-color: rgba(124, 58, 237, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.value-icon {
    width: 60px; height: 60px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(147, 51, 234, 0.08));
    border: 1px solid rgba(124, 58, 237, 0.2);
    font-size: 1.5rem;
    color: var(--purple-light);
    transition: all 0.3s;
}
.value-card:hover .value-icon {
    background: linear-gradient(135deg, var(--purple), #9333ea);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
}
.value-card h5 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 12px;
}
.value-card p {
    color: #7a7a95;
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

.about-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}
.about-game-tile {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    transition: all 0.4s;
    animation: tileAppear 0.6s ease-out both;
    animation-delay: var(--delay);
}
@keyframes tileAppear {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.about-game-tile img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.about-game-tile:hover img { transform: scale(1.1); }
.about-game-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 20px 14px 14px;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    display: flex;
    align-items: flex-end;
}
.about-game-name {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    letter-spacing: 1px;
}
.about-game-tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px color-mix(in srgb, var(--accent) 30%, transparent);
}
.about-game-tile::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--accent);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s;
}
.about-game-tile:hover::before { opacity: 1; }

.tech-stack-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 30px;
}
.tech-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 10px;
    background: rgba(124, 58, 237, 0.05);
    border: 1px solid rgba(124, 58, 237, 0.1);
    transition: all 0.3s;
}
.tech-item:hover {
    background: rgba(124, 58, 237, 0.1);
    border-color: rgba(124, 58, 237, 0.25);
    transform: translateY(-2px);
}
.tech-icon { font-size: 1.3rem; }
.tech-item span {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: #b0b0d0;
}

.tech-visual {
    position: relative;
    width: 360px; height: 360px;
    margin: 0 auto;
}
.tech-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(124, 58, 237, 0.12);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
.tech-ring-1 {
    width: 150px; height: 150px;
    animation: ringPulse 4s ease-in-out infinite;
}
.tech-ring-2 {
    width: 240px; height: 240px;
    border-style: dashed;
    animation: ringSpin 30s linear infinite;
}
.tech-ring-3 {
    width: 340px; height: 340px;
    animation: ringSpin 45s linear infinite reverse;
}
@keyframes ringPulse {
    0%, 100% { border-color: rgba(124, 58, 237, 0.1); }
    50% { border-color: rgba(124, 58, 237, 0.3); }
}
@keyframes ringSpin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}
.tech-center-icon {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 70px; height: 70px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), #9333ea);
    font-size: 1.8rem;
    color: #fff;
    box-shadow: 0 0 40px rgba(124, 58, 237, 0.5);
    z-index: 2;
}
.tech-orbit-dot {
    position: absolute;
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(15, 15, 25, 0.9);
    border: 1px solid rgba(124, 58, 237, 0.3);
    color: var(--purple-light);
    font-size: 0.9rem;
    top: 50%; left: 50%;
    animation: orbitMove 12s linear infinite;
    animation-delay: var(--orbit-delay);
    --orbit-radius: var(--orbit-size);
}
@keyframes orbitMove {
    from {
        transform: translate(-50%, -50%) rotate(0deg) translateX(var(--orbit-radius)) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg) translateX(var(--orbit-radius)) rotate(-360deg);
    }
}

.about-cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}
.about-cta-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.06) 0%, var(--bg-dark) 50%, rgba(147, 51, 234, 0.04) 100%);
}
.about-cta-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 300px;
    background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
    filter: blur(60px);
}
.about-cta-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 16px;
}
.about-cta-text {
    color: #8888aa;
    font-size: 1.1rem;
    margin-bottom: 35px;
}

@media (max-width: 992px) {
    .hero-title { font-size: 2.4rem; }
    .hero-landing { padding: 40px 0 30px; }
    .hero-stats-row { flex-wrap: wrap; gap: 16px; }
    .hero-stat-divider { display: none; }
    .game-poster-card { width: 180px; }
    .game-poster-img { height: 250px; }
    .about-main-title { font-size: 2.4rem; }
    .about-title-gradient { font-size: 3rem; }
    .about-section-title { font-size: 2rem; }
    .timeline-item { width: 100%; text-align: left; padding: 10px 10px 10px 60px; }
    .timeline-line { left: 20px; }
    .timeline-left .timeline-dot,
    .timeline-right .timeline-dot { left: -2px; right: auto; }
    .timeline-left { padding-right: 20px; }
    .tech-visual { width: 280px; height: 280px; }
    .tech-ring-3 { width: 260px; height: 260px; }
    .tech-stack-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-stat-number { font-size: 1.4rem; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 1.8rem; letter-spacing: -1px; }
    .hero-landing { padding: 30px 0 20px; }
    .hero-subtitle { font-size: 0.95rem; }
    .section-title { font-size: 1.8rem; }
    .hero-section h1 { font-size: 2rem; }
    .hero-section { padding: 60px 0; }
    .bracket-container { gap: 20px; }
    .hero-scroll-indicator { display: none; }
    .game-poster-card { width: 160px; }
    .game-poster-img { height: 220px; }
    .cta-box { padding: 30px 20px; }
    .about-main-title { font-size: 1.8rem; }
    .about-title-gradient { font-size: 2.2rem; }
    .about-hero { padding: 40px 0 30px; }
    .about-hero-stats { gap: 16px; }
    .about-hero-stat-divider { display: none; }
    .about-hero-stat-number { font-size: 1.5rem; }
    .about-section-title { font-size: 1.6rem; }
    .about-games-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .about-cta-title { font-size: 2rem; }
    .mission-hex-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .mission-hex { width: 80px; height: 80px; font-size: 1.5rem; }
    .nav-center-links .nav-link { padding: 8px 10px !important; font-size: 0.85rem; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .footer-stat-number { font-size: 1.2rem; }
    .tech-visual { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
