/* ============================================
   PRIMOGAMEPASSAGE — MAIN STYLESHEET
   ============================================ */

/* === RESET & BASE === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #00F0FF;
    --secondary: #8B5CF6;
    --accent: #FF2D95;
    --bg-dark: #050505;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-glass: rgba(255, 255, 255, 0.05);
    --border-glass: rgba(255, 255, 255, 0.08);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.4);
    --glow-cyan: 0 0 30px rgba(0, 240, 255, 0.3);
    --glow-purple: 0 0 30px rgba(139, 92, 246, 0.3);
    --glow-pink: 0 0 30px rgba(255, 45, 149, 0.3);
    --gradient-main: linear-gradient(135deg, var(--primary), var(--secondary));
    --gradient-accent: linear-gradient(135deg, var(--accent), var(--secondary));
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
    --font-text: 'Inter', sans-serif;
    --header-height: 80px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--bg-dark);
}

html::-webkit-scrollbar {
    width: 8px;
}

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

html::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    border-radius: 4px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    cursor: none;
    line-height: 1.6;
    font-size: 16px;
}

/* Custom Cursor */
#cursor-glow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0, 240, 255, 0.3);
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transition: transform 0.15s ease, opacity 0.3s ease, width 0.3s ease, height 0.3s ease;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

#cursor-glow.hover {
    width: 60px;
    height: 60px;
    border-color: var(--accent);
    background: rgba(255, 45, 149, 0.1);
}

#cursor-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px var(--primary);
}

/* Particle Canvas */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
}

/* Container */
.container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

/* === LOADING SCREEN === */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#loading-screen.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    z-index: 2;
}

.loader-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: 4px;
    margin-bottom: 40px;
}

.loader-logo span {
    color: var(--primary);
    text-shadow: 0 0 20px var(--primary);
}

.loader-bar-container {
    width: 300px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto 20px;
}

.loader-bar {
    height: 100%;
    width: 0%;
    background: var(--gradient-main);
    border-radius: 2px;
    transition: width 0.1s linear;
    box-shadow: 0 0 15px var(--primary);
}

.loader-text {
    font-family: var(--font-display);
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.loader-percent {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary);
}

.loader-scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    opacity: 0.3;
    animation: scanline 3s linear infinite;
    box-shadow: 0 0 20px var(--primary);
}

@keyframes scanline {
    0% { top: 0; }
    100% { top: 100%; }
}

/* === HEADER === */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    transition: all var(--transition);
    padding: 0 20px;
}

#main-header.scrolled {
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.header-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

#main-header.scrolled .header-line {
    opacity: 0.3;
}

/* Logo */
.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 2px;
    z-index: 100;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: 2px;
}

.logo-accent {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

/* Glitch Text */
.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%;
    opacity: 0;
}

.glitch-text::before {
    color: var(--accent);
    animation: glitch-1 4s infinite linear alternate-reverse;
}

.glitch-text::after {
    color: var(--primary);
    animation: glitch-2 4s infinite linear alternate-reverse;
}

@keyframes glitch-1 {
    0%, 95% { opacity: 0; transform: translate(0); }
    96% { opacity: 0.8; transform: translate(-2px, 1px); }
    97% { opacity: 0; transform: translate(0); }
    98% { opacity: 0.6; transform: translate(2px, -1px); }
    99%, 100% { opacity: 0; transform: translate(0); }
}

@keyframes glitch-2 {
    0%, 94% { opacity: 0; transform: translate(0); }
    95% { opacity: 0.6; transform: translate(1px, -2px); }
    96% { opacity: 0; transform: translate(0); }
    97% { opacity: 0.8; transform: translate(-1px, 2px); }
    98%, 100% { opacity: 0; transform: translate(0); }
}

/* Navigation */
#main-nav ul {
    display: flex;
    list-style: none;
    gap: 5px;
}

.nav-link {
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 18px;
    position: relative;
    transition: color var(--transition);
}

.nav-link span {
    position: relative;
    display: inline-block;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-main);
    transition: width var(--transition);
    box-shadow: var(--glow-cyan);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

