/* Unique Cyberpunk Pro Gamer Website - Glitch & Holographic Design */

:root {
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --orange: #ff6b35;
    --orange-glow: #ff8c5a;
    --cyan: #00ffff;
    --cyan-glow: #33ffff;
    --white: #ffffff;
    --dark-text: #666666;
    --grid-color: rgba(255, 107, 53, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--darker-bg);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
    opacity: 1 !important;
    visibility: visible !important;
    /* Performance optimizations */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Pixel Grid Background */
.pixel-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 20px, var(--grid-color) 20px, var(--grid-color) 21px),
        repeating-linear-gradient(90deg, transparent, transparent 20px, var(--grid-color) 20px, var(--grid-color) 21px);
    pointer-events: none;
    z-index: 1;
    opacity: 0.3;
    animation: grid-pulse 4s ease-in-out infinite, grid-move 30s linear infinite;
    will-change: opacity, background-position;
}

@keyframes grid-pulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes grid-move {
    0% {
        background-position: 0 0, 0 0;
    }
    100% {
        background-position: 20px 20px, 20px 20px;
    }
}

/* Scanlines Effect */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.15),
        rgba(0, 0, 0, 0.15) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
    z-index: 100;
    animation: scanline 8s linear infinite;
}

@keyframes scanline {
    0% { transform: translateY(0); }
    100% { transform: translateY(4px); }
}

/* Glitch Overlay */
.glitch-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 0, 0, 0.03) 2px, rgba(255, 0, 0, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0, 255, 255, 0.03) 2px, rgba(0, 255, 255, 0.03) 4px);
    pointer-events: none;
    z-index: 2;
    opacity: 0.5;
    animation: glitch-flicker 0.15s infinite;
}

@keyframes glitch-flicker {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.3; }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 107, 53, 0.3);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.2);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-left {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--orange);
}

.nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-logo a {
    display: block;
    transition: all 0.3s ease;
}

.logo-img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.6));
    transition: all 0.3s ease;
}

.nav-logo a:hover .logo-img {
    filter: drop-shadow(0 0 25px rgba(255, 107, 53, 1)) brightness(1.2);
    transform: scale(1.05);
}

.logo-pixel {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.2rem;
    letter-spacing: 3px;
}

.nav-right {
    display: flex;
    gap: 1.5rem;
}

.social-icon {
    color: var(--white);
    transition: all 0.3s ease;
    opacity: 0.8;
}

.social-icon:hover {
    color: var(--orange);
    opacity: 1;
    transform: translateY(-2px);
    filter: drop-shadow(0 0 10px var(--orange));
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--orange);
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px var(--orange);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(20px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

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

.mobile-menu-content {
    padding: 2rem;
    max-width: 500px;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 2px solid rgba(255, 107, 53, 0.3);
}

.mobile-logo-img {
    height: 35px;
    width: auto;
    filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.6));
}

.mobile-menu-close {
    background: transparent;
    border: 2px solid var(--orange);
    color: var(--orange);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
}

.mobile-menu-close:hover {
    background: var(--orange);
    color: var(--darker-bg);
    box-shadow: 0 0 25px var(--orange);
    transform: rotate(90deg);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 1.5rem;
    border: 2px solid rgba(255, 107, 53, 0.3);
    background: rgba(255, 107, 53, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--orange);
    transition: left 0.3s ease;
    z-index: -1;
}

.mobile-nav-link:hover {
    color: var(--darker-bg);
    border-color: var(--orange);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
    transform: translateX(10px);
}

.mobile-nav-link:hover::before {
    left: 0;
}

.mobile-social {
    display: flex;
    gap: 2rem;
    justify-content: center;
    padding: 2rem 0;
    border-top: 2px solid rgba(255, 107, 53, 0.3);
}

.mobile-social-link {
    color: var(--orange);
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px var(--orange));
}

.mobile-social-link:hover {
    color: var(--cyan);
    filter: drop-shadow(0 0 20px var(--cyan));
    transform: scale(1.2) rotate(5deg);
}

/* Glitch Text Effect */
.glitch-text {
    position: relative;
    display: inline-block;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-text::before {
    left: 2px;
    text-shadow: -2px 0 var(--cyan);
    clip: rect(0, 900px, 0, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch-text::after {
    left: -2px;
    text-shadow: 2px 0 var(--orange);
    clip: rect(0, 900px, 0, 0);
    animation: glitch-anim 1s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(42px, 9999px, 44px, 0); }
    5% { clip: rect(12px, 9999px, 59px, 0); }
    10% { clip: rect(48px, 9999px, 29px, 0); }
    15% { clip: rect(42px, 9999px, 73px, 0); }
    20% { clip: rect(63px, 9999px, 27px, 0); }
    25% { clip: rect(34px, 9999px, 55px, 0); }
    30% { clip: rect(86px, 9999px, 73px, 0); }
    35% { clip: rect(20px, 9999px, 20px, 0); }
    40% { clip: rect(26px, 9999px, 60px, 0); }
    45% { clip: rect(25px, 9999px, 66px, 0); }
    50% { clip: rect(57px, 9999px, 98px, 0); }
    55% { clip: rect(5px, 9999px, 46px, 0); }
    60% { clip: rect(82px, 9999px, 31px, 0); }
    65% { clip: rect(54px, 9999px, 27px, 0); }
    70% { clip: rect(28px, 9999px, 99px, 0); }
    75% { clip: rect(45px, 9999px, 69px, 0); }
    80% { clip: rect(23px, 9999px, 85px, 0); }
    85% { clip: rect(54px, 9999px, 84px, 0); }
    90% { clip: rect(38px, 9999px, 20px, 0); }
    95% { clip: rect(10px, 9999px, 2px, 0); }
    100% { clip: rect(35px, 9999px, 53px, 0); }
}

.glitch-text-large {
    font-size: clamp(4rem, 12vw, 9rem);
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 12px;
    color: var(--white);
    text-shadow: 
        0 0 10px var(--orange),
        0 0 20px var(--orange),
        0 0 30px var(--orange),
        0 0 40px rgba(255, 107, 53, 0.5);
    animation: text-pulse 2s ease-in-out infinite;
    margin-bottom: 0.5rem;
}

@keyframes text-pulse {
    0%, 100% {
        text-shadow: 
            0 0 10px var(--orange),
            0 0 20px var(--orange),
            0 0 30px var(--orange);
    }
    50% {
        text-shadow: 
            0 0 20px var(--orange),
            0 0 30px var(--orange),
            0 0 40px var(--orange),
            0 0 50px var(--orange);
    }
}

/* Hero Section */
.hero-section {
    min-height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 4rem 4rem;
    overflow: hidden;
    z-index: 10;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        url('images/pixels background.svg') center/cover no-repeat,
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 80% 50%, rgba(0, 255, 255, 0.1) 0%, transparent 60%),
        linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    z-index: -1;
    opacity: 0.4;
    filter: brightness(0.3) contrast(1.2);
    animation: bg-pattern-move 20s linear infinite, bg-glow-pulse 6s ease-in-out infinite;
}

@keyframes bg-pattern-move {
    0% {
        background-position: 0% 0%, center, center, center;
        transform: scale(1);
    }
    25% {
        background-position: 5% 5%, center, center, center;
        transform: scale(1.01);
    }
    50% {
        background-position: 10% 2%, center, center, center;
        transform: scale(1.02);
    }
    75% {
        background-position: 5% -2%, center, center, center;
        transform: scale(1.01);
    }
    100% {
        background-position: 0% 0%, center, center, center;
        transform: scale(1);
    }
}

@keyframes bg-glow-pulse {
    0%, 100% {
        opacity: 0.4;
        filter: brightness(0.3) contrast(1.2);
    }
    50% {
        opacity: 0.6;
        filter: brightness(0.4) contrast(1.3);
    }
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(
            135deg,
            rgba(255, 107, 53, 0.08) 0%,
            transparent 50%,
            rgba(0, 255, 255, 0.08) 100%
        ),
        url('images/pixels background.svg') center/cover no-repeat;
    z-index: -1;
    opacity: 0.3;
    mix-blend-mode: overlay;
    animation: overlay-pattern-move 25s linear infinite reverse, overlay-rotate 15s ease-in-out infinite;
}

/* Glitch Overlay for Hero Background */
.hero-glitch-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    animation: glitch-bg 8s infinite;
}

