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

:root {
    /* Pixar-inspired 3D cartoon — sky, sun, toy-like plastics */
    --sky-top: #7ec8ff;
    --sky-mid: #b8e0ff;
    --sky-bottom: #e8f4fc;
    --sun-glow: #fff9e6;
    --orange-bright: #ffb347;
    --orange-deep: #ff8c00;
    --orange-shadow: #c65d00;
    --pixar-blue: #2196f3;
    --pixar-teal: #26c6da;
    --card-white: #ffffff;
    --primary-color: #1565c0;
    --secondary-color: #0277bd;
    --accent-color: #ff6f00;
    --accent-warm: #e65100;
    --brand-gold: #ffc400;
    --dark-bg: #e3f2fd;
    --dark-secondary: #ffffff;
    --dark-tertiary: #f5fbff;
    --text-primary: #1a237e;
    --text-secondary: #3949ab;
    --text-muted: #5c6bc0;
    --gradient-primary: linear-gradient(135deg, #42a5f5 0%, #ab47bc 45%, #ff9800 100%);
    --gradient-secondary: linear-gradient(180deg, #ffb74d 0%, #ff9800 55%, #f57c00 100%);
    --gradient-accent: linear-gradient(135deg, #4fc3f7 0%, #29b6f6 50%, #ffd54f 100%);
    --surface-glass: rgba(255, 255, 255, 0.92);
    --border-cartoon: rgba(25, 35, 120, 0.12);
    --border-soft: rgba(25, 118, 210, 0.2);
    --border-thick: rgba(255, 152, 0, 0.45);
    --shadow-3d: 0 8px 0 var(--orange-shadow), 0 12px 24px rgba(198, 93, 0, 0.28);
    --shadow-3d-hover: 0 10px 0 var(--orange-shadow), 0 16px 32px rgba(198, 93, 0, 0.32);
    --shadow-soft: 0 10px 0 rgba(21, 101, 192, 0.18), 0 14px 28px rgba(13, 71, 161, 0.12);
    --shadow-card: 0 6px 0 rgba(21, 101, 192, 0.12), 0 10px 28px rgba(13, 71, 161, 0.08), inset 0 2px 0 rgba(255, 255, 255, 0.95);
    --shadow-md: 0 12px 0 rgba(21, 101, 192, 0.15), 0 18px 40px rgba(13, 71, 161, 0.14);
    --shadow-lg: 0 16px 0 rgba(21, 101, 192, 0.12), 0 24px 48px rgba(13, 71, 161, 0.16);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', 'Segoe UI', system-ui, sans-serif;
    background-color: var(--sky-bottom);
    background-image:
        radial-gradient(ellipse 100% 80% at 50% -20%, var(--sun-glow) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 8% 30%, rgba(255, 255, 255, 0.85) 0%, transparent 45%),
        radial-gradient(ellipse 50% 40% at 95% 25%, rgba(186, 230, 253, 0.8) 0%, transparent 42%),
        linear-gradient(180deg, var(--sky-top) 0%, var(--sky-mid) 38%, var(--sky-bottom) 100%);
    color: var(--text-primary);
    line-height: 1.65;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--surface-glass);
    backdrop-filter: blur(14px) saturate(1.35);
    -webkit-backdrop-filter: blur(14px) saturate(1.35);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 4px solid rgba(255, 193, 7, 0.45);
    box-shadow: 0 8px 0 rgba(21, 101, 192, 0.08), 0 12px 28px rgba(13, 71, 161, 0.12);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 10px 0 rgba(255, 152, 0, 0.2), 0 16px 36px rgba(13, 71, 161, 0.14);
}

.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.6rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: var(--text-primary);
    text-decoration: none;
    text-shadow: 0 2px 0 rgba(255, 255, 255, 0.8), 0 3px 0 rgba(21, 101, 192, 0.12);
}

.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(--primary-color);
}

.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;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #42a5f5, #ff9800);
    border-radius: 4px;
    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: 1.5rem;
}

