/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --midnight-50: #eef2ff;
    --midnight-100: #e0e7ff;
    --midnight-200: #c7d2fe;
    --midnight-300: #a5b4fc;
    --midnight-400: #818cf8;
    --midnight-500: #6366f1;
    --midnight-600: #4f46e5;
    --midnight-700: #4338ca;
    --midnight-800: #1e1b4b;
    --midnight-900: #0f0e17;
    --midnight-950: #050508;
    --tiger-default: #ff8a3d;
    --tiger-glow: #ffbd7a;
    --tiger-dim: #994510;
    --chill-default: #a78bfa;
    --chill-glow: #c4b5fd;
}

body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--midnight-950);
    color: var(--midnight-100);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}

/* Background Animation */
.vibe-background {
    position: fixed;
    inset: 0;
    z-index: -50;
    overflow: hidden;
    background: var(--midnight-950);
}

.blob {
    position: absolute;
    width: 384px;
    height: 384px;
    border-radius: 50%;
    mix-blend-mode: multiply;
    filter: blur(128px);
    opacity: 0.2;
    animation: blob 7s infinite;
}

.blob-1 {
    top: 0;
    left: 25%;
    background: #4f46e5;
}

.blob-2 {
    top: 0;
    right: 25%;
    background: #9333ea;
    animation-delay: 2s;
}

.blob-3 {
    bottom: -128px;
    left: 33%;
    background: var(--tiger-dim);
    animation-delay: 4s;
}

@keyframes blob {
    0%, 100% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.noise-overlay {
    position: absolute;
    inset: 0;
    background-image: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.2;
    brightness: 100%;
    contrast: 150%;
}

.gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--midnight-950), transparent, transparent);
}

/* Glass Panel Effect */
.glass-panel {
    background: rgba(15, 14, 23, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Navbar */
.navbar {
    display: none;
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
}

@media (min-width: 768px) {
    .navbar {
        display: flex;
    }
}

.navbar {
    background: rgba(15, 14, 23, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 9999px;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    cursor: pointer;
    margin-right: 16px;
}

.brand-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(to bottom right, var(--tiger-default), var(--tiger-dim));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--midnight-950);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.brand-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.025em;
    color: white;
}

.brand-accent {
    color: var(--tiger-default);
}

.navbar-divider {
    height: 24px;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 8px;
}

.navbar-items {
    display: flex;
    gap: 4px;
}

.nav-item {
    position: relative;
    padding: 8px 20px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
    background: transparent;
    color: var(--midnight-300);
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
}

.nav-item:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.nav-item.active {
    color: var(--midnight-950);
    background: white;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.nav-icon {
    display: none;
}

.nav-item.active .nav-icon {
    display: block;
    animation: pulse 2s infinite;
}

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

/* Mobile Navbar */
.mobile-navbar {
    display: block;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    background: rgba(15, 14, 23, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .mobile-navbar {
        display: none;
    }
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
}

.mobile-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.mobile-menu-toggle {
    color: white;
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 40;
    background: rgba(5, 5, 8, 0.95);
    backdrop-filter: blur(24px);
    padding-top: 96px;
    padding-left: 24px;
    padding-right: 24px;
    display: none;
}

.mobile-menu-overlay.open {
    display: block;
}

@media (min-width: 768px) {
    .mobile-menu-overlay {
        display: none !important;
    }
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-menu-item {
    padding: 16px;
    border-radius: 12px;
    text-align: left;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--midnight-900);
    color: var(--midnight-300);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.mobile-menu-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.mobile-menu-item.active {
    background: var(--tiger-default);
    color: var(--midnight-950);
    border-color: var(--tiger-glow);
}

/* Main Content */
.main-content {
    flex: 1;
    position: relative;
    z-index: 10;
    padding-top: 112px;
}

.view {
    min-height: calc(100vh - 112px);
    padding-bottom: 48px;
}

/* Parallax Hero Section */
.parallax-hero {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    pointer-events: auto;
}

#view-HOME {
    position: relative;
    z-index: 10;
}

/* Hero Content Overlay */
.hero-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    padding: 112px 16px 48px;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    pointer-events: auto;
}

.hero-title-large {
    font-family: 'Outfit', sans-serif;
    font-size: 64px;
    font-weight: 900;
    color: white;
    margin-bottom: 24px;
    line-height: 0.9;
    letter-spacing: -0.025em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
    .hero-title-large {
        font-size: 96px;
    }
}

.hero-description-large {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .hero-description-large {
        font-size: 24px;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 200px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 25;
    pointer-events: none;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Home Content Sections */
.home-content-sections {
    position: relative;
    z-index: 10;
    background: var(--midnight-950);
    padding-top: 0;
    margin-top: 0;
}

.content-section {
    padding: 80px 0;
}

.content-section-alt {
    background: rgba(15, 14, 23, 0.5);
}

.section-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: white;
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.section-description {
    font-size: 16px;
    color: var(--midnight-300);
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Philosophy Grid */
.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 48px;
}

@media (min-width: 768px) {
    .philosophy-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.philosophy-card {
    padding: 32px;
    border-radius: 24px;
    transition: transform 0.3s, background-color 0.3s;
}

.philosophy-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.05);
}

.philosophy-title {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.philosophy-text {
    color: var(--midnight-300);
    line-height: 1.6;
    font-size: 16px;
}

/* Features List */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 48px;
}

.feature-item {
    display: flex;
    gap: 24px;
    padding: 32px;
    border-radius: 24px;
    align-items: flex-start;
    transition: transform 0.3s, background-color 0.3s;
}

.feature-item:hover {
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.05);
}

.feature-number {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: var(--tiger-default);
    line-height: 1;
    flex-shrink: 0;
    min-width: 60px;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.feature-text {
    color: var(--midnight-300);
    line-height: 1.6;
    font-size: 16px;
}

/* CTA Section */
.cta-section {
    padding: 64px 48px;
    border-radius: 32px;
    text-align: center;
    margin-top: 48px;
}

.cta-title {
    font-family: 'Outfit', sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: white;
    margin-bottom: 16px;
}

.cta-text {
    font-size: 20px;
    color: var(--midnight-300);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.parallax-layer {
    position: absolute;
    width: 100%;
    height: 120%;
    background-position: bottom center;
    background-size: cover;
    background-repeat: no-repeat;
    will-change: transform;
}

.parallax-layer.parallax-scrim {
    background: linear-gradient(to bottom, transparent 0%, var(--midnight-950) 100%);
    opacity: 0.6;
    z-index: 6;
    pointer-events: none;
}

/* Parallax Layer Backgrounds - Using gradients and shapes matching the design */
#parallax-layer-0 {
    background-image: url('assets/parallax0.png');
    z-index: 1;
}

#parallax-layer-1 {
    background-image: url('assets/parallax1.png');
    z-index: 2;
}

#parallax-layer-2 {
    background-image: url('assets/parallax2.png');
    z-index: 3;
}

#parallax-layer-3 {
    background-image: url('assets/parallax3.png');
    z-index: 4;
}