.hero-glitch-overlay::before,
.hero-glitch-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/pixels background.svg') center/cover no-repeat;
}

.hero-glitch-overlay::before {
    clip-path: inset(0 0 0 0);
    filter: hue-rotate(90deg) contrast(1.5);
    animation: glitch-bg-slice-1 8s infinite;
}

.hero-glitch-overlay::after {
    clip-path: inset(0 0 0 0);
    filter: hue-rotate(-90deg) contrast(1.5);
    animation: glitch-bg-slice-2 8s infinite;
}

@keyframes glitch-bg {
    0%, 90%, 100% {
        opacity: 0;
        transform: translate(0);
    }
    91% {
        opacity: 0.3;
        transform: translate(-2px, 2px);
    }
    92% {
        opacity: 0.5;
        transform: translate(2px, -2px);
    }
    93% {
        opacity: 0.3;
        transform: translate(-2px, 2px);
    }
    94% {
        opacity: 0;
        transform: translate(0);
    }
    95% {
        opacity: 0.4;
        transform: translate(3px, -3px);
    }
    96% {
        opacity: 0;
        transform: translate(0);
    }
}

@keyframes glitch-bg-slice-1 {
    0%, 90%, 100% {
        clip-path: inset(0 0 0 0);
        transform: translate(0);
    }
    91% {
        clip-path: inset(20% 0 60% 0);
        transform: translate(-3px, 3px);
    }
    92% {
        clip-path: inset(40% 0 30% 0);
        transform: translate(3px, -3px);
    }
    93% {
        clip-path: inset(60% 0 10% 0);
        transform: translate(-3px, 3px);
    }
    94%, 96% {
        clip-path: inset(0 0 0 0);
        transform: translate(0);
    }
    95% {
        clip-path: inset(10% 0 80% 0);
        transform: translate(5px, -5px);
    }
}

@keyframes glitch-bg-slice-2 {
    0%, 90%, 100% {
        clip-path: inset(0 0 0 0);
        transform: translate(0);
    }
    91% {
        clip-path: inset(60% 0 20% 0);
        transform: translate(3px, -3px);
    }
    92% {
        clip-path: inset(30% 0 40% 0);
        transform: translate(-3px, 3px);
    }
    93% {
        clip-path: inset(10% 0 60% 0);
        transform: translate(3px, -3px);
    }
    94%, 96% {
        clip-path: inset(0 0 0 0);
        transform: translate(0);
    }
    95% {
        clip-path: inset(80% 0 10% 0);
        transform: translate(-5px, 5px);
    }
}

@keyframes overlay-pattern-move {
    0% {
        background-position: 0% 0%, center;
    }
    25% {
        background-position: -5% -5%, center;
    }
    50% {
        background-position: -10% -2%, center;
    }
    75% {
        background-position: -5% 2%, center;
    }
    100% {
        background-position: 0% 0%, center;
    }
}

@keyframes overlay-rotate {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(0.5deg);
    }
}

.gaming-hud-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 107, 53, 0.03) 2px, rgba(255, 107, 53, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0, 255, 255, 0.02) 2px, rgba(0, 255, 255, 0.02) 4px);
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
    animation: hud-overlay-shift 10s linear infinite;
}

@keyframes hud-overlay-shift {
    0% {
        background-position: 0 0, 0 0;
        opacity: 0.4;
    }
    50% {
        background-position: 4px 4px, 4px 4px;
        opacity: 0.5;
    }
    100% {
        background-position: 0 0, 0 0;
        opacity: 0.4;
    }
}

.hero-content {
    max-width: 1600px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 1rem 0;
}


/* Hero Image Styles */
.hero-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    max-height: 500px;
    display: block;
    object-fit: contain;
    object-position: center center;
    filter: 
        drop-shadow(0 0 50px rgba(255, 107, 53, 0.7))
        drop-shadow(0 0 100px rgba(255, 107, 53, 0.4))
        drop-shadow(0 0 150px rgba(0, 255, 255, 0.2))
        contrast(1.15) 
        brightness(1.08)
        saturate(1.1);
    animation: image-glow 4s ease-in-out infinite;
    visibility: visible;
    opacity: 1;
}
    position: relative;
    z-index: 2;
}

@keyframes image-glow {
    0%, 100% {
        filter: 
            drop-shadow(0 0 50px rgba(255, 107, 53, 0.7))
            drop-shadow(0 0 100px rgba(255, 107, 53, 0.4))
            drop-shadow(0 0 150px rgba(0, 255, 255, 0.2))
            contrast(1.15) 
            brightness(1.08)
            saturate(1.1);
    }
    50% {
        filter: 
            drop-shadow(0 0 70px rgba(255, 107, 53, 1))
            drop-shadow(0 0 140px rgba(255, 107, 53, 0.6))
            drop-shadow(0 0 200px rgba(0, 255, 255, 0.4))
            drop-shadow(0 0 250px rgba(255, 107, 53, 0.2))
            contrast(1.2) 
            brightness(1.12)
            saturate(1.15);
    }
}