.btn-nav {
    padding: 0.65rem 1.65rem;
    background: linear-gradient(180deg, #ffb74d 0%, #ff9800 45%, #f57c00 100%);
    border: 3px solid rgba(255, 255, 255, 0.65);
    border-radius: 999px;
    color: #fff;
    font-weight: 800;
    font-size: 0.92rem;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    font-family: 'Baloo 2', 'Nunito', cursive;
    text-decoration: none;
    box-shadow: 0 5px 0 var(--orange-shadow), 0 8px 16px rgba(198, 93, 0, 0.35), inset 0 2px 0 rgba(255, 255, 255, 0.35);
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 0 var(--orange-shadow), 0 12px 22px rgba(198, 93, 0, 0.38), inset 0 2px 0 rgba(255, 255, 255, 0.35);
}

.btn-nav:active {
    transform: translateY(3px);
    box-shadow: 0 2px 0 var(--orange-shadow), inset 0 2px 4px rgba(0, 0, 0, 0.12);
}

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

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

.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(ellipse 80% 60% at 15% 25%, rgba(255, 245, 200, 0.65) 0%, transparent 50%),
        radial-gradient(ellipse 70% 55% at 90% 15%, rgba(255, 200, 120, 0.35) 0%, transparent 48%),
        radial-gradient(ellipse 60% 45% at 50% 85%, rgba(144, 202, 249, 0.4) 0%, transparent 55%);
}

.hero-blobs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-blobs .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(0.5px);
}

.hero-blobs .b1 {
    width: min(42vw, 320px);
    height: min(42vw, 320px);
    top: 8%;
    right: 5%;
    background: radial-gradient(circle at 30% 30%, #fff9c4 0%, #ffecb3 40%, #ffcc80 100%);
    box-shadow: inset 0 -12px 24px rgba(245, 124, 0, 0.25), 0 16px 0 rgba(230, 81, 0, 0.12);
    animation: blob-float 7s ease-in-out infinite;
}

.hero-blobs .b2 {
    width: min(28vw, 220px);
    height: min(28vw, 220px);
    bottom: 18%;
    left: 8%;
    background: radial-gradient(circle at 40% 40%, #e1f5fe 0%, #81d4fa 55%, #4fc3f7 100%);
    box-shadow: inset 0 6px 16px rgba(255, 255, 255, 0.5), 0 10px 0 rgba(2, 119, 189, 0.2);
    animation: blob-float 9s ease-in-out infinite reverse;
}

.hero-blobs .b3 {
    width: min(18vw, 140px);
    height: min(18vw, 140px);
    top: 42%;
    left: 18%;
    background: radial-gradient(circle at 50% 50%, #f8bbd0 0%, #f48fb1 70%, #ec407a 100%);
    opacity: 0.85;
    animation: blob-float 6s ease-in-out infinite 1s;
}

@keyframes blob-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(8px, -12px) scale(1.03); }
    66% { transform: translate(-6px, 8px) scale(0.98); }
}

.hero-spotlight {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(232, 244, 252, 0.85) 0%, transparent 72%);
    pointer-events: none;
}

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

.hero-badge {
    display: inline-block;
    padding: 0.55rem 1.35rem;
    background: rgba(255, 255, 255, 0.95);
    border: 3px solid rgba(255, 193, 7, 0.55);
    border-radius: 999px;
    color: var(--pixar-blue);
    font-size: 0.84rem;
    font-weight: 800;
    font-family: 'Baloo 2', 'Nunito', cursive;
    letter-spacing: 0.04em;
    margin-bottom: 2rem;
    box-shadow: 0 5px 0 rgba(255, 152, 0, 0.25), 0 8px 16px rgba(13, 71, 161, 0.1), inset 0 2px 0 #fff;
}