/* Header CTA */
.header-cta {
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 12px 24px;
    border: 1px solid var(--primary);
    color: var(--primary);
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.header-cta:hover {
    background: var(--primary);
    color: var(--bg-dark);
    box-shadow: var(--glow-cyan);
}

.cta-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.1), transparent 60%);
    opacity: 0;
    transition: opacity var(--transition);
}

.header-cta:hover .cta-glow {
    opacity: 1;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: none;
    padding: 10px;
    z-index: 100;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition);
}

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

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

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

/* === HERO SECTION === */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--header-height);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0, 240, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(255, 45, 149, 0.05) 0%, transparent 50%),
        url('images/photo-1535223289827-42f1e9919769.png') center/cover no-repeat;
    animation: heroZoom 30s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
        rgba(5, 5, 5, 0.7) 0%,
        rgba(5, 5, 5, 0.4) 40%,
        rgba(5, 5, 5, 0.6) 70%,
        rgba(5, 5, 5, 1) 100%);
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5, 5, 5, 0.8) 0%, transparent 60%);
}

.hero-scan-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.03) 2px,
        rgba(0, 0, 0, 0.03) 4px
    );
    pointer-events: none;
}

.hero-vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 200px rgba(0, 0, 0, 0.8);
    pointer-events: none;
}

/* Floating Elements */
.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.float-element {
    position: absolute;
    font-size: 1.5rem;
    color: var(--primary);
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
}

.fe1 { top: 20%; left: 10%; animation-delay: 0s; color: var(--primary); }
.fe2 { top: 30%; right: 15%; animation-delay: 1s; color: var(--secondary); }
.fe3 { bottom: 30%; left: 20%; animation-delay: 2s; color: var(--accent); }
.fe4 { top: 60%; right: 10%; animation-delay: 3s; color: var(--primary); }
.fe5 { bottom: 20%; right: 30%; animation-delay: 4s; color: var(--secondary); }

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

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 5;
    max-width: 900px;
    padding: 0 30px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border: 1px solid rgba(0, 240, 255, 0.2);
    background: rgba(0, 240, 255, 0.05);
    font-family: var(--font-display);
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 30px;
    clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255, 45, 149, 0.5); }
    50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(255, 45, 149, 0); }
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
}

.title-line {
    display: block;
    overflow: hidden;
}

.title-line.line-1 .glitch-text,
.title-line.line-3 .glitch-text {
    font-size: clamp(2rem, 5vw, 4rem);
    letter-spacing: 4px;
}

.title-line.line-2 .glitch-text {
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    letter-spacing: 6px;
}

.accent-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero-subtitle {
    font-family: var(--font-text);
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 600px;
}

/* Buttons */
.hero-ctas {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 36px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
    cursor: none;
    border: none;
}

.btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: var(--gradient-main);
    color: var(--bg-dark);
    clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.4), 0 0 60px rgba(0, 240, 255, 0.2);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover .btn-glow {
    left: 100%;
}

.btn-secondary {
    border: 1px solid var(--text-muted);
    color: var(--text-primary);
    background: transparent;
    clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

.btn-ghost {
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    background: transparent;
    padding: 14px 28px;
}

.btn-ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(0, 240, 255, 0.05);
}

.btn-small {
    padding: 10px 24px;
    font-size: 0.65rem;
    background: var(--gradient-main);
    color: var(--bg-dark);
    clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.btn-large {
    padding: 20px 48px;
    font-size: 0.85rem;
}

.btn-full {
    width: 100%;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.6rem;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 5px;
}

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

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 5;
}

.scroll-line {
    width: 1px;
    height: 60px;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--primary);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { top: -50%; }
    100% { top: 150%; }
}

.hero-scroll-indicator span {
    font-family: var(--font-display);
    font-size: 0.55rem;
    letter-spacing: 3px;
    color: var(--text-muted);
}

/* === SECTIONS === */
.section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.section-bg-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.1;
    pointer-events: none;
}

.glow-left {
    left: -200px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
}

.glow-right {
    right: -200px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--secondary);
}

/* Section Headers */
.section-header {
    margin-bottom: 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 20px;
}

