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

:root {
    /* Playful cartoon illustration palette */
    --void: #f6fbff;
    --bg-deep: #e5f4ff;
    --bg-mid: #d7ecff;
    --bg-panel: rgba(255, 255, 255, 0.78);
    --rim-gold: #ffb347;
    --rim-amber: #ff8f5a;
    --steel: #5f8ac6;
    --cool-light: #7bc4ff;
    --primary-color: #4c79c4;
    --secondary-color: #6f92c8;
    --accent-color: #ff8f5a;
    --accent-warm: #ffb347;
    --brand-gold: #ffd166;
    --dark-bg: #dff1ff;
    --dark-secondary: #ffffff;
    --dark-tertiary: #edf8ff;
    --text-primary: #2d4b75;
    --text-secondary: #5d78a3;
    --text-muted: #7f97b8;
    --card-white: rgba(255, 255, 255, 0.95);
    --gradient-primary: linear-gradient(135deg, #7bc4ff 0%, #8ed081 50%, #ffd166 100%);
    --gradient-secondary: linear-gradient(180deg, rgba(255, 209, 102, 0.35) 0%, transparent 100%);
    --gradient-accent: linear-gradient(135deg, #bfe4ff 0%, #d6f7ff 100%);
    --surface-glass: rgba(255, 255, 255, 0.86);
    --border-cartoon: rgba(76, 121, 196, 0.2);
    --border-soft: rgba(111, 146, 200, 0.22);
    --shadow-soft: 0 12px 28px rgba(86, 133, 190, 0.2);
    --shadow-card: 0 2px 0 rgba(255, 255, 255, 0.9) inset, 0 16px 28px rgba(86, 133, 190, 0.2), 0 0 0 1px rgba(111, 146, 200, 0.12);
    --shadow-md: 0 20px 36px rgba(86, 133, 190, 0.22);
    --shadow-lg: 0 26px 46px rgba(86, 133, 190, 0.25);
}

html {
    scroll-behavior: smooth;
}

body {
    position: relative;
    z-index: 0;
    font-family: 'Nunito', 'Segoe UI', system-ui, sans-serif;
    background-color: var(--void);
    background-image:
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.82) 0%, transparent 36%),
        radial-gradient(circle at 82% 12%, rgba(255, 209, 102, 0.45) 0%, transparent 42%),
        radial-gradient(circle at 86% 82%, rgba(142, 208, 129, 0.36) 0%, transparent 42%),
        linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-mid) 45%, var(--void) 100%);
    color: var(--text-primary);
    line-height: 1.65;
    overflow-x: hidden;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.02;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
    mix-blend-mode: soft-light;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(14px) saturate(1.05);
    -webkit-backdrop-filter: blur(14px) saturate(1.05);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.35s ease;
    border-bottom: 2px solid rgba(123, 196, 255, 0.35);
    box-shadow: 0 10px 20px rgba(86, 133, 190, 0.16);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom-color: rgba(255, 179, 71, 0.45);
    box-shadow: 0 12px 24px rgba(86, 133, 190, 0.2);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Baloo 2', 'Nunito', cursive;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: none;
    color: var(--text-primary);
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-icon-pharmacy,
.logo-icon-biotech,
.logo-icon-record {
    color: var(--rim-amber);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    text-transform: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--rim-gold), transparent);
    transition: width 0.4s 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: 1.5rem;
}

.btn-nav {
    padding: 0.58rem 1.4rem;
    background: linear-gradient(180deg, rgba(232, 197, 71, 0.95) 0%, rgba(166, 132, 44, 0.98) 100%);
    border: 1px solid rgba(255, 224, 130, 0.35);
    border-radius: 999px;
    color: #0a0b0e;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    text-transform: none;
    cursor: pointer;
    transition: filter 0.25s ease, box-shadow 0.25s ease;
    font-family: 'Baloo 2', 'Nunito', cursive;
    text-decoration: none;
    box-shadow: 0 2px 1px rgba(255, 255, 255, 0.25) inset, 0 8px 24px rgba(201, 162, 39, 0.25);
}

.btn-nav:hover {
    filter: brightness(1.06);
    box-shadow: 0 2px 1px rgba(255, 255, 255, 0.3) inset, 0 12px 32px rgba(201, 162, 39, 0.35);
}

.btn-nav:active {
    filter: brightness(0.98);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 24px;
    height: 1px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 1px;
    opacity: 0.85;
}

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

