﻿/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff7a45;
    --primary-dark: #e85b1e;
    --secondary-color: #4f9cff;
    --accent-color: #ffe066;
    --dark-bg: #fffaf2;
    --dark-secondary: #fff3de;
    --dark-tertiary: #ffe3b4;
    --text-primary: #2b1d14;
    --text-secondary: #6d4e3d;
    --text-muted: #92715e;
    --text-on-accent: #2b1d14;
    --gradient-primary: linear-gradient(135deg, #ff7a45 0%, #ffb347 52%, #ffd36b 100%);
    --gradient-secondary: linear-gradient(135deg, #4f9cff 0%, #89c2ff 100%);
    --gradient-hero: radial-gradient(ellipse 100% 80% at 50% -10%, rgba(255, 122, 69, 0.2), transparent 55%),
        linear-gradient(180deg, rgba(79, 156, 255, 0.08) 0%, transparent 42%);
    --glass: rgba(255, 255, 255, 0.85);
    --glass-border: #2b1d14;
    --shadow-sm: 0 2px 0 rgba(43, 29, 20, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    --shadow-md: 0 6px 0 rgba(43, 29, 20, 0.2), 0 14px 26px rgba(255, 122, 69, 0.2);
    --shadow-lg: 0 10px 0 rgba(43, 29, 20, 0.22), 0 20px 34px rgba(79, 156, 255, 0.2);
    --shadow-xl: 0 14px 0 rgba(43, 29, 20, 0.25), 0 28px 42px rgba(255, 122, 69, 0.24);
    --shadow-glow: 0 0 0 rgba(0, 0, 0, 0);
    --light-glow: 0 0 0 rgba(0, 0, 0, 0);
    --light-leak: radial-gradient(ellipse 120% 60% at 50% -20%, rgba(255, 224, 102, 0.3), transparent 60%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', 'Segoe UI', sans-serif;
    background-color: var(--dark-bg);
    background-image:
        radial-gradient(circle at 20% 20%, rgba(255, 122, 69, 0.18), transparent 40%),
        radial-gradient(circle at 85% 60%, rgba(79, 156, 255, 0.15), transparent 48%);
    color: var(--text-primary);
    line-height: 1.65;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: var(--light-leak);
    pointer-events: none;
    z-index: 0;
}

/* Fun grain overlay */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E"),
        radial-gradient(ellipse at center, transparent 40%, rgba(4, 6, 16, 0.8) 100%);
    opacity: 0.04;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 244, 224, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 3px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 236, 204, 0.97);
    box-shadow: var(--shadow-md), var(--shadow-glow);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #fff5dd 0%, #ffe3b4 100%);
    border-radius: 14px;
    color: var(--primary-dark);
    border: 3px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
}

.logo-icon-road {
    border-radius: 4px;
}

.logo-text {
    font-family: 'Baloo 2', sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: var(--text-primary);
    background: none;
    text-transform: none;
    -webkit-text-fill-color: var(--text-primary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-nav {
    padding: 10px 22px;
    background: linear-gradient(180deg, #fff4db 0%, #ffe4bb 100%);
    color: var(--primary-dark);
    font-family: 'Baloo 2', sans-serif;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.01em;
    text-transform: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid var(--glass-border);
    box-shadow: var(--shadow-md);
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 0 100px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

/* Light leak overlay - 鍏夋劅 */
.hero-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    pointer-events: none;
}

.hero-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 229, 255, 0.08) 2px,
        rgba(0, 229, 255, 0.08) 4px
    );
    opacity: 0.35;
    pointer-events: none;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    animation: float 24s infinite ease-in-out;
    mix-blend-mode: screen;
}

.orb-1 {
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.4) 0%, transparent 65%);
    top: -160px;
    left: -120px;
}