.section-header.center {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 0.65rem;
    letter-spacing: 4px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.tag-line {
    display: inline-block;
    width: 30px;
    height: 1px;
    background: var(--primary);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    letter-spacing: 3px;
    line-height: 1.2;
}

.section-subtitle {
    font-family: var(--font-text);
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 15px;
    max-width: 500px;
}

/* === FEATURED GAME === */
.featured-section {
    background: linear-gradient(to bottom, var(--bg-dark), rgba(5, 5, 5, 0.95));
}

.featured-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.featured-image-container {
    position: relative;
}

.featured-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.featured-image-frame {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid rgba(0, 240, 255, 0.15);
    pointer-events: none;
}

.featured-badge-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 18px;
    background: var(--accent);
    color: white;
    font-family: var(--font-display);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 3px;
}

.featured-description {
    font-family: var(--font-text);
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
}

.featured-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.meta-label {
    font-family: var(--font-display);
    font-size: 0.55rem;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.meta-value {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.status-live {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #00ff88;
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00ff88;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px #00ff88;
}

.featured-actions {
    display: flex;
    gap: 15px;
}

/* === GAME CARDS === */
.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.game-card {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    transition: all var(--transition);
}

.game-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 240, 255, 0.1);
}

.card-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.game-card:hover .card-image {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(5, 5, 5, 0.9) 0%, transparent 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.game-card:hover .card-overlay {
    opacity: 1;
}

.card-overlay-content {
    text-align: center;
}

.card-overlay-title {
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--primary);
}

.card-play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    transition: all var(--transition);
    transform: scale(0.5);
    opacity: 0;
}

.game-card:hover .card-play-btn {
    transform: scale(1);
    opacity: 1;
}

.card-play-btn:hover {
    background: var(--primary);
    color: var(--bg-dark);
    box-shadow: var(--glow-cyan);
}

.card-status {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 12px;
    font-family: var(--font-display);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 2px;
    z-index: 3;
}

.card-status.live {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.card-status.coming-soon {
    background: rgba(255, 45, 149, 0.2);
    color: var(--accent);
    border: 1px solid rgba(255, 45, 149, 0.3);
}

.card-content {
    padding: 20px;
}

.card-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.card-genre {
    font-family: var(--font-text);
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 10px;
}

.card-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #FFD700;
    font-size: 0.75rem;
    margin-bottom: 12px;
}

.card-rating span {
    color: var(--text-secondary);
    font-family: var(--font-display);
    font-weight: 600;
    margin-left: 5px;
}

.coming-tag {
    font-family: var(--font-display) !important;
    color: var(--accent) !important;
    font-size: 0.7rem !important;
    letter-spacing: 2px;
}

/* Card Read More Link */
.card-read-more {
    font-family: var(--font-display);
    font-size: 0.6rem;
    letter-spacing: 2px;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap var(--transition), color var(--transition);
    text-transform: uppercase;
}

.card-read-more:hover {
    gap: 15px;
    color: var(--text-primary);
}

.card-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-main);
    opacity: 0;
    transition: opacity var(--transition);
}

.game-card:hover .card-glow {
    opacity: 1;
    box-shadow: 0 0 20px var(--primary);
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

/* === GAMES PAGE GRID === */
.games-grid-full {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.game-card-large {
    position: relative;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    transition: all var(--transition);
}

.game-card-large:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 240, 255, 0.1);
}

.game-card-large .card-image-wrapper {
    aspect-ratio: 16/10;
}

.game-card-large .card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.game-card-large:hover .card-image {
    transform: scale(1.1);
}

.game-card-large .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(5, 5, 5, 0.9) 0%, transparent 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.game-card-large:hover .card-overlay {
    opacity: 1;
}

.game-card-large .card-play-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.4rem;
    transition: all var(--transition);
    transform: scale(0.5);
    opacity: 0;
}

.game-card-large:hover .card-play-btn {
    transform: scale(1);
    opacity: 1;
}

.game-card-large .card-content {
    padding: 25px;
}

.game-card-large .card-title {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.card-desc {
    font-family: var(--font-text);
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 10px 0 15px;
}

.card-platforms {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.card-platforms i:hover {
    color: var(--primary);
}

.game-card-large .card-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-main);
    opacity: 0;
    transition: opacity var(--transition);
}