.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 24px 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.78) 0%, transparent 46%),
        radial-gradient(circle at 78% 12%, rgba(255, 209, 102, 0.4) 0%, transparent 42%),
        radial-gradient(circle at 72% 70%, rgba(123, 196, 255, 0.35) 0%, transparent 40%),
        linear-gradient(165deg, #dff1ff 0%, #cce8ff 45%, #f6fbff 100%);
}

.hero-volumetric {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 40% 60% at 75% 15%, rgba(255, 255, 255, 0.35) 0%, transparent 48%),
        radial-gradient(ellipse 60% 45% at 20% 75%, rgba(142, 208, 129, 0.18) 0%, transparent 52%);
    pointer-events: none;
    mix-blend-mode: screen;
}

.hero-spotlight {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 52%;
    background: linear-gradient(to top, rgba(246, 251, 255, 0.92) 0%, rgba(230, 244, 255, 0.35) 45%, transparent 100%);
    pointer-events: none;
}

.hero-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 75% 70% at 50% 45%, transparent 38%, rgba(125, 161, 201, 0.25) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    padding: 0.45rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 179, 71, 0.5);
    border-radius: 999px;
    color: var(--text-secondary);
    font-size: 0.82rem;
    font-weight: 700;
    font-family: 'Baloo 2', 'Nunito', cursive;
    letter-spacing: 0.04em;
    text-transform: none;
    margin-bottom: 1.75rem;
}

.hero-title {
    font-family: 'Baloo 2', 'Nunito', cursive;
    font-size: clamp(2.9rem, 9vw, 5rem);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: none;
    color: var(--text-primary);
    text-shadow:
        0 5px 0 rgba(255, 255, 255, 0.8),
        0 10px 16px rgba(125, 161, 201, 0.28);
}

.title-word {
    display: inline-block;
    margin: 0 0.28rem;
}

.title-word.highlight {
    font-weight: 800;
    background: linear-gradient(180deg, #ffb347 0%, #ff8f5a 48%, #f16d7a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 1px 12px rgba(201, 162, 39, 0.25));
}

.hero-company-line {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    text-transform: none;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 2.2vw, 1.1rem);
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.85;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn {
    padding: 0.95rem 2rem;
    border: none;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    transition: filter 0.25s ease, box-shadow 0.25s ease;
    font-family: 'Baloo 2', 'Nunito', cursive;
}

.btn-primary {
    background: linear-gradient(180deg, #ffb347 0%, #ff8f5a 100%);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.75);
    box-shadow: 0 3px 0 #dc6e3f, 0 12px 20px rgba(255, 143, 90, 0.35);
}

.btn-primary:hover {
    filter: brightness(1.05);
    box-shadow: 0 2px 0 rgba(255, 255, 255, 0.25) inset, 0 22px 48px rgba(201, 162, 39, 0.2);
}

.btn-primary:active {
    filter: brightness(0.97);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.82);
    color: var(--primary-color);
    border: 2px solid rgba(123, 196, 255, 0.6);
    box-shadow: none;
}

.btn-outline:hover {
    color: var(--text-primary);
    border-color: rgba(201, 162, 39, 0.45);
    background: rgba(201, 162, 39, 0.06);
}

.hero-quicklinks {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    padding-top: 2.5rem;
    border-top: 2px dashed rgba(123, 196, 255, 0.45);
}

.quicklink-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.quicklink-item:hover {
    color: var(--rim-amber);
}

.quicklink-icon {
    font-size: 1.1rem;
}

.scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 18px;
    height: 18px;
    border-right: 1px solid var(--rim-gold);
    border-bottom: 1px solid var(--rim-gold);
    opacity: 0.5;
    transform: rotate(45deg);
}

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

/* Section Styles */
section {
    padding: 120px 0;
}

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