.hero-title {
    font-family: 'Baloo 2', 'Nunito', cursive;
    font-size: clamp(2.75rem, 9vw, 5.25rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: 0.04em;
    color: var(--text-primary);
    text-shadow:
        0 4px 0 #fff,
        0 5px 0 rgba(21, 101, 192, 0.12),
        0 8px 16px rgba(13, 71, 161, 0.12);
}

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

.title-word.highlight {
    font-style: normal;
    font-weight: 800;
    background: linear-gradient(180deg, #ffca28 0%, #ff9800 45%, #f57c00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 3px 0 rgba(198, 93, 0, 0.35));
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    font-family: 'Baloo 2', 'Nunito', cursive;
}

.btn-primary {
    background: linear-gradient(180deg, #ffb74d 0%, #ff9800 45%, #f57c00 100%);
    color: #fff;
    border: 3px solid rgba(255, 255, 255, 0.75);
    box-shadow: var(--shadow-3d), inset 0 3px 0 rgba(255, 255, 255, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-3d-hover), inset 0 3px 0 rgba(255, 255, 255, 0.35);
}

.btn-primary:active {
    transform: translateY(4px);
    box-shadow: 0 3px 0 var(--orange-shadow), inset 0 2px 6px rgba(0, 0, 0, 0.12);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.92);
    color: var(--pixar-blue);
    border: 3px solid var(--pixar-blue);
    box-shadow: 0 6px 0 #1565c0, 0 10px 20px rgba(21, 101, 192, 0.2), inset 0 2px 0 #fff;
}

.btn-outline:hover {
    background: #e3f2fd;
    transform: translateY(-2px);
    box-shadow: 0 8px 0 #1565c0, 0 14px 24px rgba(21, 101, 192, 0.22);
}

.hero-quicklinks {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    padding-top: 2.5rem;
    border-top: 4px dashed rgba(255, 152, 0, 0.35);
}

.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(--primary-color);
}

.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: 20px;
    height: 20px;
    border-right: 2px solid var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
    opacity: 0.45;
    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.45rem 1.1rem;
    background: rgba(255, 255, 255, 0.95);
    border: 3px solid rgba(66, 165, 245, 0.4);
    border-radius: 999px;
    color: var(--pixar-blue);
    font-size: 0.85rem;
    font-weight: 800;
    font-family: 'Baloo 2', 'Nunito', cursive;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
    box-shadow: 0 4px 0 rgba(25, 118, 210, 0.15), inset 0 2px 0 #fff;
}

.section-title {
    font-family: 'Baloo 2', 'Nunito', cursive;
    font-size: clamp(2.25rem, 6vw, 3.5rem);
    font-weight: 800;
    font-style: normal;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-shadow: 0 3px 0 #fff, 0 4px 0 rgba(21, 101, 192, 0.1);
}

.section-header .section-title::after {
    content: '';
    display: block;
    width: min(200px, 45vw);
    height: 8px;
    margin: 0.75rem auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, #42a5f5, #ffca28, #ff9800);
    box-shadow: 0 3px 0 rgba(198, 93, 0, 0.25);
}

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

/* Services Section — toy-box stripes */
.games-section {
    background: linear-gradient(180deg, #e1f5fe 0%, #fff8e1 50%, #e8f5e9 100%);
    position: relative;
}

.games-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        90deg,
        transparent 0,
        transparent 72px,
        rgba(255, 255, 255, 0.35) 72px,
        rgba(255, 255, 255, 0.35) 74px
    );
    pointer-events: none;
    opacity: 0.5;
}

.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 25% 30%, rgba(255, 255, 255, 0.55) 0%, transparent 42%),
        linear-gradient(145deg, #4fc3f7 0%, #29b6f6 45%, #0288d1 100%);
}