.game-card-large:hover .card-glow {
    opacity: 1;
    box-shadow: 0 0 20px var(--primary);
}

/* Filter Bar */
.filter-bar {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 24px;
    border: 1px solid var(--border-glass);
    background: transparent;
    color: var(--text-secondary);
    cursor: none;
    transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(0, 240, 255, 0.05);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.1);
}

/* === GAME DETAIL SECTIONS === */
.game-detail-section {
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.98), rgba(10, 0, 20, 0.95), rgba(5, 5, 5, 0.98));
    border-top: 1px solid var(--border-glass);
}

.game-detail-section:nth-child(even) {
    background: linear-gradient(to bottom, rgba(10, 0, 20, 0.95), rgba(5, 5, 5, 0.98), rgba(10, 0, 20, 0.95));
}

.game-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.game-detail-wrapper.game-detail-reverse {
    direction: rtl;
}

.game-detail-wrapper.game-detail-reverse > * {
    direction: ltr;
}

.game-detail-visual {
    position: relative;
}

.game-detail-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.game-detail-frame {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    pointer-events: none;
}

.game-detail-info {
    padding-top: 10px;
}

.game-detail-story {
    font-family: var(--font-text);
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 30px;
}

.game-detail-features {
    margin-bottom: 30px;
}

.game-detail-features-title {
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 18px;
}

.game-feature-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.game-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-family: var(--font-text);
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    padding: 10px 14px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    transition: all var(--transition);
}

.game-feature-list li:hover {
    border-color: rgba(0, 240, 255, 0.2);
    background: rgba(0, 240, 255, 0.03);
}

.game-feature-list li i {
    color: var(--primary);
    font-size: 0.85rem;
    margin-top: 3px;
    flex-shrink: 0;
    width: 18px;
    text-align: center;
}

.game-detail-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
}

/* === UPCOMING GAME === */
.upcoming-section {
    background: linear-gradient(to bottom, var(--bg-dark), rgba(10, 0, 20, 0.95), var(--bg-dark));
    position: relative;
}

.upcoming-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.energy-line {
    position: absolute;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--primary), transparent);
    opacity: 0.05;
}

.el1 { left: 20%; animation: energyPulse 3s ease-in-out infinite; }
.el2 { left: 50%; animation: energyPulse 3s ease-in-out infinite 1s; }
.el3 { left: 80%; animation: energyPulse 3s ease-in-out infinite 2s; }

@keyframes energyPulse {
    0%, 100% { opacity: 0.03; }
    50% { opacity: 0.1; }
}

.upcoming-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.upcoming-image-container {
    position: relative;
}

.upcoming-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.upcoming-image-glitch {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent 50%, rgba(0, 240, 255, 0.02) 50%);
    background-size: 100% 4px;
    pointer-events: none;
}

.upcoming-frame-decoration {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    pointer-events: none;
}

.frame-corner {
    position: absolute;
    width: 30px;
    height: 30px;
}

.fc-tl { top: 0; left: 0; border-top: 2px solid var(--primary); border-left: 2px solid var(--primary); }
.fc-tr { top: 0; right: 0; border-top: 2px solid var(--primary); border-right: 2px solid var(--primary); }
.fc-bl { bottom: 0; left: 0; border-bottom: 2px solid var(--primary); border-left: 2px solid var(--primary); }
.fc-br { bottom: 0; right: 0; border-bottom: 2px solid var(--primary); border-right: 2px solid var(--primary); }

.upcoming-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.upcoming-description {
    font-family: var(--font-text);
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
}

.upcoming-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    transition: all var(--transition);
}

.feature-item:hover {
    border-color: rgba(0, 240, 255, 0.3);
    background: rgba(0, 240, 255, 0.05);
}

.feature-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 240, 255, 0.1);
    color: var(--primary);
    font-size: 0.9rem;
}

