/* ============================================
   KANEDA GAMES - Web Corporativa
   ============================================ */

/* CSS Variables */
:root {
    --bg-primary: #0D0D0F;
    --bg-secondary: #1A1A1F;
    --bg-tertiary: #222228;
    --accent-gold: #C9A227;
    --accent-gold-light: #E5C84B;
    --accent-red: #8B1C1C;
    --jungle-green: #1A3D2E;
    --text-primary: #F5F0E6;
    --text-secondary: #8A8A8F;
    --text-muted: #5A5A5F;
    --border-color: rgba(245, 240, 230, 0.08);
    
    --font-primary: 'Outfit', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    
    --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-spring: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Noise Overlay */
.noise-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    background: linear-gradient(to bottom, var(--bg-primary), transparent);
    transition: background var(--transition-smooth), backdrop-filter var(--transition-smooth);
}

.header.scrolled {
    background: rgba(13, 13, 15, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

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

.header-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.logo-img {
    height: 48px;
    width: auto;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
}

.lang-btn {
    padding: 0.5rem 0.75rem;
    color: var(--text-muted);
    background: transparent;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    font-weight: 500;
}

.lang-btn:hover {
    color: var(--text-primary);
    background: var(--bg-secondary);
}

.lang-btn.active {
    color: var(--bg-primary);
    background: var(--accent-gold);
    border-color: var(--accent-gold);
}

/* Header Social */
.header-social {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-social .social-link svg {
    width: 22px;
    height: 22px;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.header-social .social-link:hover svg {
    color: var(--accent-gold);
}

/* Navigation Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: width var(--transition-fast);
}

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

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    width: 32px;
    height: 32px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

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

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

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100dvh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 30% 40%, rgba(26, 61, 46, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 70% 20%, rgba(139, 105, 20, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 90% 80%, rgba(139, 28, 28, 0.2) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, var(--bg-primary), transparent);
}

.hero-content {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 4rem;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.hero-text {
    max-width: 620px;
    padding-left: 10%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--accent-gold);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 60ch;
}

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

.hero-visual {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-studio-img {
    width: 105%;
    height: auto;
    max-height: 60vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), #A88B1F);
    color: var(--bg-primary);
    box-shadow: 0 4px 20px -5px rgba(201, 162, 39, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px -5px rgba(201, 162, 39, 0.5);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: rgba(245, 240, 230, 0.3);
    background: rgba(245, 240, 230, 0.05);
}

.btn-steam {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, #1B2838, #2A475E);
    color: var(--text-primary);
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: all var(--transition-fast);
}

.btn-steam:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -5px rgba(27, 40, 56, 0.5);
}

.btn-steam svg {
    width: 24px;
    height: 24px;
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section {
    padding: 6rem 0;
}

.section-dark {
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.games-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin: 0 auto 1rem;
}

.steam-widget-container {
    display: flex;
    justify-content: center;
    margin: 1.5rem 0;
}

.steam-widget-wrapper {
    display: flex;
    justify-content: center;
    padding: 1rem 0;
    background: inherit;
}

.steam-widget-container iframe {
    border-radius: var(--radius-md);
}

.btn-steam-fallback {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    background: #1b2838;
    color: #fff;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    transition: background var(--transition-fast);
}

.btn-steam-fallback svg {
    width: 24px;
    height: 24px;
}

.btn-steam-fallback:hover {
    background: #2a4763;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 60ch;
    margin: 0 auto;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-two-col {
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 3rem;
    align-items: center;
}

.about-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-text p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-studio-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
}

/* ============================================
   GAMES SECTION
   ============================================ */
.games-showcase {
    display: grid;
    gap: 4rem;
}

/* Featured Game - Zaya */
.featured-game {
    display: grid;
    grid-template-columns: 65% 35%;
    gap: 0;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 400px;
    max-height: 450px;
}

.featured-game-visual {
    position: relative;
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    min-height: 400px;
}

.video-link:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    background: rgba(201, 162, 39, 0.9);
    border-radius: 50%;
    padding: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.featured-game-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    background: var(--accent-gold);
    color: var(--bg-primary);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    z-index: 2;
}

.featured-game-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-game-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.featured-game-content .subtitle {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--accent-gold);
    margin-bottom: 0.75rem;
}

.featured-game-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .featured-game {
        grid-template-columns: 1fr;
        max-height: none;
    }
    
    .video-link {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .featured-game-content {
        padding: 1.5rem;
    }
    
    .featured-game-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .featured-game-content h3 {
        font-size: 1.1rem;
    }
    
    .featured-game-content p {
        font-size: 0.85rem;
    }
    
    .video-play-btn {
        padding: 15px;
    }
}

.featured-game-visual {
    position: relative;
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    min-height: 280px;
}

.video-link:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    background: rgba(201, 162, 39, 0.9);
    border-radius: 50%;
    padding: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.featured-game-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    background: var(--accent-gold);
    color: var(--bg-primary);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    z-index: 2;
}

.featured-game-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-game-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.featured-game-content .subtitle {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.featured-game-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.game-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.game-tag {
    padding: 0.25rem 0.5rem;
    background: var(--bg-tertiary);
    border-radius: 100px;
    font-size: 0.65rem;
    color: var(--text-secondary);
}

.game-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.game-feature-icon {
    width: 36px;
    height: 36px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.game-feature-icon svg {
    width: 18px;
    height: 18px;
}

.game-feature span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Game Gallery */
.game-gallery {
    margin-top: 3rem;
}

.game-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.game-gallery-item {
    aspect-ratio: 16/9;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all var(--transition-fast);
    cursor: pointer;
}

.game-gallery-item:hover {
    transform: scale(1.02);
    border-color: var(--accent-gold);
}

.game-gallery-item.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.75rem;
}

/* ============================================
   WORLDS SECTION
   ============================================ */
.worlds-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.world-card {
    position: relative;
    width: calc(33.333% - 1rem);
    max-width: 400px;
    min-width: 280px;
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-primary);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.world-card .world-card-bg {
    position: absolute;
    inset: 0;
    transition: transform var(--transition-smooth);
}

.world-card-video {
    width: 100%;
    height: 55%;
    object-fit: cover;
    object-position: center;
    flex-shrink: 0;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.world-card-content {
    flex: 1;
    padding: 1.25rem 1.5rem;
    background: var(--bg-primary);
    z-index: 2;
}

.world-card-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.world-card-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats {
    padding: 5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

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

.stat-number {
    font-family: var(--font-mono);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 600;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* News Section removed */

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item-icon {
    width: 44px;
    height: 44px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 22px;
    height: 22px;
}

.contact-item-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-item-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.contact-item-content a {
    color: var(--accent-gold);
    transition: opacity var(--transition-fast);
}

.contact-item-content a:hover {
    opacity: 0.8;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.social-link {
    width: 44px;
    height: 44px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Contact Form */
.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-label-optional {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
}

.file-input-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.file-input-wrapper input[type="file"] {
    padding: 0.5rem;
    background: var(--bg-tertiary);
    border: 1px dashed var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    cursor: pointer;
    flex: 1;
}

.file-input-wrapper input[type="file"]:hover {
    border-color: var(--accent-gold);
}

.file-input-wrapper input[type="file"]::file-selector-button {
    padding: 0.5rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    cursor: pointer;
    margin-right: 1rem;
    font-family: var(--font-primary);
    font-size: 0.85rem;
}

.file-input-wrapper input[type="file"]::file-selector-button:hover {
    background: var(--bg-tertiary);
    border-color: var(--accent-gold);
}

.file-name {
    font-size: 0.85rem;
    color: var(--text-muted);
    min-width: 150px;
}

.file-name.error {
    color: #f87171;
}

.form-submit {
    width: 100%;
}

/* Map Container */
.map-container {
    margin-top: 2rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer .container {
    max-width: none !important;
}

.footer-content {
    display: grid !important;
    grid-template-columns: 2fr 1.5fr 1fr 1.5fr !important;
    gap: 3rem;
    margin-bottom: 3rem;
    width: 100% !important;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-top: 1rem;
    max-width: 35ch;
}

.footer-section h4 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    list-style: none;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-gold);
}

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

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

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--text-secondary);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-visual {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .featured-game {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .other-game-card {
        width: calc(50% - 0.75rem);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-right {
        gap: 1rem;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .about-two-col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-studio-img {
        max-width: 300px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .game-features {
        grid-template-columns: 1fr;
    }
    
    .game-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .other-game-card {
        width: calc(50% - 0.75rem);
    }
}
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .other-game-card {
        width: 100%;
    }
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 2rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-smooth);
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu .nav-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    list-style: none;
}

.mobile-menu .nav-links a {
    font-size: 1.1rem;
    color: var(--text-secondary);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    display: block;
}

.mobile-menu .nav-links a:hover {
    color: var(--accent-gold);
}

/* ============================================
   OTHER GAMES SECTION
   ============================================ */
.other-games-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.other-game-card {
    width: calc(25% - 1.125rem);
    min-width: 250px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-smooth);
    text-decoration: none;
}

.other-game-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 162, 39, 0.3);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
}

.other-game-img {
    width: 100%;
    aspect-ratio: 460/215;
    object-fit: contain;
    display: block;
    background: var(--bg-tertiary);
}

.other-game-content {
    padding: 1rem 1.25rem;
}

.platform-icons {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.platform-icons svg {
    width: 18px;
    height: 18px;
    fill: var(--text-muted);
    opacity: 0.7;
}

.platform-icons svg:hover {
    opacity: 1;
}

.other-game-content h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
    color: var(--text-primary);
}

.other-game-content p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.other-game-year {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--accent-gold);
    padding: 0.25rem 0.5rem;
    background: rgba(201, 162, 39, 0.1);
    border-radius: var(--radius-sm);
}

/* ============================================
   CLIENTS SECTION
   ============================================ */
.clients-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.client-logo {
    width: 100%;
    max-width: 150px;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all var(--transition-smooth);
}

.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .client-logo {
        max-width: 120px;
    }
}

@media (max-width: 768px) {
    .client-logo {
        max-width: 100px;
    }
}

@media (max-width: 480px) {
    .client-logo {
        max-width: 80px;
    }
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 1.5rem 2rem;
    animation: slideUp 0.4s ease;
}

.cookie-banner.visible {
    display: block;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

.cookie-banner-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 800px;
}

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

.cookie-banner-buttons .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-banner-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* Map Placeholder */
.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    text-align: center;
    min-height: 300px;
}

.map-placeholder svg {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    opacity: 0.7;
}

.map-placeholder p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.map-placeholder small {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.map-placeholder .btn {
    font-size: 0.85rem;
    padding: 0.75rem 1.5rem;
}

/* ============================================
   FORM CHECKBOX (PRIVACY)
   ============================================ */
.form-checkbox {
    margin-top: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--accent-gold);
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.form-checkbox label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    cursor: pointer;
}

.form-checkbox label a {
    color: var(--accent-gold);
    text-decoration: underline;
    transition: opacity 0.2s;
}

.form-checkbox label a:hover {
    opacity: 0.8;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page {
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 6rem;
}

.legal-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.legal-section {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin-bottom: 1.5rem;
}

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--accent-gold);
}

.legal-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.legal-section p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-info {
    list-style: none;
    padding: 0;
}

.legal-info li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.legal-info li:last-child {
    border-bottom: none;
}

.legal-info li strong {
    color: var(--text-primary);
}

.legal-info a {
    color: var(--accent-gold);
    transition: opacity 0.2s;
}

.legal-info a:hover {
    opacity: 0.8;
}

.legal-list {
    list-style: disc;
    padding-left: 1.5rem;
}

.legal-list li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    padding: 0.25rem 0;
}

.legal-list a {
    color: var(--accent-gold);
    text-decoration: underline;
    transition: opacity 0.2s;
}

.legal-list a:hover {
    opacity: 0.8;
}

.legal-back {
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .legal-page {
        padding-top: 100px;
        padding-bottom: 4rem;
    }
    
    .legal-section {
        padding: 1.5rem;
    }
    
    .legal-section h2 {
        font-size: 1.25rem;
    }
}