/* Left Panel: Terminal & Stats HUD */
.hero-hud-panel {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hud-terminal {
    background: rgba(5, 5, 5, 0.95);
    border: 2px solid rgba(255, 107, 53, 0.4);
    box-shadow: 
        0 0 25px rgba(255, 107, 53, 0.3),
        inset 0 0 15px rgba(255, 107, 53, 0.1);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.terminal-header {
    background: rgba(255, 107, 53, 0.1);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(255, 107, 53, 0.3);
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-dot-red {
    background: #ff5f57;
    box-shadow: 0 0 10px #ff5f57;
}

.terminal-dot-yellow {
    background: #ffbd2e;
    box-shadow: 0 0 10px #ffbd2e;
}

.terminal-dot-green {
    background: #28c840;
    box-shadow: 0 0 10px #28c840;
}

.terminal-title {
    margin-left: auto;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.6rem;
    color: var(--orange);
    letter-spacing: 1px;
}

.terminal-body {
    padding: 1.25rem;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    line-height: 1.6;
}

.terminal-line {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.terminal-prompt {
    color: var(--orange);
    font-weight: bold;
}

.terminal-text {
    color: var(--white);
}

.terminal-value {
    color: var(--cyan);
    font-weight: bold;
}

.terminal-status {
    padding: 0.25rem 0.75rem;
    border: 1px solid;
    font-weight: bold;
}

.terminal-live {
    color: var(--cyan);
    border-color: var(--cyan);
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
    animation: status-pulse 2s ease-in-out infinite;
}

@keyframes status-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.terminal-cursor {
    display: inline-block;
    width: 8px;
    height: 16px;
    background: var(--orange);
    animation: cursor-blink 1s infinite;
}

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

.typing-text::after {
    content: attr(data-text);
    animation: typing 3s steps(30) infinite;
}

@keyframes typing {
    0% { content: 'I'; }
    10% { content: 'IN'; }
    20% { content: 'INI'; }
    30% { content: 'INIT'; }
    40% { content: 'INITI'; }
    50% { content: 'INITIA'; }
    60% { content: 'INITIAL'; }
    70% { content: 'INITIALI'; }
    80% { content: 'INITIALIZ'; }
    90% { content: 'INITIALIZI'; }
    100% { content: 'INITIALIZING_GAMING_SESSION...'; }
}

.gaming-stats-hud {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hud-stat-card {
    background: rgba(5, 5, 5, 0.9);
    border: 2px solid rgba(255, 107, 53, 0.3);
    padding: 1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hud-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--orange);
    animation: stat-glow 2s ease-in-out infinite;
}

@keyframes stat-glow {
    0%, 100% { opacity: 1; box-shadow: 0 0 10px var(--orange); }
    50% { opacity: 0.5; box-shadow: 0 0 20px var(--orange); }
}

.hud-stat-card:hover {
    border-color: var(--cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    transform: translateX(5px);
}

/* Locked stat cards - bluer theme */
.hud-stat-card.locked {
    border-color: rgba(0, 150, 255, 0.4);
    opacity: 0.85;
    background: rgba(5, 15, 30, 0.95);
}

.hud-stat-card.locked > *:not(.lock-overlay) {
    filter: blur(3px);
}

.hud-stat-card.locked::before {
    background: rgba(0, 150, 255, 0.6);
    animation: stat-glow-blue 2s ease-in-out infinite;
    filter: blur(3px);
}

@keyframes stat-glow-blue {
    0%, 100% { opacity: 0.6; box-shadow: 0 0 10px rgba(0, 150, 255, 0.5); }
    50% { opacity: 0.3; box-shadow: 0 0 20px rgba(0, 150, 255, 0.7); }
}

.hud-stat-card.locked:hover {
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 0 0 20px rgba(0, 150, 255, 0.4);
    transform: translateX(5px);
}

.hud-stat-card.locked .hud-stat-value {
    color: rgba(100, 180, 255, 0.9);
    text-shadow: 0 0 12px rgba(100, 180, 255, 0.6);
}

.hud-stat-card.locked .hud-stat-value .percent,
.hud-stat-card.locked .hud-stat-value .plus {
    color: rgba(150, 200, 255, 0.8);
}

.hud-stat-card.locked .rank-value {
    color: rgba(150, 200, 255, 0.9);
    text-shadow: 0 0 20px rgba(150, 200, 255, 0.6);
}

.hud-stat-card.locked .hud-stat-bar {
    border-color: rgba(0, 150, 255, 0.3);
    background: rgba(0, 50, 100, 0.3);
}

.hud-stat-card.locked .hud-stat-fill {
    background: linear-gradient(90deg, rgba(0, 150, 255, 0.7), rgba(100, 180, 255, 0.7));
    box-shadow: 0 0 10px rgba(0, 150, 255, 0.5);
}

.hud-stat-card.locked .hud-stat-label {
    color: rgba(150, 200, 255, 0.7);
}

/* Lock overlay styling - centered */
.hud-stat-card.locked .lock-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    z-index: 10;
    filter: blur(0);
    pointer-events: none;
}

.hud-stat-card.locked .lock-icon {
    color: rgba(0, 150, 255, 1);
    filter: drop-shadow(0 0 8px rgba(0, 150, 255, 0.9)) blur(0);
    animation: lock-pulse 2s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hud-stat-card.locked .lock-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(0, 150, 255, 1);
    text-shadow: 0 0 10px rgba(0, 150, 255, 0.9);
    letter-spacing: 3px;
    text-transform: uppercase;
    filter: blur(0);
    animation: lock-pulse 2s ease-in-out infinite;
}

@keyframes lock-pulse {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.hud-stat-label {
    font-size: 0.75rem;
    color: var(--dark-text);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.hud-stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--orange);
    text-shadow: 0 0 12px var(--orange);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: baseline;
    line-height: 1;
}

.hud-stat-value .percent,
.hud-stat-value .plus {
    font-size: 1.2rem;
    color: var(--cyan);
}

.rank-value {
    color: #ffd700;
    text-shadow: 0 0 20px #ffd700;
}

.hud-stat-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    overflow: hidden;
}

.hud-stat-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--orange), var(--cyan));
    box-shadow: 0 0 10px var(--orange);
    animation: fill-animation 2s ease-out;
}

@keyframes fill-animation {
    from { width: 0; }
}

.achievement-badge {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 107, 53, 0.1));
    border: 2px solid rgba(255, 215, 0, 0.5);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.3);
    animation: achievement-glow 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

@keyframes achievement-glow {
    0%, 100% { box-shadow: 0 0 30px rgba(255, 215, 0, 0.3); }
    50% { box-shadow: 0 0 50px rgba(255, 215, 0, 0.6); }
}

.achievement-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.8));
}

.achievement-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffd700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    line-height: 1.2;
}

.achievement-desc {
    font-size: 0.75rem;
    color: var(--dark-text);
    letter-spacing: 1px;
}

/* Center Panel: Title & Image */
.hero-center-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.hero-main-title {
    text-align: center;
    position: relative;
}

.title-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, transparent 70%);
    z-index: -1;
    animation: title-glow-pulse 3s ease-in-out infinite;
}

@keyframes title-glow-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    margin-bottom: 0.75rem;
    line-height: 1.1;
}

.title-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 0.75rem;
    font-size: 0.9rem;
}

.status-badge-live {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.875rem;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid var(--cyan);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--cyan);
    backdrop-filter: blur(5px);
}

.live-pulse {
    width: 8px;
    height: 8px;
    background: var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--cyan);
    animation: live-pulse 1.5s ease-in-out infinite;
}

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

.hero-image-container {
    position: relative;
    width: fit-content;
    max-width: 550px;
    margin: 0 auto;
}