#parallax-layer-4 {
    background-image: url('assets/parallax4.png');
    z-index: 5;
}

#parallax-layer-5 {
    background-image: url('assets/parallax5.png');
    z-index: 6;
}

#parallax-layer-6 {
    background-image: url('assets/parallax6.png');
    z-index: 7;
}

#parallax-layer-7 {
    background-image: url('assets/parallax7.png');
    z-index: 8;
}

/* Optional: Add mountain/silhouette shapes using CSS */
#parallax-layer-4::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: 
        linear-gradient(to top, rgba(30, 27, 75, 0.3) 0%, transparent 100%),
        url("data:image/svg+xml,%3Csvg width='1200' height='400' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,400 L200,350 L400,380 L600,300 L800,320 L1000,280 L1200,300 L1200,400 Z' fill='%231e1b4b' opacity='0.3'/%3E%3C/svg%3E") bottom center / cover no-repeat;
    opacity: 0.4;
}

#parallax-layer-5::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: 
        linear-gradient(to top, rgba(15, 14, 23, 0.4) 0%, transparent 100%),
        url("data:image/svg+xml,%3Csvg width='1200' height='500' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,500 L150,450 L300,420 L450,400 L600,380 L750,360 L900,340 L1050,320 L1200,300 L1200,500 Z' fill='%230f0e17' opacity='0.3'/%3E%3C/svg%3E") bottom center / cover no-repeat;
    opacity: 0.3;
}

/* Make parallax layers fixed for scroll effect */
.parallax-layer[data-speed] {
    position: fixed;
    top: 0;
    left: 0;
}

/* Mobile optimizations - reduce parallax effect on mobile */
@media (max-width: 768px) {
    .parallax-hero {
        height: 80vh;
    }
    
    .parallax-layer[data-speed] {
        /* Reduce parallax intensity on mobile for better performance */
        transform: translate3d(0, 0, 0) !important;
    }
}

/* Disable parallax on very small screens for performance */
@media (max-width: 480px) {
    .parallax-hero {
        display: none;
    }
}