.game-2 {
    background: radial-gradient(circle at 75% 25%, rgba(255, 249, 230, 0.5) 0%, transparent 48%),
        linear-gradient(145deg, #26c6da 0%, #00acc1 50%, #00838f 100%);
}

.game-3 {
    background: radial-gradient(circle at 50% 65%, rgba(255, 213, 79, 0.45) 0%, transparent 52%),
        linear-gradient(145deg, #ffd54f 0%, #ffca28 42%, #ffa000 100%);
}

.game-4 {
    background: radial-gradient(circle at 20% 70%, rgba(255, 255, 255, 0.4) 0%, transparent 48%),
        linear-gradient(145deg, #ab47bc 0%, #8e24aa 42%, #6a1b9a 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.4rem 1rem;
    background: rgba(255, 255, 255, 0.95);
    border: 3px solid rgba(255, 255, 255, 0.9);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    font-family: 'Baloo 2', 'Nunito', cursive;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    color: #1565c0;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.12), inset 0 2px 0 #fff;
}

.game-badge.new {
    background: linear-gradient(180deg, #e3f2fd 0%, #bbdefb 100%);
    color: #0d47a1;
}

.game-badge.coming {
    background: linear-gradient(180deg, #fffde7 0%, #fff9c4 100%);
    color: #f57f17;
}

.game-badge.popular {
    background: linear-gradient(180deg, #fce4ec 0%, #f8bbd9 100%);
    color: #ad1457;
}

.game-title {
    font-family: 'Baloo 2', 'Nunito', cursive;
    font-size: 1.65rem;
    font-weight: 800;
    font-style: normal;
    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);
    border-radius: 28px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: var(--shadow-card);
    border: 4px solid rgba(255, 255, 255, 0.95);
    outline: 3px solid rgba(255, 193, 7, 0.35);
    outline-offset: -1px;
}

.game-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: var(--shadow-md), inset 0 2px 0 #fff;
    outline-color: rgba(255, 152, 0, 0.55);
}

.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.35) 0%, transparent 38%);
    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(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

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

/* Studio Section */
.studio-section {
    background: linear-gradient(180deg, #fff9c4 0%, #e1f5fe 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.35rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.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(145deg, #4fc3f7 0%, #ba68c8 50%, #ffb74d 100%);
    border-radius: 24px;
}

.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.75rem;
    font-weight: 700;
    color: var(--accent-color);
}

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

/* Careers Section */
.careers-section {
    background: linear-gradient(180deg, rgba(238, 244, 248, 0.6) 0%, rgba(250, 246, 242, 0.95) 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.5rem;
    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, #f3e5f5 0%, #e8eaf6 55%, #e3f2fd 100%);
}

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

.news-card {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.98);
    outline: 3px solid rgba(66, 165, 245, 0.25);
    transition: all 0.2s ease;
    box-shadow: var(--shadow-card);
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    outline-color: rgba(255, 152, 0, 0.45);
}

.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: linear-gradient(145deg, #42a5f5 0%, #26c6da 55%, #7e57c2 100%);
}

.image-placeholder.news-2 {
    background: linear-gradient(145deg, #ffa726 0%, #ffca28 45%, #ff7043 100%);
}

.image-placeholder.news-3 {
    background: linear-gradient(145deg, #66bb6a 0%, #26a69a 50%, #29b6f6 100%);
}

.news-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.45rem 1rem;
    background: linear-gradient(180deg, #ffca28 0%, #ff9800 100%);
    border: 3px solid rgba(255, 255, 255, 0.85);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 800;
    font-family: 'Baloo 2', 'Nunito', cursive;
    color: #fff;
    box-shadow: 0 4px 0 #e65100, 0 6px 12px rgba(0, 0, 0, 0.15);
}

.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;
    font-style: normal;
    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(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

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

/* Contact Section */
.contact-section {
    background: linear-gradient(180deg, #eceff1 0%, #b3e5fc 45%, #fff9c4 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: 52px;
    height: 52px;
    background: linear-gradient(180deg, #fff 0%, #e3f2fd 100%);
    border: 3px solid var(--pixar-blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    flex-shrink: 0;
    box-shadow: 0 5px 0 rgba(21, 101, 192, 0.2), inset 0 2px 0 #fff;
    font-size: 1.35rem;
}

.contact-text h4 {
    font-family: 'Baloo 2', 'Nunito', cursive;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--pixar-blue);
}

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

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

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

.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.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 28px;
    border: 4px solid rgba(255, 193, 7, 0.4);
    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: #fafafa;
    border: 3px solid #90caf9;
    border-radius: 16px;
    color: var(--text-primary);
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    transition: all 0.2s ease;
    box-shadow: inset 0 3px 0 rgba(0, 0, 0, 0.04);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--pixar-blue);
    box-shadow: inset 0 3px 0 rgba(0, 0, 0, 0.04), 0 0 0 4px rgba(66, 165, 245, 0.25);
}

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

/* Footer */
.footer {
    background: linear-gradient(180deg, #1565c0 0%, #0d47a1 55%, #263238 100%);
    color: #e3f2fd;
    padding: 4rem 0 2rem;
    border-top: 6px solid #ff9800;
}

.footer .logo {
    color: #fff;
}

.footer .logo-icon,
.footer .logo-icon-record {
    color: #ffca28;
}

.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(227, 242, 253, 0.88);
    margin-top: 1rem;
    line-height: 1.8;
    font-size: 0.95rem;
}

.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.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #fff;
}

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

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

.footer-column ul li a {
    color: rgba(227, 242, 253, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-top: 2rem;
    border-top: 3px dashed rgba(255, 193, 7, 0.35);
    color: rgba(227, 242, 253, 0.75);
    font-size: 0.9rem;
}

.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(253, 250, 246, 0.97);
        backdrop-filter: blur(16px);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 2rem 0;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--border-soft);
    }
    
    .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;
    }
}