.section-label {
    display: inline-block;
    padding: 0.4rem 0.95rem;
    background: rgba(255, 255, 255, 0.86);
    border: 2px solid rgba(123, 196, 255, 0.45);
    border-radius: 999px;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 700;
    font-family: 'Baloo 2', 'Nunito', cursive;
    letter-spacing: 0.04em;
    text-transform: none;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Baloo 2', 'Nunito', cursive;
    font-size: clamp(2.2rem, 6vw, 3.6rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: none;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

.section-header .section-title::after {
    content: '';
    display: block;
    width: min(160px, 36vw);
    height: 6px;
    margin: 1rem auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, #7bc4ff, #ffd166, #8ed081);
    opacity: 1;
}

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

/* Services — layered matte environment */
.games-section {
    background: linear-gradient(180deg, #eaf7ff 0%, #f6fbff 40%, #e6f7ef 100%);
    position: relative;
}

.games-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 85% 15%, rgba(255, 209, 102, 0.22) 0%, transparent 45%),
        radial-gradient(circle at 10% 80%, rgba(123, 196, 255, 0.2) 0%, transparent 45%);
    pointer-events: none;
}

.games-section > .container {
    position: relative;
    z-index: 1;
}

.games-showcase {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.game-featured {
    position: relative;
}

.game-media {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 500px;
    box-shadow: var(--shadow-md);
}

.game-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-1 {
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.65) 0%, transparent 52%),
        linear-gradient(155deg, #7bc4ff 0%, #8bc4ff 45%, #6da6ef 100%);
}

.game-2 {
    background:
        radial-gradient(circle at 75% 30%, rgba(255, 255, 255, 0.56) 0%, transparent 52%),
        linear-gradient(155deg, #8ed081 0%, #76c38d 45%, #5aaa7a 100%);
}

.game-3 {
    background:
        radial-gradient(circle at 50% 70%, rgba(255, 255, 255, 0.56) 0%, transparent 50%),
        linear-gradient(155deg, #ffd166 0%, #ffbd72 44%, #ff9a7a 100%);
}

.game-4 {
    background:
        radial-gradient(ellipse 55% 50% at 20% 75%, rgba(143, 168, 196, 0.15) 0%, transparent 48%),
        linear-gradient(155deg, #181c24 0%, #222a38 42%, #10141c 100%);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 3rem;
}

.game-info {
    max-width: 600px;
    color: var(--text-primary);
}

.game-badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(123, 196, 255, 0.45);
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 700;
    font-family: 'Baloo 2', 'Nunito', cursive;
    letter-spacing: 0.04em;
    text-transform: none;
    margin-bottom: 1rem;
    color: var(--rim-amber);
}

.game-badge.new {
    border-color: rgba(143, 168, 196, 0.35);
    color: var(--cool-light);
}

.game-badge.coming {
    border-color: rgba(201, 162, 39, 0.45);
    color: var(--rim-amber);
}

.game-badge.popular {
    border-color: rgba(143, 168, 196, 0.4);
    color: var(--secondary-color);
}

.game-title {
    font-family: 'Baloo 2', 'Nunito', cursive;
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.game-genre {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.game-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.game-features {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.feature-tag {
    padding: 0.5rem 1rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.game-card {
    background: var(--card-white);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    box-shadow: var(--shadow-card);
    border: 2px solid rgba(123, 196, 255, 0.28);
}

.game-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(201, 162, 39, 0.28);
}

.game-card .game-image {
    height: 200px;
    min-height: 200px;
    position: relative;
}

.game-card .game-image::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 40%);
    pointer-events: none;
}

.game-card .game-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.game-content {
    padding: 2rem;
}

.game-card .game-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.game-card .game-genre {
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.game-card .game-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.game-link {
    color: var(--rim-amber);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.02em;
    text-transform: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.game-link:hover {
    color: var(--cool-light);
}

/* Studio Section */
.studio-section {
    background: linear-gradient(180deg, #f6fbff 0%, #fff8e8 55%, #edf9ff 100%);
}

.studio-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.studio-description p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.studio-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.72);
    border-radius: 18px;
    border: 1px solid var(--border-soft);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.value-item:hover {
    transform: translateY(-2px);
    border-color: rgba(184, 200, 230, 0.4);
    box-shadow: var(--shadow-md);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-item h4 {
    font-family: 'Baloo 2', 'Nunito', cursive;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--rim-amber);
}

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

.studio-visual {
    position: relative;
}

.studio-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(155deg, #8bc4ff 0%, #8ed081 42%, #ffd166 100%);
    border-radius: 18px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-md);
    animation: floatCard 3s ease-in-out infinite;
}

.card-1 {
    top: 20%;
    right: -20px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    left: -20px;
    animation-delay: 1.5s;
}

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

.card-icon {
    font-size: 2rem;
}

.card-number {
    font-family: 'Baloo 2', 'Nunito', cursive;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--rim-amber);
}

.card-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Careers Section */
.careers-section {
    background: linear-gradient(180deg, #eef8ff 0%, #f8fffb 100%);
}

.careers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.career-card {
    background: rgba(255, 255, 255, 0.78);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid var(--border-soft);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.career-card:hover {
    transform: translateY(-4px);
    border-color: rgba(184, 200, 230, 0.4);
    box-shadow: var(--shadow-md);
}

.career-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.career-title {
    font-family: 'Baloo 2', 'Nunito', cursive;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.career-type {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.career-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.career-tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.tag {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 500;
}

.career-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.career-link:hover {
    color: var(--accent-color);
}

.careers-cta {
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.72);
    border-radius: 16px;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
}

.careers-cta p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* News Section */
.news-section {
    background: linear-gradient(180deg, #eef8ff 0%, #f8fbff 45%, #effff4 100%);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.news-card {
    background: var(--card-white);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(123, 196, 255, 0.24);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-card);
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(201, 162, 39, 0.3);
}

.news-card.featured {
    grid-column: span 2;
}

.news-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.news-card.featured .news-image {
    height: 350px;
}

.image-placeholder.news-1 {
    background:
        radial-gradient(circle at 60% 30%, rgba(255, 255, 255, 0.58) 0%, transparent 50%),
        linear-gradient(155deg, #8bc4ff 0%, #8ed081 48%, #7bc4ff 100%);
}

.image-placeholder.news-2 {
    background:
        radial-gradient(circle at 30% 60%, rgba(255, 255, 255, 0.58) 0%, transparent 52%),
        linear-gradient(155deg, #ffd166 0%, #ffb68f 45%, #ff8f5a 100%);
}

.image-placeholder.news-3 {
    background:
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.58) 0%, transparent 48%),
        linear-gradient(155deg, #9de6dc 0%, #7bc4ff 42%, #8ed081 100%);
}

.news-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.35rem 0.85rem;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 143, 90, 0.55);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    font-family: 'Baloo 2', 'Nunito', cursive;
    letter-spacing: 0.03em;
    text-transform: none;
    color: var(--accent-color);
}

.news-content {
    padding: 2rem;
}

.news-date {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    display: block;
}

.news-title {
    font-family: 'Baloo 2', 'Nunito', cursive;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    line-height: 1.45;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.news-excerpt {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.news-link {
    color: var(--rim-amber);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    text-transform: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.news-link:hover {
    color: var(--cool-light);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(180deg, #f7fbff 0%, #ecf9ff 45%, #fff6ea 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
}

.contact-description {
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

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

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

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(180deg, #ffffff 0%, #eaf6ff 100%);
    border: 2px solid rgba(123, 196, 255, 0.52);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    flex-shrink: 0;
    font-size: 1.2rem;
}

.contact-text h4 {
    font-family: 'Baloo 2', 'Nunito', cursive;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-transform: none;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-text p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.contact-text a {
    color: var(--rim-amber);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--cool-light);
}

.contact-reach {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.social-media h4 {
    font-family: 'Baloo 2', 'Nunito', cursive;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(123, 196, 255, 0.3);
    box-shadow: var(--shadow-card);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group label {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.94);
    border: 2px solid rgba(111, 146, 200, 0.28);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(201, 162, 39, 0.45);
    box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.2);
}

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

/* Footer */
.footer {
    background: linear-gradient(180deg, #85b9f7 0%, #72a6e7 45%, #5f95d8 100%);
    color: #eaf4ff;
    padding: 4rem 0 2rem;
    border-top: 4px solid #ffd166;
}

.footer .logo {
    color: #ffffff;
}

.footer .logo-icon,
.footer .logo-icon-record {
    color: var(--rim-gold);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}

.footer-brand {
    max-width: 320px;
}

.footer-tagline {
    color: rgba(234, 244, 255, 0.9);
    margin-top: 1rem;
    line-height: 1.8;
    font-size: 0.9rem;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 480px;
    margin-left: auto;
}

.footer-title {
    font-family: 'Baloo 2', 'Nunito', cursive;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

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

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: rgba(234, 244, 255, 0.95);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-column ul li a:hover {
    color: #ffd166;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-top: 2rem;
    border-top: 2px dashed rgba(255, 245, 204, 0.5);
    color: rgba(234, 244, 255, 0.88);
    font-size: 0.85rem;
}

.footer-address {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .news-card.featured {
        grid-column: span 1;
    }
    
    .studio-content {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-brand {
        max-width: none;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
        max-width: none;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: rgba(245, 252, 255, 0.98);
        backdrop-filter: blur(14px);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 2rem 0;
        box-shadow: var(--shadow-lg);
        border-top: 2px solid rgba(123, 196, 255, 0.35);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .btn-nav {
        display: none;
    }
    
    .hero-quicklinks {
        gap: 0.5rem;
        font-size: 0.9rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .studio-values {
        grid-template-columns: 1fr;
    }
    
    .careers-grid {
        grid-template-columns: 1fr;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    section {
        padding: 80px 0;
    }
    
    .hero {
        padding: 120px 20px 60px;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .floating-card {
        position: static;
        margin: 1rem 0;
    }
}