/* Home View */
.home-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 16px 48px;
    position: relative;
    z-index: 10;
}

.home-content-sections .home-container {
    padding-top: 80px;
}

.home-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

@media (min-width: 1024px) {
    .home-grid {
        grid-template-columns: 7fr 5fr;
    }
}

.home-card-main {
    border-radius: 40px;
    padding: 48px;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .home-card-main {
        padding: 96px;
    }
}

.card-glow {
    position: absolute;
    top: 0;
    right: 0;
    padding: 48px;
    background: var(--tiger-default);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.1;
    transition: opacity 0.3s;
}

.home-card-main:hover .card-glow {
    opacity: 0.2;
}

.card-content {
    position: relative;
    z-index: 10;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    border-radius: 9999px;
    background: rgba(5, 5, 8, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--tiger-default);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--tiger-default);
    animation: pulse 2s infinite;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: white;
    margin-bottom: 24px;
    line-height: 0.9;
    letter-spacing: -0.025em;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 72px;
    }
}

.hero-accent {
    color: transparent;
    background: linear-gradient(to right, var(--tiger-default), var(--tiger-glow));
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: var(--midnight-200);
    margin-bottom: 32px;
    max-width: 512px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.home-card-featured {
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    cursor: pointer;
}

@media (min-width: 1024px) {
    .home-card-featured {
        min-height: auto;
    }
}

.featured-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, var(--midnight-800), var(--midnight-950));
    z-index: 0;
}

.featured-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: all 0.7s;
}

.home-card-featured:hover .featured-image {
    opacity: 0.8;
    transform: scale(1.05);
}

.featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--midnight-950), rgba(5, 5, 8, 0.5), transparent);
}

.featured-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 32px;
    z-index: 10;
    width: 100%;
}

.featured-label {
    display: block;
    color: var(--tiger-default);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.featured-title {
    font-family: 'Outfit', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.featured-description {
    font-size: 14px;
    color: var(--midnight-300);
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-arrow {
    position: absolute;
    right: 32px;
    bottom: 32px;
    background: white;
    color: var(--midnight-950);
    padding: 12px;
    border-radius: 50%;
    transition: transform 0.3s;
}

.home-card-featured:hover .featured-arrow {
    transform: scale(1.1);
}

.quote-strip {
    border-radius: 24px;
    padding: 24px;
    text-align: center;
    margin-bottom: 48px;
    border-left: 4px solid var(--chill-default);
}

.quote-text {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    color: white;
    font-style: italic;
}

.quote-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--midnight-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 8px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .info-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.info-card {
    padding: 24px;
    border-radius: 24px;
    transition: background-color 0.3s;
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.05);
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: var(--midnight-800);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tiger-default);
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-icon-chill {
    color: var(--chill-default);
}

.info-icon-pink {
    color: #f472b6;
}

.info-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: white;
    font-size: 18px;
    margin-bottom: 8px;
}

.info-text {
    color: var(--midnight-300);
    font-size: 14px;
}

/* Games View */
.games-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 128px 16px 48px;
}

.games-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 32px;
}

.games-title {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: white;
    margin-bottom: 8px;
}

.games-subtitle {
    color: var(--midnight-300);
}

.games-count {
    display: none;
    text-align: right;
}

@media (min-width: 768px) {
    .games-count {
        display: block;
    }
}

.games-count-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--midnight-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.games-count-number {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.games-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.game-card {
    background: rgba(15, 14, 23, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.game-card:hover {
    border-color: rgba(255, 138, 61, 0.3);
}

.game-card-image {
    height: 256px;
    overflow: hidden;
    position: relative;
}

.game-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

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

.game-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 14, 23, 0.4);
    transition: background-color 0.5s;
    z-index: 10;
}

.game-card:hover .game-card-overlay {
    background: transparent;
}

.game-status {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 20;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.game-status.live {
    background: rgba(34, 197, 94, 0.2);
    color: #86efac;
    border-color: rgba(34, 197, 94, 0.3);
}

.game-status.development {
    background: rgba(234, 179, 8, 0.2);
    color: #fde047;
    border-color: rgba(234, 179, 8, 0.3);
}

.game-card-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    background: rgba(5, 5, 8, 0.3);
}

.game-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.game-card:hover .game-card-title {
    color: var(--tiger-default);
}

.game-card-description {
    color: var(--midnight-300);
    margin-bottom: 32px;
    flex-grow: 1;
    font-size: 14px;
    line-height: 1.6;
}

/* About View */
.about-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 128px 16px 48px;
}