.feature-item span {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Countdown */
.countdown-container {
    margin-bottom: 35px;
}

.countdown-label {
    font-family: var(--font-display);
    font-size: 0.6rem;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.countdown {
    display: flex;
    gap: 5px;
    align-items: center;
}

.countdown-item {
    text-align: center;
    padding: 12px 16px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    min-width: 70px;
}

.countdown-number {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary);
    display: block;
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

.countdown-unit {
    font-family: var(--font-display);
    font-size: 0.5rem;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.countdown-separator {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary);
    opacity: 0.5;
}

.upcoming-actions {
    display: flex;
    gap: 15px;
}

/* === TRAILER SECTION === */
.trailer-section {
    background: var(--bg-dark);
}

.trailer-container {
    max-width: 1000px;
    margin: 0 auto;
}

.trailer-wrapper {
    position: relative;
    overflow: hidden;
    cursor: none;
}

.trailer-thumbnail {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
    filter: brightness(0.6);
    transition: filter var(--transition);
}

.trailer-wrapper:hover .trailer-thumbnail {
    filter: brightness(0.4);
}

.trailer-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.play-button-large {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 2rem;
    position: relative;
    transition: all var(--transition);
}

.play-button-large:hover {
    background: var(--primary);
    color: var(--bg-dark);
    transform: scale(1.1);
}

.play-ripple {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid var(--primary);
    animation: ripple 2s ease-out infinite;
}

.ripple-2 {
    animation-delay: 1s;
}

@keyframes ripple {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(2); opacity: 0; }
}

.play-text {
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 4px;
    color: var(--text-secondary);
}

.trailer-frame {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    pointer-events: none;
}

.tf-corner {
    position: absolute;
    width: 20px;
    height: 20px;
}

.tf-tl { top: 0; left: 0; border-top: 1px solid rgba(0, 240, 255, 0.3); border-left: 1px solid rgba(0, 240, 255, 0.3); }
.tf-tr { top: 0; right: 0; border-top: 1px solid rgba(0, 240, 255, 0.3); border-right: 1px solid rgba(0, 240, 255, 0.3); }
.tf-bl { bottom: 0; left: 0; border-bottom: 1px solid rgba(0, 240, 255, 0.3); border-left: 1px solid rgba(0, 240, 255, 0.3); }
.tf-br { bottom: 0; right: 0; border-bottom: 1px solid rgba(0, 240, 255, 0.3); border-right: 1px solid rgba(0, 240, 255, 0.3); }

/* === VISION SECTION === */
.vision-section {
    background: linear-gradient(to bottom, var(--bg-dark), rgba(5, 5, 10, 0.95));
}

.vision-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.vision-text {
    font-family: var(--font-text);
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.vision-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.pillar {
    text-align: center;
    padding: 25px 15px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    transition: all var(--transition);
}

.pillar:hover {
    border-color: rgba(0, 240, 255, 0.3);
    transform: translateY(-5px);
}

.pillar-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.pillar h4 {
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.pillar p {
    font-family: var(--font-text);
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.vision-image-stack {
    position: relative;
}

.vision-img {
    display: block;
    object-fit: cover;
}

.vi-1 {
    width: 100%;
    height: 400px;
}

.vi-2 {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    border: 3px solid var(--bg-dark);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.vision-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border: 1px solid rgba(0, 240, 255, 0.15);
    pointer-events: none;
}

/* === NEWS SECTION === */
.news-section {
    background: var(--bg-dark);
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
}

.news-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    overflow: hidden;
    transition: all var(--transition);
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 240, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

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

.news-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.news-card:hover .news-image {
    transform: scale(1.08);
}

.news-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(5, 5, 5, 0.8), transparent);
}

.news-content {
    padding: 25px;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.news-category {
    font-family: var(--font-display);
    font-size: 0.55rem;
    letter-spacing: 2px;
    color: var(--primary);
    padding: 3px 10px;
    border: 1px solid rgba(0, 240, 255, 0.2);
    background: rgba(0, 240, 255, 0.05);
}

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

.news-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.4;
    margin-bottom: 10px;
}

.news-excerpt {
    font-family: var(--font-text);
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 15px;
}

.news-link {
    font-family: var(--font-display);
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap var(--transition);
}

.news-link:hover {
    gap: 15px;
}

/* News Page Full Cards */
.news-card-full {
    display: grid;
    grid-template-columns: 400px 1fr;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    overflow: hidden;
    transition: all var(--transition);
    margin-bottom: 25px;
}

.news-card-full:hover {
    border-color: rgba(0, 240, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.news-card-full .news-image-wrapper {
    aspect-ratio: auto;
    height: 100%;
    min-height: 250px;
}

.news-card-full .news-content {
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-card-full .news-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.news-filter-bar {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

/* === CTA SECTION === */
.cta-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.03), rgba(139, 92, 246, 0.03));
}

.cta-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cta-grid-bg {
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.cta-wrapper {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.cta-text {
    font-family: var(--font-text);
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 35px;
}

.form-group-inline {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.cta-input {
    flex: 1;
    padding: 16px 24px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    font-family: var(--font-text);
    font-size: 0.9rem;
    outline: none;
    transition: all var(--transition);
}

.cta-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
}

.cta-input::placeholder {
    color: var(--text-muted);
}

.cta-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-glass);
    color: var(--text-secondary);
    font-size: 1.2rem;
    text-decoration: none;
    transition: all var(--transition);
}

.social-icon:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(0, 240, 255, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.15);
}

/* === GLASS CARD === */
.glass-card {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-glass);
    transition: all var(--transition);
}

.glass-card:hover {
    border-color: rgba(0, 240, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* === PAGE HERO === */
.page-hero {
    padding: 180px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-hero-small {
    padding: 160px 0 60px;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at center, rgba(0, 240, 255, 0.05), transparent 60%),
        linear-gradient(to bottom, var(--bg-dark), rgba(5, 5, 5, 0.95));
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    letter-spacing: 5px;
    margin-bottom: 15px;
}

.page-subtitle {
    font-family: var(--font-text);
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* === STUDIO PAGE === */
.studio-intro-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.studio-intro-content .large-text {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.studio-intro-content p {
    font-family: var(--font-text);
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.studio-intro-visual {
    position: relative;
}

.studio-intro-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.image-frame-decoration {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    pointer-events: none;
}

/* Mission Section */
.mission-section {
    background: linear-gradient(to bottom, var(--bg-dark), rgba(10, 0, 20, 0.5), var(--bg-dark));
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.mission-card {
    padding: 40px 30px;
    text-align: center;
}

.mission-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.mission-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.mission-card p {
    font-family: var(--font-text);
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* BTS Gallery */
.bts-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 15px;
}

.bts-item {
    position: relative;
    overflow: hidden;
}

.bts-item.bts-large {
    grid-column: span 2;
    grid-row: span 2;
}

.bts-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.bts-item:hover .bts-image {
    transform: scale(1.1);
}

.bts-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(5, 5, 5, 0.9), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.bts-item:hover .bts-overlay {
    opacity: 1;
}

.bts-overlay span {
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--primary);
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.team-card {
    padding: 30px 20px;
    text-align: center;
}

.team-avatar {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(50%);
    transition: filter var(--transition);
}

.team-card:hover .team-image {
    filter: grayscale(0%);
}

.team-avatar-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: border-color var(--transition);
}

.team-card:hover .team-avatar-glow {
    border-color: var(--primary);
    box-shadow: var(--glow-cyan);
}

.team-name {
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.team-role {
    font-family: var(--font-display);
    font-size: 0.6rem;
    letter-spacing: 2px;
    color: var(--primary);
    display: block;
    margin-bottom: 10px;
}

.team-bio {
    font-family: var(--font-text);
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Stats */
.stats-section {
    background: linear-gradient(to bottom, transparent, rgba(0, 240, 255, 0.02), transparent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.stat-card {
    padding: 40px 20px;
    text-align: center;
}

.stat-big-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    text-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
    display: inline;
}

.stat-big-suffix {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-card-label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.6rem;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 10px;
}

/* === CAREERS PAGE === */
.careers-intro {
    margin-bottom: 80px;
}

.careers-intro .large-text {
    font-family: var(--font-text);
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 800px;
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.perk-item {
    padding: 30px 20px;
    text-align: center;
}

.perk-icon {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.perk-item h4 {
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.perk-item p {
    font-family: var(--font-text);
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Jobs */
.jobs-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.job-card {
    padding: 30px 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.job-card:hover {
    border-color: rgba(0, 240, 255, 0.3);
}

.job-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.job-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.job-type {
    font-family: var(--font-display);
    font-size: 0.55rem;
    letter-spacing: 2px;
    padding: 4px 12px;
    border: 1px solid rgba(0, 240, 255, 0.2);
    color: var(--primary);
}

.job-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.job-meta span {
    font-family: var(--font-text);
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.job-meta i {
    color: var(--primary);
    font-size: 0.7rem;
}

.job-desc {
    font-family: var(--font-text);
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.careers-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    border: 1px solid var(--border-glass);
    background: var(--bg-glass);
}

.careers-cta p {
    font-family: var(--font-text);
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* === CONTACT PAGE === */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
}

.contact-form-container {
    padding: 40px;
}

.contact-form-container h2 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.6rem;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    font-family: var(--font-text);
    font-size: 0.9rem;
    outline: none;
    transition: all var(--transition);
    resize: vertical;
}

.form-group select {
    appearance: none;
    cursor: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.input-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-main);
    transition: width var(--transition);
}

.form-group input:focus ~ .input-glow,
.form-group textarea:focus ~ .input-glow,
.form-group select:focus ~ .input-glow {
    width: 100%;
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-info-card {
    padding: 25px;
    text-align: center;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.contact-info-card h3 {
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.contact-info-card a,
.contact-info-card p {
    font-family: var(--font-text);
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-decoration: none;
}

.contact-info-card a:hover {
    color: var(--primary);
}

.contact-social-links {
    padding: 25px;
    text-align: center;
}

.contact-social-links h3 {
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.social-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* === DEMO SECTION === */
.demo-section {
    background: linear-gradient(to bottom, transparent, rgba(0, 240, 255, 0.02), transparent);
}

.demo-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.demo-content p {
    font-family: var(--font-text);
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.demo-note {
    display: block;
    font-family: var(--font-text);
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 15px;
}

.demo-visual {
    position: relative;
}

.demo-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border: 1px solid var(--border-glass);
}

.demo-fps-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-end;
}

.fps-counter {
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 1px;
    color: #00ff88;
    background: rgba(0, 0, 0, 0.6);
    padding: 4px 10px;
}

.fps-ping {
    font-family: var(--font-display);
    font-size: 0.6rem;
    letter-spacing: 1px;
    color: var(--primary);
    background: rgba(0, 0, 0, 0.6);
    padding: 4px 10px;
}

/* === LEGAL PAGES === */
.legal-section .legal-content {
    padding: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--primary);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-top: 25px;
    margin-bottom: 10px;
}

.legal-content p {
    font-family: var(--font-text);
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    padding-left: 25px;
    margin-bottom: 15px;
}

.legal-content li {
    font-family: var(--font-text);
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 5px;
}

.legal-content a {
    color: var(--primary);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px 15px;
    text-align: left;
    font-family: var(--font-text);
    font-size: 0.85rem;
    border-bottom: 1px solid var(--border-glass);
}

.cookie-table th {
    font-family: var(--font-display);
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--primary);
    text-transform: uppercase;
    background: rgba(0, 240, 255, 0.03);
}

.cookie-table td {
    color: var(--text-secondary);
}

/* === FOOTER === */
#main-footer {
    padding: 80px 0 30px;
    position: relative;
    border-top: 1px solid var(--border-glass);
    background: rgba(5, 5, 5, 0.95);
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 1px;
    background: var(--gradient-main);
    box-shadow: 0 0 60px var(--primary), 0 0 120px var(--secondary);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 15px;
}

.footer-tagline {
    font-family: var(--font-text);
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-glass);
    color: var(--text-muted);
    text-decoration: none;
    transition: all var(--transition);
}

.footer-social a:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.15);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--text-primary);
}

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

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    font-family: var(--font-text);
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition);
}

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

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

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

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-family: var(--font-text);
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/* === SOUND TOGGLE === */
.sound-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--border-glass);
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1rem;
    cursor: none;
    z-index: 9999;
    transition: all var(--transition);
}

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

.sound-toggle.active {
    color: var(--primary);
    border-color: var(--primary);
    box-shadow: var(--glow-cyan);
}

/* === REVEAL ANIMATIONS === */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}