.image-hologram-frame {
    position: relative;
    padding: 1rem;
    background: rgba(5, 5, 5, 0.7);
    border: 2px solid rgba(255, 107, 53, 0.4);
    box-shadow: 
        0 0 40px rgba(255, 107, 53, 0.4),
        inset 0 0 25px rgba(255, 107, 53, 0.1);
    overflow: visible;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin: 0 auto;
}

.hologram-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 10px, rgba(255, 107, 53, 0.05) 10px, rgba(255, 107, 53, 0.05) 11px),
        repeating-linear-gradient(90deg, transparent, transparent 10px, rgba(0, 255, 255, 0.05) 10px, rgba(0, 255, 255, 0.05) 11px);
    pointer-events: none;
    z-index: 1;
}

.hero-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block !important;
    position: relative;
    z-index: 2;
    filter: 
        drop-shadow(0 0 40px rgba(255, 107, 53, 0.6))
        drop-shadow(0 0 80px rgba(255, 107, 53, 0.3))
        contrast(1.1) 
        brightness(1.05);
    visibility: visible !important;
    opacity: 1 !important;
}

.hologram-scan-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    z-index: 3;
    animation: scan-line 3s linear infinite;
    pointer-events: none;
}

@keyframes scan-line {
    0% { top: 0; opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

.hero-cta-panel {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    max-width: 380px;
}

.cta-button-primary {
    position: relative;
    padding: 1rem 1.75rem;
    background: transparent;
    border: 2px solid var(--orange);
    color: var(--orange);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.button-bg {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--orange);
    transition: left 0.4s ease;
    z-index: -1;
}

.cta-button-primary:hover .button-bg {
    left: 0;
}

.cta-button-primary:hover {
    color: var(--darker-bg);
    box-shadow: 0 0 40px var(--orange);
}

.button-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
}

.cta-button-secondary {
    padding: 0.875rem 1.75rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: var(--orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: var(--orange);
    transform: translateX(5px);
}

.button-arrow {
    transition: transform 0.3s ease;
}

.cta-button-secondary:hover .button-arrow {
    transform: translateX(5px);
}

/* Right Panel: Skills */
.hero-skills-panel {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.skills-header {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 107, 53, 0.3);
}

.skills-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.skill-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(5, 5, 5, 0.8);
    border: 1px solid rgba(255, 107, 53, 0.3);
    padding: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.skill-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 107, 53, 0.1);
    transition: width 0.3s ease;
    z-index: 0;
}

.skill-item:hover::before {
    width: 100%;
}

.skill-item:hover {
    border-color: var(--cyan);
    transform: translateX(5px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.skill-icon {
    font-size: 2rem;
    z-index: 1;
    position: relative;
}

.skill-info {
    flex: 1;
    z-index: 1;
    position: relative;
}

.skill-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.skill-level-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    overflow: hidden;
}

.skill-level-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--orange), var(--cyan));
    box-shadow: 0 0 8px var(--orange);
    animation: skill-fill 1.5s ease-out;
}

@keyframes skill-fill {
    from { width: 0; }
}

.skill-percent {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--orange);
    text-shadow: 0 0 10px var(--orange);
    z-index: 1;
    position: relative;
}

.stream-info-card {
    background: rgba(5, 5, 5, 0.9);
    border: 2px solid rgba(255, 107, 53, 0.4);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
}

.stream-status {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stream-dot {
    width: 10px;
    height: 10px;
    background: var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--cyan);
    animation: stream-pulse 2s ease-in-out infinite;
}

@keyframes stream-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.stream-text {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cyan);
}

.stream-viewers {
    display: flex;
    flex-direction: column;
}

.viewers-count {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--orange);
    text-shadow: 0 0 15px var(--orange);
    line-height: 1;
}

.viewers-label {
    font-size: 0.75rem;
    color: var(--dark-text);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 0.25rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid var(--orange);
    width: fit-content;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
    animation: badge-pulse 3s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
    }
}

.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: var(--orange);
    filter: drop-shadow(0 0 5px var(--orange));
    animation: icon-spin 2s linear infinite;
}

.badge-icon svg {
    width: 100%;
    height: 100%;
}

@keyframes icon-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-subtitle {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 3px;
    margin-top: -0.5rem;
}

.title-divider {
    color: var(--dark-text);
    font-size: 1.2rem;
    opacity: 0.5;
}

.pixel-text {
    font-family: 'Press Start 2P', cursive;
    font-size: 1rem;
    color: var(--orange);
    text-shadow: 0 0 10px var(--orange);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid var(--cyan);
    border-radius: 0;
}

.status-text {
    color: var(--cyan);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

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

.hero-description {
    font-size: 1.3rem;
    line-height: 2;
    color: var(--white);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    max-width: 700px;
    font-weight: 500;
}

.highlight-time {
    color: var(--orange);
    font-weight: 700;
    text-shadow: 0 0 15px var(--orange);
    font-size: 1.4rem;
}

.hero-tags {
    color: var(--dark-text);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 2px;
}

.hero-stats-preview {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.preview-stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.preview-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--orange);
    text-shadow: 0 0 15px var(--orange);
    line-height: 1;
}

.preview-label {
    font-size: 0.75rem;
    color: var(--dark-text);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.hologram-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    padding: 1.25rem 2.5rem;
    background: transparent;
    border: 2px solid var(--orange);
    color: var(--orange);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 180px;
}

.hologram-button.primary {
    background: rgba(255, 107, 53, 0.1);
    border-width: 2px;
}

.hologram-button.secondary {
    border-color: rgba(255, 107, 53, 0.5);
    color: rgba(255, 107, 53, 0.8);
}

.button-icon {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.hologram-button:hover .button-glow {
    left: 100%;
}

.hologram-button:hover {
    color: var(--darker-bg);
    background: var(--orange);
    box-shadow: 
        0 0 30px var(--orange),
        0 0 60px rgba(255, 107, 53, 0.4);
    transform: translateY(-2px);
    border-color: var(--orange);
}

.hologram-button:hover .button-icon {
    transform: translateX(3px);
}

.hologram-button.secondary:hover {
    border-color: var(--orange);
    color: var(--orange);
    background: rgba(255, 107, 53, 0.1);
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-text);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 10;
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

.scroll-line {
    width: 2px;
    height: 30px;
    background: linear-gradient(180deg, var(--orange), transparent);
    animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
    0% {
        opacity: 0;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(10px);
    }
    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}

/* Stats Section */
/* About Section */
.about-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(0, 255, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.about-main {
    position: relative;
}

.about-text-wrapper {
    background: rgba(5, 5, 5, 0.7);
    border: 2px solid rgba(255, 107, 53, 0.3);
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 0 30px rgba(255, 107, 53, 0.2),
        inset 0 0 20px rgba(255, 107, 53, 0.05);
    position: relative;
    overflow: hidden;
}

.about-text-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    animation: scanline-sweep 3s linear infinite;
}

@keyframes scanline-sweep {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.about-text {
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.about-text:last-of-type {
    margin-bottom: 2rem;
}

.about-text strong {
    color: var(--orange);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.about-stats-mini {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.mini-stat {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    padding: 1.25rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mini-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.2), transparent);
    transition: left 0.5s ease;
}

.mini-stat:hover::before {
    left: 100%;
}

.mini-stat:hover {
    border-color: var(--orange);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.4);
    transform: translateY(-3px);
}

.mini-stat-value {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--orange);
    text-shadow: 0 0 15px var(--orange);
    margin-bottom: 0.5rem;
}

.mini-stat-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--dark-text);
}