.about-header {
    border-radius: 48px;
    padding: 48px;
    margin-bottom: 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 138, 61, 0.1), transparent);
    pointer-events: none;
}

.about-title {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: white;
    margin-bottom: 24px;
    position: relative;
    z-index: 10;
}

.about-description {
    font-size: 20px;
    color: var(--midnight-200);
    max-width: 512px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.team-card {
    background: rgba(15, 14, 23, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px;
    border-radius: 32px;
    transition: all 0.3s;
}

.team-card:hover {
    background: rgba(255, 255, 255, 0.05);
}

.team-avatar-wrapper {
    position: relative;
    margin-bottom: 24px;
    margin-left: auto;
    margin-right: auto;
    width: 128px;
    height: 128px;
}

.team-avatar-glow {
    position: absolute;
    inset: -8px;
    background: linear-gradient(to bottom right, var(--tiger-default), var(--chill-default));
    border-radius: 50%;
    opacity: 0;
    filter: blur(16px);
    transition: opacity 0.3s;
}

.team-card:hover .team-avatar-glow {
    opacity: 0.5;
}

.team-avatar {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--midnight-800);
    transition: border-color 0.3s;
}

.team-card:hover .team-avatar {
    border-color: rgba(255, 255, 255, 0.2);
}

.team-info {
    text-align: center;
}

.team-name {
    font-size: 20px;
    font-weight: 700;
    color: white;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.team-role {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 4px 12px;
    background: var(--midnight-900);
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.team-role-icon {
    width: 12px;
    height: 12px;
    color: var(--tiger-default);
}

.team-role-text {
    color: var(--tiger-default);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.team-bio {
    color: var(--midnight-400);
    font-size: 14px;
    line-height: 1.6;
}

/* Contact View */
.contact-container {
    max-width: 896px;
    margin: 0 auto;
    padding: 128px 16px 48px;
}

.contact-card {
    border-radius: 40px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
    .contact-card {
        padding: 48px;
    }
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-icon {
    display: inline-flex;
    padding: 16px;
    border-radius: 16px;
    background: var(--midnight-950);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--chill-default);
    margin-bottom: 24px;
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.1);
}

.contact-title {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.contact-subtitle {
    color: var(--midnight-300);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--midnight-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    margin-left: 4px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 16px 24px;
    border-radius: 16px;
    background: rgba(5, 5, 8, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    transition: all 0.3s;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--midnight-600);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    ring: 2px;
    ring-color: var(--tiger-default);
    background: var(--midnight-950);
}

.contact-links {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    gap: 24px;
}

.contact-link {
    color: var(--midnight-400);
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
}

.contact-link:hover {
    color: white;
}

/* Game View */
.game-container {
    padding-top: 112px;
    padding-bottom: 48px;
}

.game-back-button {
    max-width: 896px;
    margin: 0 auto 24px;
    padding: 0 16px;
}

/* Root Words Game */
.root-words-game {
    max-width: 896px;
    margin: 0 auto;
    padding: 0 16px;
}

.game-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    background: rgba(15, 14, 23, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px;
    border-radius: 16px;
}

.game-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.game-header-icon {
    padding: 12px;
    background: var(--midnight-950);
    border-radius: 12px;
    color: var(--tiger-default);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.1);
}

.game-header-score {
    display: flex;
    flex-direction: column;
}

.game-header-label {
    font-size: 10px;
    color: var(--midnight-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.game-header-value {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.game-header-center {
    display: none;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 768px) {
    .game-header-center {
        display: flex;
    }
}

.game-header-title {
    font-family: 'Outfit', sans-serif;
    color: white;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.05em;
    font-size: 14px;
    text-transform: uppercase;
}

.game-header-progress {
    height: 4px;
    width: 96px;
    background: var(--midnight-950);
    border-radius: 9999px;
    margin-top: 8px;
    overflow: hidden;
}

.game-header-progress-bar {
    height: 100%;
    background: var(--chill-default);
    animation: pulse 2s infinite;
    width: 60%;
}

.game-header-right {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: right;
}

.game-header-streak {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
}

.game-challenge-card {
    background: rgba(15, 14, 23, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.game-challenge-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--tiger-default), var(--chill-default), var(--tiger-default));
    opacity: 0.5;
}

.game-question-section {
    padding: 32px;
    text-align: center;
    position: relative;
    z-index: 10;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05), transparent);
}

@media (min-width: 768px) {
    .game-question-section {
        padding: 64px;
    }
}

.game-origin-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(5, 5, 8, 0.5);
    color: var(--chill-default);
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 32px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.game-origin-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--chill-default);
    animation: pulse 2s infinite;
}

.game-root-word {
    font-family: 'Outfit', sans-serif;
    font-size: 64px;
    font-weight: 900;
    color: white;
    margin-bottom: 24px;
    letter-spacing: -0.05em;
    text-shadow: 0 0 25px rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .game-root-word {
        font-size: 96px;
    }
}

.game-question-text {
    color: var(--midnight-300);
    font-size: 18px;
    font-weight: 300;
}

@media (min-width: 768px) {
    .game-question-text {
        font-size: 20px;
    }
}

.game-options-grid {
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    background: rgba(5, 5, 8, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
    .game-options-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 40px;
    }
}

.game-option {
    padding: 24px;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s;
    text-align: left;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(30, 27, 75, 0.4);
    color: var(--midnight-200);
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
}

.game-option:hover:not(:disabled) {
    background: var(--midnight-800);
    border-color: rgba(255, 138, 61, 0.5);
    box-shadow: 0 0 15px rgba(255, 138, 61, 0.1);
}

.game-option:disabled {
    cursor: not-allowed;
}

.game-option::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s;
}