.orb-2 {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(111, 43, 255, 0.4) 0%, transparent 65%);
    bottom: -120px;
    right: -80px;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 43, 214, 0.2) 0%, transparent 68%);
    top: 50%;
    left: 60%;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.08);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(90deg, rgba(0, 229, 255, 0.08) 1px, transparent 1px),
        linear-gradient(0deg, rgba(111, 43, 255, 0.08) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: 0.5;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    background: linear-gradient(180deg, #fff8e9 0%, #ffe8c5 100%);
    backdrop-filter: none;
    border: 3px solid var(--glass-border);
    border-radius: 999px;
    font-family: 'Baloo 2', sans-serif;
    font-size: 12px;
    letter-spacing: 0.02em;
    color: var(--primary-dark);
    margin-bottom: 36px;
    box-shadow: var(--shadow-md);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.hero-title {
    font-family: 'Baloo 2', sans-serif;
    font-size: clamp(36px, 6vw, 58px);
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.title-line {
    display: block;
}

.title-line.highlight {
    font-style: normal;
    background: linear-gradient(120deg, #ff7a45 0%, #4f9cff 50%, #ffb347 85%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: none;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 48px;
    line-height: 1.85;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 72px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #2b1d14;
    border-radius: 999px;
    border: 3px solid var(--glass-border);
    font-family: 'Baloo 2', sans-serif;
    text-transform: none;
    letter-spacing: 0.02em;
    font-size: 14px;
    box-shadow: var(--shadow-md), var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 0 36px rgba(0, 229, 255, 0.38);
}

.btn-secondary {
    background: transparent;
    backdrop-filter: none;
    color: var(--accent-color);
    border: 3px solid var(--glass-border);
    border-radius: 999px;
    font-family: 'Baloo 2', sans-serif;
    text-transform: none;
    letter-spacing: 0.02em;
    font-size: 14px;
}

.btn-secondary:hover {
    background: rgba(255, 43, 214, 0.12);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--light-glow);
}

.hero-stats {
    display: flex;
    gap: 56px;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 64px;
    border-top: 2px dashed var(--glass-border);
}

.stat-box {
    text-align: center;
}

.stat-number {
    font-family: 'Baloo 2', sans-serif;
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-label-only {
    padding-top: 1.2em;
    margin-top: -0.5em;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 12px;
    z-index: 1;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(12px);
    }
}

/* Games Section */
.games-section {
    padding: 140px 0;
    position: relative;
}

.games-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 45%;
    background: radial-gradient(ellipse 85% 100% at 50% 0%, rgba(232, 93, 44, 0.08), transparent 70%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: var(--glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 2px;
    font-family: 'Baloo 2', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Baloo 2', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 600;
    margin-bottom: 16px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.games-showcase {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.featured-game {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lg);
}

.game-media {
    position: relative;
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
}

.game-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.featured-image-1 {
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 122, 69, 0.34), transparent 55%),
        linear-gradient(180deg, #ffe5c2 0%, #ffd09a 65%, #ffc27d 100%);
    box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.5);
}

.game-image-2 {
    background: linear-gradient(165deg, #ffe6c5 0%, #ffd5a7 55%, #ffc98c 100%);
}

.game-image-3 {
    background: linear-gradient(165deg, #d9ebff 0%, #b8dcff 50%, #95cbff 100%);
}

.game-image-4 {
    background: linear-gradient(165deg, #fff0b5 0%, #ffe58a 65%, #ffd86a 100%);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(9, 12, 30, 0.96) 78%);
    display: flex;
    align-items: flex-end;
    padding: 48px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.featured-game:hover .game-overlay,
.game-card:hover .game-overlay {
    opacity: 1;
}

.game-info {
    max-width: 600px;
}

.game-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
}

.game-badge.new {
    background: linear-gradient(90deg, #e85d2c 0%, #ff8c42 50%, #e85d2c 100%);
    color: var(--text-on-accent);
    font-family: 'Baloo 2', sans-serif;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid #ffc107;
}

.game-badge.popular {
    background: var(--accent-color);
    color: var(--dark-bg);
}

.game-badge.coming-soon {
    background: var(--secondary-color);
    color: var(--text-on-accent);
}

.game-badge.award {
    background: linear-gradient(135deg, #8b979f 0%, #b49ead 55%, #8fa99a 100%);
    color: var(--text-on-accent);
}

.game-title-large {
    font-family: 'Baloo 2', sans-serif;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 16px;
}

.game-description-large {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.game-meta {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.meta-tag {
    padding: 6px 12px;
    background: rgba(26, 24, 22, 0.9);
    border: 1px solid var(--glass-border);
    border-radius: 2px;
    font-size: 12px;
    color: var(--text-secondary);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

/* 鍙犲姞锛氬崱鐗囬敊钀藉厜鎰?*/
.game-card {
    background: var(--glass);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
}

/* 鍙犲姞锛氬崱鐗囪交寰敊钀?*/
@media (min-width: 768px) {
    .games-grid .game-card:nth-child(odd) { margin-top: 8px; }
    .games-grid .game-card:nth-child(even) { margin-top: 20px; }
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), 0 0 32px rgba(0, 229, 255, 0.28);
    border-color: rgba(0, 229, 255, 0.45);
}

.game-card .game-image {
    height: 240px;
}

.game-link {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    border: 3px solid var(--glass-border);
    transition: all 0.3s ease;
}

.game-link:hover {
    background: var(--accent-color);
    color: var(--text-on-accent);
    transform: translate(-50%, -50%) scale(1.1);
}

.game-content {
    padding: 24px;
}

.game-title {
    font-family: 'Baloo 2', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.game-genre {
    color: var(--primary-color);
    font-size: 14px;
    margin-bottom: 12px;
}

.game-description {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* Studio Section - 閫忔皵 + 鍏夋劅 */
.studio-section {
    padding: 140px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(90, 55, 40, 0.12) 40%, transparent 100%);
    position: relative;
}

.studio-section::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 0;
    width: 50%;
    height: 60%;
    background: radial-gradient(ellipse at right, rgba(232, 93, 44, 0.08), transparent 62%);
    pointer-events: none;
}

.studio-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: center;
}

.studio-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.studio-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.value-item {
    text-align: center;
    padding: 24px;
    background: rgba(26, 24, 22, 0.75);
    border-radius: 4px;
    border: 1px solid var(--glass-border);
}

.value-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.value-item h4 {
    font-family: 'Baloo 2', sans-serif;
    font-size: 20px;
    margin-bottom: 8px;
}

.value-item p {
    color: var(--text-secondary);
    font-size: 14px;
}

.studio-visual {
    position: relative;
    height: 500px;
}

.studio-image-placeholder {
    width: 100%;
    height: 100%;
    background:
        repeating-linear-gradient(-8deg, transparent, transparent 40px, rgba(232, 93, 44, 0.04) 40px, rgba(232, 93, 44, 0.04) 42px),
        linear-gradient(145deg, #2a2622 0%, #1a1816 50%, #12110f 100%);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--glass-border);
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.45), var(--shadow-md);
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(232, 93, 44, 0.35);
    border-radius: 4px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: floatCard 6s infinite ease-in-out;
    box-shadow: 0 0 32px rgba(255, 255, 255, 0.05);
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 15%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.card-icon {
    font-size: 32px;
}

.card-text {
    font-size: 14px;
    font-weight: 600;
}

/* Careers Section */
.careers-section {
    padding: 140px 0;
    position: relative;
}

.careers-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: radial-gradient(ellipse 70% 100% at 50% 100%, rgba(232, 93, 44, 0.06), transparent 70%);
    pointer-events: none;
}

.careers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin-bottom: 56px;
}

.career-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 36px;
    transition: all 0.3s ease;
    box-shadow: 0 0 22px rgba(0, 0, 0, 0.35);
}

.career-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), 0 0 28px rgba(232, 93, 44, 0.15);
    border-color: rgba(232, 93, 44, 0.3);
}

.career-header {
    margin-bottom: 16px;
}

.career-title {
    font-family: 'Baloo 2', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.career-type {
    color: var(--primary-color);
    font-size: 14px;
}

.career-description {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.career-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.tag {
    padding: 6px 12px;
    background: rgba(26, 24, 22, 0.9);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    font-size: 12px;
    color: var(--accent-color);
}

.career-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.career-link:hover {
    color: var(--primary-dark);
}

.careers-cta {
    text-align: center;
    padding: 56px 48px;
    background: var(--glass);
    backdrop-filter: blur(20px);
    border-radius: 28px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.03);
}

.careers-cta p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 18px;
}

/* News Section */
.news-section {
    padding: 140px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(40, 34, 28, 0.5) 50%, transparent 100%);
    position: relative;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.news-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), 0 0 32px rgba(232, 93, 44, 0.12);
    border-color: rgba(232, 93, 44, 0.28);
}

.news-card.featured-news {
    grid-column: span 2;
}

.news-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.featured-news .news-image {
    height: 300px;
}

.news-image-1 {
    background: linear-gradient(160deg, #192b61 0%, #101f48 55%, #090f22 100%);
}

.news-image-2 {
    background: linear-gradient(160deg, #5424a0 0%, #28185d 60%, #0d1030 100%);
}

.news-image-3 {
    background: linear-gradient(160deg, #004a7d 0%, #112a53 50%, #090f26 100%);
}

.news-content {
    padding: 32px;
}

.news-date {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}

.news-title {
    font-family: 'Baloo 2', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.news-excerpt {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.news-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.news-link:hover {
    color: var(--primary-dark);
}

/* Contact Section */
.contact-section {
    padding: 140px 0;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: radial-gradient(ellipse 80% 80% at 50% 0%, rgba(232, 93, 44, 0.1), transparent 60%);
    pointer-events: none;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
}

.contact-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 48px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 48px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--glass);
    backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
    box-shadow: 0 0 16px rgba(232, 93, 44, 0.12);
}

.contact-item h4 {
    font-family: 'Baloo 2', sans-serif;
    font-size: 18px;
    margin-bottom: 8px;
}

.contact-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-item p a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item p a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.social-link {
    padding: 12px 24px;
    background: var(--glass);
    backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(232, 93, 44, 0.12);
    color: var(--accent-color);
    border-color: rgba(232, 93, 44, 0.45);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.contact-form {
    background: var(--glass);
    backdrop-filter: blur(24px);
    padding: 48px;
    border-radius: 6px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(232, 93, 44, 0.12);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(26, 24, 22, 0.95);
    box-shadow: 0 0 0 2px rgba(232, 93, 44, 0.35), 0 0 20px rgba(184, 255, 74, 0.08);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #161412 0%, #12110f 40%, #0d0c0b 100%);
    border-top: 1px solid var(--glass-border);
    padding: 96px 0 40px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232, 93, 44, 0.35), transparent);
    opacity: 0.85;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 48px 56px;
    margin-bottom: 48px;
    align-items: start;
}

.footer-tagline {
    color: var(--text-secondary);
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.6;
    max-width: 320px;
}

.footer-title {
    font-family: 'Baloo 2', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
    flex-wrap: wrap;
    gap: 24px;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 24px;
}

.footer-social a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .studio-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px 32px;
    }

    .news-card.featured-news {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--dark-bg);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 32px 0;
        border-top: 1px solid var(--glass-border);
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 16px;
    }

    .hamburger {
        display: flex;
    }

    .btn-nav {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        gap: 32px;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .studio-values {
        grid-template-columns: 1fr;
    }

    .careers-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-brand .footer-tagline {
        max-width: none;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .section-title {
        font-size: 32px;
    }

    .game-media {
        height: 400px;
    }

    .contact-form {
        padding: 32px 24px;
    }
}

/* American cartoon finish */
.logo-text,
.hero-title,
.section-title,
.game-title-large,
.stat-number,
.news-title {
    font-family: 'Baloo 2', sans-serif;
    letter-spacing: 0.04em;
}