/* Locked mini-stat styling - bluer theme */
.mini-stat.locked {
    border-color: rgba(0, 150, 255, 0.4);
    opacity: 0.85;
    background: rgba(5, 15, 30, 0.95);
    position: relative;
}

.mini-stat.locked::before {
    background: linear-gradient(90deg, transparent, rgba(0, 150, 255, 0.2), transparent);
}

.mini-stat.locked:hover {
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 0 0 20px rgba(0, 150, 255, 0.4);
    transform: translateY(-3px);
}

.mini-stat.locked > *:not(.lock-overlay) {
    filter: blur(3px);
}

.mini-stat.locked .mini-stat-value {
    color: rgba(100, 180, 255, 0.9);
    text-shadow: 0 0 15px rgba(100, 180, 255, 0.6);
}

.mini-stat.locked .mini-stat-label {
    color: rgba(150, 200, 255, 0.7);
}

/* Lock overlay for mini-stats */
.mini-stat.locked .lock-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    z-index: 10;
    filter: blur(0);
    pointer-events: none;
}

.mini-stat.locked .lock-overlay .lock-icon {
    color: rgba(0, 150, 255, 1);
    filter: drop-shadow(0 0 8px rgba(0, 150, 255, 0.9)) blur(0);
    animation: lock-pulse 2s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-stat.locked .lock-overlay .lock-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(0, 150, 255, 1);
    text-shadow: 0 0 10px rgba(0, 150, 255, 0.9);
    letter-spacing: 2px;
    text-transform: uppercase;
    filter: blur(0);
    animation: lock-pulse 2s ease-in-out infinite;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-card {
    background: rgba(5, 5, 5, 0.8);
    border: 2px solid rgba(0, 255, 255, 0.3);
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card:hover {
    border-color: var(--cyan);
    box-shadow: 
        0 0 30px rgba(0, 255, 255, 0.3),
        inset 0 0 20px rgba(0, 255, 255, 0.1);
    transform: translateX(5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 255, 0.1);
    border: 2px solid rgba(0, 255, 255, 0.3);
    margin-bottom: 1.5rem;
    color: var(--cyan);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: rgba(0, 255, 255, 0.2);
    border-color: var(--cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.feature-description {
    color: var(--white);
    font-size: 0.95rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    opacity: 0.9;
}

.stats-section {
    padding: 8rem 0;
    background: var(--dark-bg);
    position: relative;
    z-index: 10;
}

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

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.hologram-card {
    background: rgba(5, 5, 5, 0.9);
    border: 2px solid var(--orange);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 0 20px rgba(255, 107, 53, 0.2),
        inset 0 0 20px rgba(255, 107, 53, 0.05);
    backdrop-filter: blur(10px);
}

.hologram-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 107, 53, 0.1),
        transparent
    );
    transform: rotate(45deg);
    animation: hologram-sweep 3s infinite;
}

@keyframes hologram-sweep {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.hologram-card:hover {
    border-color: var(--cyan);
    box-shadow: 
        0 0 40px rgba(0, 255, 255, 0.5),
        0 10px 40px rgba(0, 255, 255, 0.2),
        inset 0 0 30px rgba(0, 255, 255, 0.1);
    transform: translateY(-8px) scale(1.02);
}

.stat-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--orange);
    filter: drop-shadow(0 0 10px var(--orange));
    transition: all 0.3s ease;
}

.card-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 2.5;
}

.stat-card:hover .card-icon {
    color: var(--cyan);
    filter: drop-shadow(0 0 15px var(--cyan));
    transform: scale(1.1);
}

/* Special styling for trophy icon (Rank card) */
.stat-card:nth-child(3) .card-icon {
    color: #ffd700;
    filter: drop-shadow(0 0 15px #ffd700);
}

.stat-card:nth-child(3):hover .card-icon {
    color: #ffed4e;
    filter: drop-shadow(0 0 20px #ffed4e);
    animation: trophy-glow 1.5s ease-in-out infinite;
}

@keyframes trophy-glow {
    0%, 100% {
        filter: drop-shadow(0 0 20px #ffed4e);
    }
    50% {
        filter: drop-shadow(0 0 30px #ffed4e) drop-shadow(0 0 40px rgba(255, 237, 78, 0.5));
    }
}

.card-label {
    font-size: 0.9rem;
    color: var(--dark-text);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--orange);
    text-shadow: 0 0 20px var(--orange);
}

.stat-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--orange);
    overflow: hidden;
}

.stat-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--orange), var(--cyan));
    box-shadow: 0 0 10px var(--orange);
    animation: fill-bar 2s ease-out;
}

@keyframes fill-bar {
    from { width: 0; }
}

/* Locked stat-card styling - bluer theme */
.hologram-card.locked {
    border-color: rgba(0, 150, 255, 0.4);
    background: rgba(5, 15, 30, 0.95);
    opacity: 0.85;
    box-shadow: 
        0 0 20px rgba(0, 150, 255, 0.2),
        inset 0 0 20px rgba(0, 150, 255, 0.05);
}

.hologram-card.locked::before {
    background: linear-gradient(
        45deg,
        transparent,
        rgba(0, 150, 255, 0.1),
        transparent
    );
}

.hologram-card.locked:hover {
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 
        0 0 40px rgba(0, 150, 255, 0.5),
        0 10px 40px rgba(0, 150, 255, 0.2),
        inset 0 0 30px rgba(0, 150, 255, 0.1);
    transform: translateY(-8px) scale(1.02);
}

.stat-card.locked {
    position: relative;
}

.stat-card.locked > *:not(.lock-overlay) {
    filter: blur(3px);
}

.stat-card.locked .card-icon {
    color: rgba(100, 180, 255, 0.7);
    filter: drop-shadow(0 0 10px rgba(100, 180, 255, 0.5));
}

.stat-card.locked:hover .card-icon {
    color: rgba(100, 180, 255, 0.9);
    filter: drop-shadow(0 0 15px rgba(100, 180, 255, 0.7));
}

.stat-card.locked .card-label {
    color: rgba(150, 200, 255, 0.7);
}

.stat-card.locked .stat-value {
    color: rgba(100, 180, 255, 0.9);
    text-shadow: 0 0 20px rgba(100, 180, 255, 0.6);
}

.stat-card.locked .stat-bar {
    border-color: rgba(0, 150, 255, 0.3);
    background: rgba(0, 50, 100, 0.3);
}