.game-option:hover:not(:disabled)::before {
    background: rgba(255, 138, 61, 0.5);
}

.game-option.correct {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.5);
    color: #bbf7d0;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.2);
}

.game-option.incorrect {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.5);
    color: #fecaca;
}

.game-option.disabled {
    opacity: 0.4;
    border-color: transparent;
    background: rgba(5, 5, 8, 0.2);
}

.game-option-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.game-option-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.game-option-number {
    font-size: 12px;
    font-family: monospace;
    color: var(--midnight-500);
    transition: color 0.3s;
}

.game-option:hover:not(:disabled) .game-option-number {
    color: var(--tiger-default);
}

.game-result-section {
    padding: 24px 40px 40px;
    animation: fadeIn 0.5s;
}

@media (min-width: 768px) {
    .game-result-section {
        padding: 24px 40px 40px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.game-result-card {
    background: var(--midnight-900);
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.1);
}

.game-result-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .game-result-content {
        flex-direction: row;
        align-items: flex-start;
    }
}

.game-result-icon {
    padding: 16px;
    background: var(--midnight-950);
    border-radius: 16px;
    color: var(--tiger-default);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.game-result-text {
    flex: 1;
}

.game-result-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: white;
    font-size: 24px;
    margin-bottom: 8px;
}

.game-result-root {
    color: var(--tiger-default);
}

.game-result-examples {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.game-result-example {
    padding: 4px 12px;
    border-radius: 8px;
    background: var(--midnight-950);
    color: var(--chill-default);
    font-size: 14px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.game-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    background: rgba(15, 14, 23, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    padding: 48px;
}

.game-loading-spinner {
    width: 48px;
    height: 48px;
    animation: spin 1s linear infinite;
    margin-bottom: 24px;
    color: var(--tiger-default);
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.game-loading-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 20px;
    animation: pulse 2s infinite;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: white;
}

.game-loading-subtext {
    color: var(--midnight-400);
    margin-top: 8px;
    font-size: 14px;
}

/* Buttons */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s;
    border-radius: 12px;
    overflow: hidden;
    border: none;
    cursor: pointer;
    font-size: 14px;
    padding: 12px 24px;
    outline: none;
    gap: 8px;
}

.btn:focus {
    outline: 2px solid var(--tiger-default);
    outline-offset: 2px;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn:active:not(:disabled) {
    transform: scale(0.95);
}

.btn-primary {
    background: var(--tiger-default);
    color: var(--midnight-950);
    border: 1px solid var(--tiger-glow);
}

.btn-primary:hover:not(:disabled) {
    background: var(--tiger-glow);
    box-shadow: 0 0 20px rgba(255, 138, 61, 0.6);
}

.btn-secondary {
    background: var(--midnight-800);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover:not(:disabled) {
    background: var(--midnight-700);
    border-color: rgba(167, 139, 250, 0.5);
    box-shadow: 0 0 15px rgba(167, 139, 250, 0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--midnight-300);
    padding-left: 0;
}

.btn-ghost:hover:not(:disabled) {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 12px;
}

.w-full {
    width: 100%;
}

/* Footer */
.footer {
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 32px 0;
    margin-top: auto;
    backdrop-filter: blur(4px);
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
    text-align: center;
}

.footer-text {
    color: var(--midnight-500);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Utility Classes */
.hidden {
    display: none;
}

@media (min-width: 768px) {
    .hidden-md {
        display: none;
    }
}

