/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00d4ff;
    --primary-dark: #00a8cc;
    --secondary-color: #7c3aed;
    --accent-color: #f59e0b;
    --dark-bg: #060a18;
    --dark-secondary: rgba(15, 22, 45, 0.6);
    --dark-tertiary: rgba(30, 38, 73, 0.5);
    --text-primary: #ffffff;
    --text-secondary: #b4b9d1;
    --text-muted: #6b7280;
    --gradient-primary: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    --gradient-secondary: linear-gradient(135deg, #7c3aed 0%, #f59e0b 100%);
    --gradient-hero: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(124, 58, 237, 0.08) 100%);
    --glass: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 60px rgba(0, 212, 255, 0.25);
    --light-glow: 0 0 80px rgba(255, 255, 255, 0.06);
    --light-leak: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 212, 255, 0.15), transparent 70%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: var(--light-leak);
    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(6, 10, 24, 0.5);
    backdrop-filter: blur(24px) saturate(1.2);
    -webkit-backdrop-filter: blur(24px) saturate(1.2);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(6, 10, 24, 0.72);
    box-shadow: var(--shadow-md), var(--light-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: var(--gradient-primary);
    border-radius: 10px;
    color: var(--text-primary);
    box-shadow: 0 0 24px rgba(0, 212, 255, 0.4);
}

.logo-icon-pharmacy {
    border-radius: 8px;
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.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(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-nav {
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.9) 0%, rgba(124, 58, 237, 0.9) 100%);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 32px rgba(0, 212, 255, 0.25);
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 48px rgba(0, 212, 255, 0.35);
}

.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: radial-gradient(ellipse 100% 60% at 50% 0%, rgba(0, 212, 255, 0.12) 0%, transparent 55%),
                radial-gradient(ellipse 80% 40% at 80% 80%, rgba(124, 58, 237, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.45;
    animation: float 20s infinite ease-in-out;
    mix-blend-mode: screen;
}

.orb-1 {
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.5) 0%, rgba(0, 212, 255, 0.2) 40%, transparent 70%);
    top: -220px;
    left: -180px;
    animation-delay: 0s;
    box-shadow: 0 0 120px rgba(0, 212, 255, 0.2);
}

.orb-2 {
    width: 440px;
    height: 440px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.45) 0%, rgba(124, 58, 237, 0.15) 50%, transparent 70%);
    bottom: -120px;
    right: -120px;
    animation-delay: 5s;
    box-shadow: 0 0 100px rgba(124, 58, 237, 0.15);
}

.orb-3 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.35) 0%, transparent 65%);
    top: 55%;
    left: 55%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@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(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.6;
}

.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: 10px 20px;
    background: var(--glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 36px;
    box-shadow: 0 0 24px rgba(0, 212, 255, 0.08);
}

.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: 'Space Grotesk', sans-serif;
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.title-line {
    display: block;
}

.title-line.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 24px rgba(0, 212, 255, 0.25));
}

.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: 12px;
    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: var(--text-primary);
    box-shadow: var(--shadow-glow), 0 0 40px rgba(0, 212, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 64px rgba(0, 212, 255, 0.35), 0 0 32px rgba(255, 255, 255, 0.05);
}

.btn-secondary {
    background: var(--glass);
    backdrop-filter: blur(12px);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    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: 1px solid var(--glass-border);
}

.stat-box {
    text-align: center;
}

.stat-number {
    font-family: 'Space Grotesk', 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(--text-secondary);
    border-radius: 12px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--text-secondary);
    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: 40%;
    background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(0, 212, 255, 0.06) 0%, 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: 50px;
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    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: 28px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lg), 0 0 48px rgba(0, 212, 255, 0.06);
}

.game-media {
    position: relative;
    height: 500px;
    border-radius: 28px;
    overflow: hidden;
}

.game-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.featured-image-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: inset 0 0 80px rgba(255, 255, 255, 0.08);
}

.game-image-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.game-image-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.game-image-4 {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(6, 10, 24, 0.75) 80%);
    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: var(--primary-color);
    color: var(--dark-bg);
}

.game-badge.popular {
    background: var(--accent-color);
    color: var(--dark-bg);
}

.game-badge.coming-soon {
    background: var(--secondary-color);
    color: var(--text-primary);
}

.game-badge.award {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: var(--text-primary);
}

.game-title-large {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 40px;
    font-weight: 800;
    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(255, 255, 255, 0.1);
    border-radius: 6px;
    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(20px);
    -webkit-backdrop-filter: blur(20px);
    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), 0 0 32px rgba(0, 212, 255, 0.04);
}

/* 叠加：卡片轻微错落 */
@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 56px rgba(0, 212, 255, 0.12);
    border-color: rgba(0, 212, 255, 0.2);
}

.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.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.game-link:hover {
    background: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.game-content {
    padding: 24px;
}

.game-title {
    font-family: 'Space Grotesk', 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(6, 10, 24, 0.4) 30%, 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(124, 58, 237, 0.08) 0%, transparent 60%);
    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(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.value-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.value-item h4 {
    font-family: 'Space Grotesk', 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: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(124, 58, 237, 0.15) 100%);
    border-radius: 28px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 0 60px rgba(0, 212, 255, 0.08), inset 0 0 60px rgba(255, 255, 255, 0.03);
}

.floating-card {
    position: absolute;
    background: var(--glass);
    backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    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(0, 212, 255, 0.05) 0%, 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 32px rgba(0, 212, 255, 0.04);
}

.career-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), 0 0 48px rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.25);
}

.career-header {
    margin-bottom: 16px;
}

.career-title {
    font-family: 'Space Grotesk', 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(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 6px;
    font-size: 12px;
    color: var(--primary-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(6, 10, 24, 0.35) 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: 24px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    box-shadow: 0 0 32px rgba(0, 0, 0, 0.08);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), 0 0 48px rgba(0, 212, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
}

.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(135deg, #667eea 0%, #764ba2 100%);
}

.news-image-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.news-image-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 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: 'Space Grotesk', 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(0, 212, 255, 0.08) 0%, 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 20px rgba(0, 212, 255, 0.1);
}

.contact-item h4 {
    font-family: 'Space Grotesk', 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(0, 212, 255, 0.15);
    color: var(--primary-color);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 0 24px rgba(0, 212, 255, 0.12);
}

.contact-form {
    background: var(--glass);
    backdrop-filter: blur(24px);
    padding: 48px;
    border-radius: 28px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 0 48px rgba(0, 212, 255, 0.05), inset 0 0 32px rgba(255, 255, 255, 0.02);
}

.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.04);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    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: rgba(0, 212, 255, 0.4);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 24px rgba(0, 212, 255, 0.08);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, rgba(6, 10, 24, 0.6) 0%, rgba(6, 10, 24, 0.95) 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(0, 212, 255, 0.15), transparent);
    opacity: 0.8;
}

.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: 'Space Grotesk', 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 rgba(255, 255, 255, 0.1);
        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;
    }
}