.stat-card.locked .stat-fill {
    background: linear-gradient(90deg, rgba(0, 150, 255, 0.7), rgba(100, 180, 255, 0.7));
    box-shadow: 0 0 10px rgba(0, 150, 255, 0.5);
}

/* Lock overlay for stat-cards */
.stat-card.locked .lock-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    z-index: 10;
    filter: blur(0);
    pointer-events: none;
}

.stat-card.locked .lock-overlay .lock-icon {
    color: rgba(0, 150, 255, 1);
    filter: drop-shadow(0 0 8px rgba(0, 150, 255, 0.9)) blur(0);
    animation: lock-pulse 2s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-card.locked .lock-overlay .lock-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(0, 150, 255, 1);
    text-shadow: 0 0 10px rgba(0, 150, 255, 0.9);
    letter-spacing: 3px;
    text-transform: uppercase;
    filter: blur(0);
    animation: lock-pulse 2s ease-in-out infinite;
}

/* Content Section */
.content-section {
    padding: 8rem 0;
    background: var(--darker-bg);
    position: relative;
    z-index: 10;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    position: relative;
}

.content-grid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.3), transparent);
    z-index: 0;
    pointer-events: none;
}

.content-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
}

.content-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--orange), var(--cyan), var(--orange));
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.content-card:hover::after {
    opacity: 0.6;
    animation: border-glow 2s ease-in-out infinite;
}

@keyframes border-glow {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

.content-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.3), rgba(0, 255, 255, 0.2), transparent);
    border-radius: 50%;
    animation: glow-pulse 3s infinite;
    pointer-events: none;
    filter: blur(20px);
}

.content-card:hover .card-glow {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.5), rgba(0, 255, 255, 0.4), transparent);
    animation: glow-pulse-intense 2s infinite;
}

@keyframes glow-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.7; }
}

@keyframes glow-pulse-intense {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.4); opacity: 1; }
}

.content-icon {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--orange);
    text-shadow: 
        0 0 20px var(--orange),
        0 0 40px var(--orange),
        0 0 60px rgba(255, 107, 53, 0.5);
    margin: 0 auto;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(0, 255, 255, 0.1));
    border: 2px solid var(--orange);
    border-radius: 50%;
    transition: all 0.4s ease;
    animation: icon-float 3s ease-in-out infinite;
}

@keyframes icon-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.content-card:hover .content-icon {
    transform: translateY(-5px) scale(1.1) rotate(360deg);
    color: var(--cyan);
    text-shadow: 
        0 0 25px var(--cyan),
        0 0 50px var(--cyan),
        0 0 75px rgba(0, 255, 255, 0.6);
    border-color: var(--cyan);
    box-shadow: 
        0 0 30px rgba(255, 107, 53, 0.6),
        0 0 60px rgba(0, 255, 255, 0.4),
        inset 0 0 30px rgba(255, 107, 53, 0.2);
    animation: icon-pulse 1s ease-in-out infinite;
}

@keyframes icon-pulse {
    0%, 100% { box-shadow: 0 0 30px rgba(255, 107, 53, 0.6), 0 0 60px rgba(0, 255, 255, 0.4), inset 0 0 30px rgba(255, 107, 53, 0.2); }
    50% { box-shadow: 0 0 40px rgba(255, 107, 53, 0.8), 0 0 80px rgba(0, 255, 255, 0.6), inset 0 0 40px rgba(255, 107, 53, 0.3); }
}

.content-heading {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 0.5rem;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.5),
        0 0 20px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.content-card:hover .content-heading {
    color: var(--cyan);
    text-shadow: 
        0 0 15px rgba(0, 255, 255, 0.8),
        0 0 30px rgba(0, 255, 255, 0.5),
        0 0 45px rgba(0, 255, 255, 0.3);
    letter-spacing: 4px;
}

.content-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--orange), var(--cyan));
    transition: width 0.4s ease;
}

.content-card:hover .content-heading::after {
    width: 80%;
    box-shadow: 0 0 10px var(--cyan);
}

.content-text {
    color: var(--dark-text);
    line-height: 1.9;
    font-size: 1.1rem;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    padding: 0 1rem;
}

.content-card:hover .content-text {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Unique styling for each game mode card */
.content-card:nth-child(1) .content-icon {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 200, 0, 0.1));
    border-color: rgba(255, 200, 0, 0.6);
}

.content-card:nth-child(1):hover .content-icon {
    border-color: rgba(255, 200, 0, 1);
    box-shadow: 
        0 0 30px rgba(255, 200, 0, 0.6),
        0 0 60px rgba(255, 107, 53, 0.4),
        inset 0 0 30px rgba(255, 200, 0, 0.2);
}

.content-card:nth-child(2) .content-icon {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.15), rgba(100, 200, 255, 0.1));
    border-color: rgba(0, 255, 255, 0.6);
}

.content-card:nth-child(2):hover .content-icon {
    border-color: rgba(0, 255, 255, 1);
    box-shadow: 
        0 0 30px rgba(0, 255, 255, 0.6),
        0 0 60px rgba(100, 200, 255, 0.4),
        inset 0 0 30px rgba(0, 255, 255, 0.2);
}

.content-card:nth-child(3) .content-icon {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 0, 150, 0.1));
    border-color: rgba(255, 0, 150, 0.6);
}

.content-card:nth-child(3):hover .content-icon {
    border-color: rgba(255, 0, 150, 1);
    box-shadow: 
        0 0 30px rgba(255, 0, 150, 0.6),
        0 0 60px rgba(255, 107, 53, 0.4),
        inset 0 0 30px rgba(255, 0, 150, 0.2);
}

.content-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.tag {
    padding: 0.5rem 1rem;
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid var(--orange);
    color: var(--orange);
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Connect Section */
.connect-section {
    padding: 8rem 0;
    background: var(--dark-bg);
    position: relative;
    z-index: 10;
}

.connect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.connect-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-decoration: none;
    color: var(--white);
    text-align: center;
    padding: 2rem;
}

.connect-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    color: var(--orange);
    filter: drop-shadow(0 0 15px var(--orange));
    margin: 0 auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.connect-icon svg {
    width: 100%;
    height: 100%;
}

.connect-icon i {
    font-size: 3rem;
    line-height: 1;
}

.connect-card:hover .connect-icon {
    color: var(--cyan);
    filter: drop-shadow(0 0 25px var(--cyan));
    transform: scale(1.15) rotate(5deg);
}

.connect-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.connect-desc {
    color: var(--dark-text);
    font-size: 0.9rem;
}

.connect-link {
    color: var(--orange);
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.connect-card:hover {
    transform: translateY(-5px);
}

.connect-card:hover .connect-link {
    color: var(--cyan);
    text-shadow: 0 0 10px var(--cyan);
}

/* Sponsors Section */
.sponsors-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.sponsors-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.06) 0%, transparent 60%),
        radial-gradient(circle at 30% 50%, rgba(0, 255, 255, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.sponsor-card {
    background: rgba(5, 5, 5, 0.8);
    border: 2px solid rgba(255, 107, 53, 0.3);
    padding: 3rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    min-height: 200px;
}

.sponsor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.6s ease;
}

.sponsor-card:hover::before {
    left: 100%;
}

.sponsor-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.sponsor-card:hover::after {
    opacity: 1;
    animation: sponsor-scanline 2s linear infinite;
}

@keyframes sponsor-scanline {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.sponsor-card:hover {
    border-color: var(--orange);
    box-shadow: 
        0 0 40px rgba(255, 107, 53, 0.4),
        inset 0 0 30px rgba(255, 107, 53, 0.1);
    transform: translateY(-10px);
}

.sponsor-logo-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    filter: brightness(0.9);
    transition: all 0.4s ease;
}

.sponsor-card:hover .sponsor-logo-wrapper {
    filter: brightness(1.1);
    transform: scale(1.05);
}

.sponsor-logo {
    width: 100%;
    max-width: 200px;
    height: auto;
    max-height: 100px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.3));
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.sponsor-card:hover .sponsor-logo {
    filter: drop-shadow(0 0 25px rgba(255, 107, 53, 0.8));
}

.sponsor-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    pointer-events: none;
}

.sponsor-card:hover .sponsor-glow {
    opacity: 1;
    animation: sponsor-glow-pulse 2s ease-in-out infinite;
}

@keyframes sponsor-glow-pulse {
    0%, 100% { 
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% { 
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Business Contact Section */
.business-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.business-contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1.5rem;
    padding: 3rem 2rem;
    transition: all 0.4s ease;
}

.business-contact-card:hover {
    transform: translateY(-10px);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    color: var(--orange);
    filter: drop-shadow(0 0 20px var(--orange));
    margin: 0 auto;
    transition: all 0.4s ease;
}

.contact-icon i {
    font-size: 2.5rem;
}

.business-contact-card:hover .contact-icon {
    color: var(--cyan);
    filter: drop-shadow(0 0 30px var(--cyan));
    transform: scale(1.15) rotate(5deg);
}

.contact-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-text);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
}

.contact-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--orange);
    text-decoration: none;
    text-shadow: 0 0 15px var(--orange);
    transition: all 0.3s ease;
    word-break: break-all;
}

.contact-value:hover {
    color: var(--cyan);
    text-shadow: 0 0 25px var(--cyan);
    transform: scale(1.05);
}

/* Loading Screen */
.loader-wrapper {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999 !important;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    pointer-events: auto;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
    will-change: opacity;
    overflow: hidden;
}

.loader-wrapper video {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    border: none !important;
    outline: none !important;
    filter: none !important;
    box-shadow: none !important;
}

.loader-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}


.loader-content {
    text-align: center;
    position: relative;
    width: 100%;
    max-width: 600px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transform: none !important;
    will-change: auto;
}

.loader-video {
    margin-bottom: 2rem;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 600px;
    height: auto;
    min-height: 300px;
    position: relative;
    z-index: 1;
    visibility: visible !important;
    transform: none !important;
    will-change: auto;
}

.loader-video-element {
    width: 100%;
    height: auto;
    max-width: 600px;
    max-height: 400px;
    min-width: 300px;
    min-height: 200px;
    object-fit: contain;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: transparent;
    position: relative;
    z-index: 10;
    border: none;
    outline: none;
}

.loader-progress {
    width: 300px;
    height: 4px;
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.4);
    margin: 0 auto 1rem;
    overflow: hidden;
    position: relative;
}

.loader-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--orange), var(--cyan));
    width: 0%;
    animation: loader-progress 2s ease-in-out forwards;
    box-shadow: 0 0 10px var(--orange);
}

@keyframes loader-progress {
    0% { width: 0%; }
    100% { width: 100%; }
}

.loader-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: var(--orange);
    text-transform: uppercase;
    animation: loader-text-blink 1.5s ease-in-out infinite;
}

@keyframes loader-text-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--cyan));
    z-index: 9999;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px var(--orange);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 53, 0.9);
    border: 2px solid var(--orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--orange);
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.8);
}

.back-to-top:focus {
    outline: 2px solid var(--cyan);
    outline-offset: 2px;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 100px;
    right: 2rem;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
}

.toast {
    background: rgba(5, 5, 5, 0.95);
    border: 2px solid var(--orange);
    padding: 1rem 1.5rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
    animation: toast-slide-in 0.3s ease-out;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.toast::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--orange);
}

.toast.success {
    border-color: var(--cyan);
}

.toast.success::before {
    background: var(--cyan);
}

.toast.error {
    border-color: #ff3333;
}

.toast.error::before {
    background: #ff3333;
}

@keyframes toast-slide-in {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.toast-content {
    flex: 1;
    color: var(--white);
    font-size: 0.9rem;
}

.toast-close {
    background: transparent;
    border: none;
    color: var(--white);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.toast-close:hover {
    opacity: 1;
}

.toast-close:focus {
    outline: 2px solid var(--orange);
    outline-offset: 2px;
    border-radius: 2px;
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(5, 5, 5, 0.98);
    border-top: 2px solid rgba(255, 107, 53, 0.5);
    padding: 1.5rem 2rem;
    z-index: 10002;
    backdrop-filter: blur(20px);
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 250px;
}

.cookie-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cookie-desc {
    color: var(--white);
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.9;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-accept,
.cookie-decline {
    padding: 0.75rem 1.5rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
}

.cookie-accept {
    color: var(--orange);
    border-color: var(--orange);
}

.cookie-accept:hover {
    background: var(--orange);
    color: var(--darker-bg);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.cookie-decline {
    color: var(--dark-text);
    border-color: var(--dark-text);
}

.cookie-decline:hover {
    background: var(--dark-text);
    color: var(--white);
}

.cookie-accept:focus,
.cookie-decline:focus {
    outline: 2px solid var(--cyan);
    outline-offset: 2px;
}

/* Scroll Animation Classes - Sections ALWAYS visible */
section {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

/* Disable fade-in for sections - they should always be visible */
section.fade-in {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

/* Only apply fade-in to non-section elements */
.fade-in:not(section) {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

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

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

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

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

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

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

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

/* Parallax Effect */
.parallax-element {
    transition: transform 0.1s ease-out;
}

/* Enhanced Accessibility */
*:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--orange);
    color: var(--white);
    padding: 0.5rem 1rem;
    text-decoration: none;
    z-index: 10003;
    font-weight: 700;
}

.skip-link:focus {
    top: 0;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Advanced Glitch Effects */
@keyframes advanced-glitch {
    0% {
        transform: translate(0);
        filter: hue-rotate(0deg);
    }
    10% {
        transform: translate(-2px, 2px);
        filter: hue-rotate(90deg);
    }
    20% {
        transform: translate(-1px, 0px);
        filter: hue-rotate(180deg);
    }
    30% {
        transform: translate(3px, 2px);
        filter: hue-rotate(270deg);
    }
    40% {
        transform: translate(1px, -1px);
        filter: hue-rotate(360deg);
    }
    50% {
        transform: translate(-1px, 2px);
        filter: hue-rotate(90deg);
    }
    60% {
        transform: translate(-3px, 1px);
        filter: hue-rotate(180deg);
    }
    70% {
        transform: translate(2px, 1px);
        filter: hue-rotate(270deg);
    }
    80% {
        transform: translate(-1px, -1px);
        filter: hue-rotate(360deg);
    }
    90% {
        transform: translate(1px, 2px);
        filter: hue-rotate(90deg);
    }
    100% {
        transform: translate(0);
        filter: hue-rotate(0deg);
    }
}

.glitch-active {
    animation: advanced-glitch 0.3s ease-in-out;
}

@keyframes text-glitch {
    0%, 100% {
        text-shadow: 
            2px 0 0 #ff0080,
            -2px 0 0 #00ffff;
        transform: translate(0);
    }
    25% {
        text-shadow: 
            -2px 0 0 #ff0080,
            2px 0 0 #00ffff;
        transform: translate(2px, 0);
    }
    50% {
        text-shadow: 
            2px 0 0 #ff0080,
            -2px 0 0 #00ffff;
        transform: translate(-2px, 0);
    }
    75% {
        text-shadow: 
            -2px 0 0 #ff0080,
            2px 0 0 #00ffff;
        transform: translate(2px, 0);
    }
}

.text-glitch-active {
    animation: text-glitch 0.4s ease-in-out;
}

/* Toast Slide Out Animation */
@keyframes toast-slide-out {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

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

/* Footer */
.footer {
    padding: 4rem 0;
    background: var(--darker-bg);
    border-top: 1px solid rgba(255, 107, 53, 0.3);
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    text-align: center;
}

.footer-logo {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.6));
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-logo-img:hover {
    filter: drop-shadow(0 0 30px rgba(255, 107, 53, 1));
    opacity: 1;
    transform: scale(1.05);
}

.footer-text {
    color: var(--dark-text);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.footer-text p {
    margin: 0.5rem 0;
}

.powered-by {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.powered-by-logo {
    height: 24px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.6));
    transition: all 0.3s ease;
}

.powered-by:hover .powered-by-logo {
    filter: drop-shadow(0 0 15px rgba(255, 107, 53, 1));
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-center-panel {
        order: -1;
    }

    .hero-hud-panel,
    .hero-skills-panel {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .gaming-stats-hud {
        grid-column: 1 / -1;
    }

    .nav-container,
    .section-container,
    .footer-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .nav-logo {
        position: static;
        transform: none;
    }

    .nav-container {
        flex-wrap: wrap;
        gap: 1rem;
    }

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

@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-features {
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .nav-left {
        display: none;
    }

    .about-text-wrapper {
        padding: 2rem 1.5rem;
    }

    .about-text {
        font-size: 1rem;
    }

    .about-stats-mini {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .nav-right {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .logo-img {
        height: 35px;
    }

    .hero-section {
        padding: 100px 1.5rem 4rem;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-hud-panel,
    .hero-skills-panel {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 3rem;
        letter-spacing: 4px;
    }

    .title-subtitle {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-image-container {
        max-width: 100%;
    }

    .image-hologram-frame {
        padding: 1.5rem;
    }

    .hero-cta-panel {
        max-width: 100%;
    }

    .cta-button-primary,
    .cta-button-secondary {
        width: 100%;
    }

    .terminal-body {
        padding: 1rem;
        font-size: 0.8rem;
    }

    .hud-stat-value {
        font-size: 1.5rem;
    }

    .skill-percent {
        font-size: 0.9rem;
    }

    .viewers-count {
        font-size: 1.5rem;
    }

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

    .sponsors-grid,
    .business-contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sponsor-card {
        padding: 2rem 1.5rem;
        min-height: 180px;
    }

    .sponsor-logo {
        max-width: 160px;
        max-height: 80px;
    }

    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }

    .toast-container {
        right: 1rem;
        left: 1rem;
        max-width: none;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-accept,
    .cookie-decline {
        flex: 1;
        max-width: 200px;
    }

    .loader-progress {
        width: 250px;
    }
    
    .loader-video {
        max-width: 90vw;
        margin-bottom: 1.5rem;
        min-height: 200px;
    }
    
    .loader-video-element {
        max-width: 100%;
        max-height: 300px;
        min-width: 250px;
        min-height: 150px;
    }
    
    .loader-content {
        padding: 1rem;
        width: 100%;
        max-width: 100vw;
    }

    .loader-video {
        max-width: 90%;
        margin-bottom: 1.5rem;
    }
    
    .loader-video-element {
        max-width: 100%;
        max-height: 250px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .terminal-body {
        padding: 0.75rem;
        font-size: 0.7rem;
    }

    .hud-stat-card {
        padding: 1rem;
    }

    .hud-stat-value {
        font-size: 1.3rem;
    }

    .achievement-badge {
        padding: 1rem;
    }

    .skill-item {
        padding: 0.75rem;
    }

    .skill-icon {
        font-size: 1.5rem;
    }

    .stream-info-card {
        padding: 1rem;
    }

    .about-section,
    .stats-section,
    .content-section,
    .connect-section,
    .sponsors-section {
        padding: 4rem 0;
    }

    .section-container {
        padding: 0 1.5rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
        letter-spacing: 2px;
    }

    .stats-grid,
    .content-grid,
    .connect-grid,
    .sponsors-grid,
    .business-contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hologram-card {
        padding: 2rem 1.5rem;
    }

    .stat-value {
        font-size: 2.5rem;
    }

    .content-icon {
        font-size: 1.5rem;
    }

    .content-heading {
        font-size: 1.3rem;
    }

    .connect-icon {
        width: 56px;
        height: 56px;
    }

    .footer {
        padding: 3rem 0;
    }

    .footer-container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .loader-wrapper {
        padding: 1rem;
    }
    
    .loader-content {
        width: 100%;
        max-width: 100%;
        padding: 0.5rem;
    }
    
    .loader-video {
        max-width: 95vw;
        margin-bottom: 1rem;
        min-height: 180px;
    }
    
    .loader-video-element {
        max-width: 100%;
        max-height: 250px;
        min-width: 200px;
        min-height: 120px;
        width: 100%;
    }
    
    .loader-progress {
        width: 200px;
        max-width: 90%;
    }
    
    .loader-text {
        font-size: 0.8rem;
    }
    
    .hero-section {
        padding: 90px 1rem 3rem;
    }

    .glitch-text-large {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .hero-stats-preview {
        gap: 1rem;
    }

    .preview-value {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .hologram-card {
        padding: 1.5rem 1rem;
    }

    .stat-value {
        font-size: 2rem;
    }

    .card-icon {
        width: 35px;
        height: 35px;
    }

    .mobile-menu-content {
        padding: 1.5rem;
    }

    .mobile-nav-link {
        font-size: 1.2rem;
        padding: 1.2rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--darker-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--orange);
    box-shadow: 0 0 10px var(--orange);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--cyan);
    box-shadow: 0 0 10px var(--cyan);
}






