/* Illustration-style Game Company Website */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Illustration palette: warm, soft, hand-drawn feel */
    --illus-bg: #fef7ee;
    --illus-paper: #faf3e9;
    --illus-surface: #fff9f2;
    --illus-ink: #2d2a26;
    --illus-ink-soft: #5c564e;
    --illus-ink-muted: #8a8378;
    --illus-primary: #e07c5c;
    --illus-primary-soft: #f4a88a;
    --illus-secondary: #7eb4a8;
    --illus-accent: #f2cc8f;
    --illus-coral: #e07c5c;
    --illus-mint: #7eb4a8;
    --illus-lavender: #9b8bb5;
    --illus-sky: #81b5d8;
    --illus-shadow: rgba(45, 42, 38, 0.08);
    --illus-shadow-soft: rgba(224, 124, 92, 0.15);
    --illus-border: rgba(45, 42, 38, 0.12);
    --illus-border-2: rgba(45, 42, 38, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Quicksand', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--illus-bg);
    color: var(--illus-ink);
    line-height: 1.6;
    overflow-x: hidden;
}

body.illustration-style {
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(242, 204, 143, 0.25) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(158, 180, 168, 0.2) 0%, transparent 40%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation - illustration style */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(254, 247, 238, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 3px solid var(--illus-border);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 24px var(--illus-shadow);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Nunito', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--illus-ink);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.logo-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(2px 2px 0 var(--illus-shadow));
}

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

.logo-illustration {
    transition: transform 0.3s ease;
}

.logo:hover .logo-illustration {
    transform: rotate(-5deg) scale(1.05);
}

.logo-text {
    color: var(--illus-primary);
    text-shadow: 1px 1px 0 var(--illus-shadow-soft);
}

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

.nav-link {
    color: var(--illus-ink-soft);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.25s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--illus-primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: var(--illus-ink);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero - illustration style */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

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

.illus-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.4;
    background-image: 
        radial-gradient(circle at 25% 25%, var(--illus-border) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, var(--illus-border) 1px, transparent 1px);
    background-size: 40px 40px;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 30% 40%, rgba(242, 204, 143, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 70% 70%, rgba(126, 180, 168, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 90% 20%, rgba(224, 124, 92, 0.2) 0%, transparent 50%);
}

/* Organic blobs instead of circles */
.illus-blobs {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.blob {
    position: absolute;
    filter: blur(40px);
    opacity: 0.5;
    animation: blob-float 18s infinite ease-in-out;
}

.blob-1 {
    width: 380px;
    height: 380px;
    background: var(--illus-primary-soft);
    top: 5%;
    left: 5%;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation-delay: 0s;
}

.blob-2 {
    width: 320px;
    height: 320px;
    background: var(--illus-secondary);
    top: 55%;
    right: 5%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation-delay: 4s;
}

.blob-3 {
    width: 280px;
    height: 280px;
    background: var(--illus-accent);
    bottom: 5%;
    left: 45%;
    border-radius: 50% 50% 30% 70% / 50% 50% 50% 50%;
    animation-delay: 8s;
}

@keyframes blob-float {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    33% { transform: translate(25px, -20px) scale(1.05) rotate(3deg); }
    66% { transform: translate(-15px, 25px) scale(0.95) rotate(-2deg); }
}

/* Doodle decorations */
.illus-doodles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.doodle {
    position: absolute;
    color: var(--illus-border-2);
    animation: doodle-float 12s infinite ease-in-out;
}

.doodle-terminal,
.doodle-leaf,
.doodle-house {
    width: 26px;
    height: 24px;
    top: 18%;
    right: 15%;
    color: var(--illus-primary);
    animation-delay: 0s;
}

.doodle-check,
.doodle-sun,
.doodle-key {
    width: 26px;
    height: 26px;
    bottom: 25%;
    left: 12%;
    color: var(--illus-secondary);
    animation-delay: 3s;
}

.doodle-brackets,
.doodle-hill,
.doodle-city {
    width: 24px;
    height: 24px;
    top: 35%;
    left: 8%;
    color: var(--illus-coral);
    animation-delay: 6s;
}

@keyframes doodle-float {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.7; }
    50% { transform: translateY(-12px) rotate(5deg); opacity: 1; }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 10px 22px;
    background: var(--illus-surface);
    border: 2px solid var(--illus-border-2);
    border-radius: 50px;
    color: var(--illus-ink-soft);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 4px 4px 0 var(--illus-shadow);
    font-family: 'Nunito', sans-serif;
}

.illus-badge {
    border-radius: 16px 16px 16px 4px;
}

.hero-title {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 1.5rem;
    color: var(--illus-ink);
    letter-spacing: -0.03em;
}

.title-line {
    display: block;
}

.title-line.highlight {
    color: var(--illus-primary);
    text-shadow: 2px 2px 0 var(--illus-shadow-soft);
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--illus-ink-soft);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

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

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Nunito', sans-serif;
    box-shadow: 4px 4px 0 var(--illus-shadow);
}

.btn-primary {
    background: var(--illus-primary);
    color: white;
    border: 2px solid var(--illus-ink);
}

.btn-primary:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--illus-shadow);
}

.btn-secondary {
    background: var(--illus-surface);
    color: var(--illus-ink);
    border: 2px solid var(--illus-ink);
}

.btn-secondary:hover {
    background: var(--illus-accent);
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--illus-shadow);
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.875rem;
    border-radius: 12px;
}

.btn-full {
    width: 100%;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 4rem;
}

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

.stat-number {
    font-family: 'Nunito', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--illus-primary);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 0 var(--illus-shadow-soft);
}

.stat-label {
    color: var(--illus-ink-muted);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--illus-ink-muted);
    border-radius: 14px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--illus-ink-muted);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

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

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

/* Games Section - illustration cards */
.games-section {
    padding: 100px 0;
    background: var(--illus-paper);
    border-top: 3px solid var(--illus-border);
}

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

.section-tag {
    display: inline-block;
    padding: 8px 18px;
    background: var(--illus-surface);
    border: 2px solid var(--illus-border-2);
    border-radius: 50px;
    color: var(--illus-ink-soft);
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Nunito', sans-serif;
    box-shadow: 3px 3px 0 var(--illus-shadow);
}

.illus-tag {
    border-radius: 14px 14px 14px 4px;
}

.section-title {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--illus-ink);
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 1.125rem;
    color: var(--illus-ink-soft);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
}

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

.game-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 16/9;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid var(--illus-border);
    box-shadow: 8px 8px 0 var(--illus-shadow);
}

.game-card:hover {
    transform: translateY(-6px) rotate(-1deg);
    box-shadow: 12px 12px 0 var(--illus-shadow);
}

.game-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.game-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.game-1 {
    background: linear-gradient(145deg, #c9a87c 0%, #e07c5c 100%);
}

.game-2 {
    background: linear-gradient(145deg, #7eb4a8 0%, #81b5d8 100%);
}

.game-3 {
    background: linear-gradient(145deg, #e07c5c 0%, #d45d5d 100%);
}

.game-4 {
    background: linear-gradient(145deg, #9b8bb5 0%, #7eb4a8 100%);
}

.game-placeholder::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border: 3px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
}

.game-placeholder::after,
.service-placeholder::after {
    content: '🏢';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(45, 42, 38, 0.92) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.game-info {
    width: 100%;
}

.game-genre {
    display: inline-block;
    padding: 6px 14px;
    background: var(--illus-primary);
    border-radius: 10px;
    font-size: 0.75rem;
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 700;
    border: 2px solid var(--illus-ink);
}

.game-title {
    font-family: 'Nunito', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: white;
}

.game-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
    line-height: 1.5;
}

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

.feature-tag {
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 0.75rem;
    color: white;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--illus-bg);
    border-top: 3px solid var(--illus-border);
}

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

.about-text .section-tag {
    margin-bottom: 1rem;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-description {
    color: var(--illus-ink-soft);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-weight: 500;
}

.about-features {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--illus-surface);
    border-radius: 20px;
    border: 2px solid var(--illus-border);
    box-shadow: 4px 4px 0 var(--illus-shadow);
    transition: transform 0.25s ease;
}

.feature-item:hover {
    transform: translate(4px, -4px);
    box-shadow: 6px 6px 0 var(--illus-shadow);
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-item h4 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--illus-ink);
}

.feature-item p {
    color: var(--illus-ink-soft);
    font-size: 0.9rem;
    font-weight: 500;
}

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

.visual-card {
    width: 300px;
    height: 300px;
    background: linear-gradient(145deg, var(--illus-primary) 0%, var(--illus-primary-soft) 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
    border: 3px solid var(--illus-ink);
    box-shadow: 10px 10px 0 var(--illus-shadow);
}

.illus-card-border {
    display: none;
}

.illus-card {
    border-radius: 24px 24px 24px 8px;
}

.visual-content {
    text-align: center;
    z-index: 1;
}

.visual-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: drop-shadow(2px 2px 0 var(--illus-shadow));
}

.visual-card h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--illus-ink);
}

.visual-card p {
    font-size: 1rem;
    color: var(--illus-ink-soft);
    font-weight: 600;
}

/* Careers Section */
.careers-section {
    padding: 100px 0;
    background: var(--illus-paper);
    border-top: 3px solid var(--illus-border);
}

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

.career-card {
    background: var(--illus-surface);
    padding: 2rem;
    border-radius: 24px;
    border: 3px solid var(--illus-border);
    box-shadow: 6px 6px 0 var(--illus-shadow);
    transition: all 0.25s ease;
}

.career-card:hover {
    transform: translate(-4px, -4px);
    border-color: var(--illus-primary);
    box-shadow: 10px 10px 0 var(--illus-shadow);
}

.career-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.career-card h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--illus-ink);
}

.career-card p {
    color: var(--illus-ink-soft);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-weight: 500;
}

.career-link {
    color: var(--illus-primary);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.25s ease;
    font-family: 'Nunito', sans-serif;
}

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

.careers-cta {
    text-align: center;
    padding: 3rem;
    background: var(--illus-surface);
    border-radius: 24px;
    border: 3px solid var(--illus-border);
    box-shadow: 6px 6px 0 var(--illus-shadow);
}

.careers-cta p {
    color: var(--illus-ink-soft);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--illus-bg);
    border-top: 3px solid var(--illus-border);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info .section-tag {
    margin-bottom: 1rem;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 1rem;
}

.contact-description {
    color: var(--illus-ink-soft);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-weight: 500;
}

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

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

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.125rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    color: var(--illus-ink);
}

.contact-item p {
    color: var(--illus-ink-soft);
    font-weight: 500;
}

.contact-link {
    color: var(--illus-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.25s ease;
}

.contact-link:hover {
    color: var(--illus-secondary);
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    padding: 12px 22px;
    background: var(--illus-surface);
    border: 2px solid var(--illus-border);
    border-radius: 14px;
    color: var(--illus-ink);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.25s ease;
    font-family: 'Nunito', sans-serif;
    box-shadow: 3px 3px 0 var(--illus-shadow);
}

.social-link:hover {
    background: var(--illus-primary);
    color: white;
    border-color: var(--illus-ink);
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 var(--illus-shadow);
}

.contact-form-wrapper {
    background: var(--illus-surface);
    padding: 2.5rem;
    border-radius: 24px;
    border: 3px solid var(--illus-border);
    box-shadow: 8px 8px 0 var(--illus-shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--illus-ink);
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--illus-bg);
    border: 2px solid var(--illus-border);
    border-radius: 14px;
    color: var(--illus-ink);
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.25s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--illus-primary);
    box-shadow: 0 0 0 4px var(--illus-shadow-soft);
}

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

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

/* Footer */
.footer {
    background: var(--illus-ink);
    color: var(--illus-paper);
    border-top: 3px solid var(--illus-primary);
    padding: 60px 0 30px;
}

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

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

.footer-nav .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-newsletter p {
    margin-bottom: 1rem;
    color: rgba(254, 247, 238, 0.85);
    font-size: 0.9rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Nunito', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--illus-paper);
}

.footer-logo .logo-icon {
    width: 36px;
    height: 36px;
}

.footer-logo .logo-icon svg {
    color: var(--illus-primary);
}

.footer .logo-icon .logo-illustration.logo-optics circle,
.footer .logo-icon .logo-illustration.logo-staffing circle {
    stroke: rgba(254, 247, 238, 0.9);
    fill: var(--illus-accent);
}

.footer .logo-icon .logo-illustration.logo-optics path,
.footer .logo-icon .logo-illustration.logo-staffing path {
    stroke: rgba(254, 247, 238, 0.95);
}

.footer .logo-icon .logo-illustration.logo-staffing circle:nth-child(2) {
    fill: var(--illus-primary);
}

.footer .logo-icon .logo-illustration.logo-stone rect {
    stroke: rgba(254, 247, 238, 0.9);
    fill: var(--illus-accent);
}

.footer .logo-icon .logo-illustration.logo-stone path {
    stroke: rgba(254, 247, 238, 0.95);
}

.footer .logo-icon .logo-illustration.logo-care path,
.footer .logo-icon .logo-illustration.logo-engineering path,
.footer .logo-icon .logo-illustration.logo-interiors path,
.footer .logo-icon .logo-illustration.logo-pharmacy path {
    fill: none;
    stroke: rgba(254, 247, 238, 0.95);
}

.footer .logo-icon .logo-illustration.logo-staffing path,
.footer .logo-icon .logo-illustration.logo-outpatient path,
.footer .logo-icon .logo-illustration.logo-software path,
.footer .logo-icon .logo-illustration.logo-security path,
.footer .logo-icon .logo-illustration.logo-development path,
.footer .logo-icon .logo-illustration.logo-wellness path,
.footer .logo-icon .logo-illustration.logo-legal path,
.footer .logo-icon .logo-illustration.logo-metal path,
.footer .logo-icon .logo-illustration.logo-farm path,
.footer .logo-icon .logo-illustration.logo-auto path {
    stroke: rgba(254, 247, 238, 0.9);
    fill: var(--illus-accent);
}

.footer .logo-icon .logo-illustration.logo-wellness path {
    fill: var(--illus-primary);
}

.footer .logo-icon .logo-illustration.logo-care circle,
.footer .logo-icon .logo-illustration.logo-engineering circle,
.footer .logo-icon .logo-illustration.logo-staffing circle,
.footer .logo-icon .logo-illustration.logo-outpatient circle,
.footer .logo-icon .logo-illustration.logo-wellness circle,
.footer .logo-icon .logo-illustration.logo-legal circle {
    stroke: rgba(254, 247, 238, 0.9);
    fill: var(--illus-primary);
}

.footer .logo-icon .logo-illustration.logo-wellness circle {
    fill: var(--illus-accent);
}

.footer .logo-icon .logo-illustration.logo-legal circle:first-of-type {
    fill: var(--illus-accent);
}

.footer .logo-icon .logo-illustration.logo-metal circle,
.footer .logo-icon .logo-illustration.logo-metal path {
    stroke: rgba(254, 247, 238, 0.9);
}

.footer .logo-icon .logo-illustration.logo-metal circle:first-of-type {
    fill: var(--illus-accent);
}

.footer .logo-icon .logo-illustration.logo-metal circle:last-of-type {
    fill: var(--illus-primary);
}

.footer .logo-icon .logo-illustration.logo-farm circle,
.footer .logo-icon .logo-illustration.logo-farm path {
    stroke: rgba(254, 247, 238, 0.9);
}

.footer .logo-icon .logo-illustration.logo-farm circle {
    fill: var(--illus-accent);
}

.footer .logo-icon .logo-illustration.logo-farm path:last-of-type {
    fill: var(--illus-primary);
}

.footer .logo-icon .logo-illustration.logo-auto rect {
    stroke: rgba(254, 247, 238, 0.9);
    fill: var(--illus-accent);
}

.footer .logo-icon .logo-illustration.logo-auto path {
    stroke: rgba(254, 247, 238, 0.9);
    fill: var(--illus-primary);
}

.footer .logo-icon .logo-illustration.logo-auto circle {
    stroke: rgba(254, 247, 238, 0.9);
    fill: rgba(254, 247, 238, 0.25);
}

.footer .logo-icon .logo-illustration.logo-software rect,
.footer .logo-icon .logo-illustration.logo-software circle,
.footer .logo-icon .logo-illustration.logo-software path {
    stroke: rgba(254, 247, 238, 0.9);
}

.footer .logo-icon .logo-illustration.logo-software rect:first-of-type {
    fill: var(--illus-accent);
}

.footer .logo-icon .logo-illustration.logo-software path {
    fill: var(--illus-primary);
}

.footer .logo-icon .logo-illustration.logo-software circle {
    fill: rgba(254, 247, 238, 0.25);
}

.footer .logo-icon .logo-illustration.logo-interiors rect,
.footer .logo-icon .logo-illustration.logo-pharmacy rect,
.footer .logo-icon .logo-illustration.logo-software rect,
.footer .logo-icon .logo-illustration.logo-trucking rect,
.footer .logo-icon .logo-illustration.logo-development rect {
    stroke: rgba(254, 247, 238, 0.9);
    fill: var(--illus-accent);
}

.footer .logo-icon .logo-illustration.logo-trucking rect:last-of-type {
    fill: var(--illus-primary);
}

.footer .logo-icon .logo-illustration.logo-development rect:last-of-type {
    fill: var(--illus-primary);
}

.footer .logo-icon .logo-illustration.logo-trucking circle {
    stroke: rgba(254, 247, 238, 0.9);
    fill: none;
}

.footer .logo-icon .logo-illustration.logo-lease rect:first-of-type {
    stroke: rgba(254, 247, 238, 0.9);
    fill: var(--illus-accent);
}

.footer .logo-icon .logo-illustration.logo-lease rect:nth-of-type(2) {
    stroke: rgba(254, 247, 238, 0.9);
    fill: var(--illus-primary);
}

.footer .logo-icon .logo-illustration.logo-lease circle {
    stroke: rgba(254, 247, 238, 0.9);
    fill: rgba(254, 247, 238, 0.25);
}

.footer-logo .logo-text {
    color: var(--illus-accent);
}

.footer-description {
    color: rgba(254, 247, 238, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
    font-weight: 500;
}

.footer-section h4 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.125rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--illus-paper);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(254, 247, 238, 0.85);
    text-decoration: none;
    transition: color 0.25s ease;
    font-weight: 500;
}

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

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(254, 247, 238, 0.15);
    border: 2px solid rgba(254, 247, 238, 0.3);
    border-radius: 12px;
    color: var(--illus-paper);
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
}

.newsletter-form input::placeholder {
    color: rgba(254, 247, 238, 0.6);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--illus-accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid rgba(254, 247, 238, 0.2);
    color: rgba(254, 247, 238, 0.7);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: var(--illus-surface);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s ease;
        border-left: 3px solid var(--illus-border);
        box-shadow: -8px 0 24px var(--illus-shadow);
    }

    .nav-menu.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .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-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-stats {
        gap: 2rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .about-text .section-title,
    .contact-info .section-title {
        text-align: center;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .careers-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-brand {
        max-width: none;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .doodle {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.25rem;
    }

    .visual-card {
        width: 260px;
        height: 260px;
    }

    .game-card {
        border-radius: 20px;
    }

    .btn {
        border-radius: 14px;
    }
}

/* ============================================================
   THEME: Pittsfield watercolor — washed paper & soft pigment
   ============================================================ */
body.theme-pittsfieldwater {
    --illus-papergrain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='.25'/%3E%3C/svg%3E");
    --illus-bg: #f7f4ef;
    --illus-paper: #ede8df;
    --illus-surface: #fcfaf6;
    --illus-ink: #35424a;
    --illus-ink-soft: #5a656d;
    --illus-ink-muted: #88949a;
    --illus-primary: #4f8faa;
    --illus-primary-soft: #7bb4c9;
    --illus-secondary: #c87b5f;
    --illus-accent: #d8c892;
    --illus-coral: #d4a27c;
    --illus-mint: #92bfa3;
    --illus-lavender: #bbb0c8;
    --illus-sky: #bcd8e8;
    --illus-shadow: rgba(53, 66, 74, 0.12);
    --illus-border: rgba(79, 143, 170, 0.22);
    --illus-border-2: rgba(53, 66, 74, 0.12);
    font-family: 'Source Sans 3', system-ui, -apple-system, sans-serif;
    letter-spacing: 0.015em;
    background-color: var(--illus-bg);
    background-image:
        radial-gradient(ellipse 72% 55% at 18% 18%, rgba(79, 143, 170, 0.18), transparent 50%),
        radial-gradient(ellipse 55% 45% at 88% 30%, rgba(200, 123, 95, 0.14), transparent 48%),
        radial-gradient(ellipse 42% 40% at 52% 88%, rgba(216, 200, 146, 0.16), transparent 45%);
}

body.theme-pittsfieldwater::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.085;
    background-image: var(--illus-papergrain);
    background-size: 260px 260px;
    mix-blend-mode: multiply;
}

body.theme-pittsfieldwater .hero .container,
body.theme-pittsfieldwater section,
body.theme-pittsfieldwater .footer {
    position: relative;
    z-index: 1;
}

body.theme-pittsfieldwater .navbar {
    z-index: 1000;
}

body.theme-pittsfieldwater .logo,
body.theme-pittsfieldwater .hero-title,
body.theme-pittsfieldwater .section-title,
body.theme-pittsfieldwater .stat-number,
body.theme-pittsfieldwater .visual-card h3 {
    font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
    font-weight: 600;
}

body.theme-pittsfieldwater .hero-background .watercolor-wash {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    mix-blend-mode: multiply;
    opacity: 0.72;
    background:
        radial-gradient(ellipse 80% 62% at 75% 20%, rgba(180, 216, 232, 0.45), transparent 55%),
        radial-gradient(ellipse 70% 50% at 12% 70%, rgba(200, 123, 95, 0.22), transparent 52%),
        radial-gradient(ellipse 58% 48% at 55% 50%, rgba(147, 191, 163, 0.15), transparent 50%);
}

body.theme-pittsfieldwater .navbar {
    background: rgba(252, 250, 246, 0.88);
    border-bottom-color: rgba(79, 143, 170, 0.28);
    backdrop-filter: blur(12px);
}

body.theme-pittsfieldwater .nav-link {
    color: var(--illus-ink-soft);
}

body.theme-pittsfieldwater .nav-link:hover {
    color: var(--illus-primary);
}

body.theme-pittsfieldwater .hamburger span {
    background: var(--illus-ink);
}

body.theme-pittsfieldwater .gradient-overlay {
    background:
        radial-gradient(ellipse 74% 50% at 28% 40%, rgba(252, 250, 246, 0.55) 0%, transparent 54%),
        radial-gradient(ellipse 58% 44% at 82% 65%, rgba(79, 143, 170, 0.12) 0%, transparent 48%),
        radial-gradient(ellipse 44% 36% at 90% 12%, rgba(200, 123, 95, 0.1) 0%, transparent 42%);
}

body.theme-pittsfieldwater .illus-pattern {
    opacity: 0.35;
    background-image:
        radial-gradient(circle at 30% 30%, rgba(79, 143, 170, 0.07) 0.8px, transparent 1px),
        radial-gradient(circle at 70% 72%, rgba(53, 66, 74, 0.05) 0.8px, transparent 1px);
    background-size: 44px 44px;
}

body.theme-pittsfieldwater .blob {
    opacity: 0.62;
    filter: blur(56px);
}

body.theme-pittsfieldwater .blob-1 { background: rgba(180, 216, 232, 0.55); }
body.theme-pittsfieldwater .blob-2 { background: rgba(200, 123, 95, 0.35); }
body.theme-pittsfieldwater .blob-3 { background: rgba(147, 191, 163, 0.4); }

body.theme-pittsfieldwater .hero-badge,
body.theme-pittsfieldwater .illus-badge {
    border-radius: 999px;
    border: 2px dashed rgba(79, 143, 170, 0.35);
    background: rgba(252, 250, 246, 0.78);
    color: var(--illus-primary);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.75),
        0 12px 32px rgba(79, 143, 170, 0.12);
}

body.theme-pittsfieldwater .illus-tag,
body.theme-pittsfieldwater .section-tag {
    border-radius: 999px;
    border-color: rgba(79, 143, 170, 0.22);
    background: rgba(255, 255, 255, 0.82);
    color: var(--illus-primary);
    box-shadow: 0 3px 0 rgba(79, 143, 170, 0.12);
}

body.theme-pittsfieldwater .hero-subtitle {
    color: var(--illus-ink-soft);
}

body.theme-pittsfieldwater .btn {
    border-radius: 999px;
}

body.theme-pittsfieldwater .btn-primary {
    background: linear-gradient(150deg, var(--illus-primary-soft) 0%, var(--illus-primary) 100%);
    border-color: rgba(53, 66, 74, 0.18);
    color: #fdfcfa;
    box-shadow:
        0 14px 0 rgba(79, 143, 170, 0.18),
        inset 0 2px 0 rgba(255, 255, 255, 0.35);
}

body.theme-pittsfieldwater .btn-secondary {
    background: rgba(252, 250, 246, 0.95);
    border: 2px solid rgba(200, 123, 95, 0.42);
    color: var(--illus-ink);
    box-shadow: 0 10px 0 rgba(200, 123, 95, 0.16);
}

body.theme-pittsfieldwater .illus-card,
body.theme-pittsfieldwater .visual-card,
body.theme-pittsfieldwater .contact-form-wrapper,
body.theme-pittsfieldwater .career-card,
body.theme-pittsfieldwater .feature-item {
    border-radius: 26px;
    border: 2px solid rgba(79, 143, 170, 0.16);
    background: rgba(252, 250, 246, 0.88);
    box-shadow:
        0 10px 38px rgba(53, 66, 74, 0.08),
        inset 0 2px 0 rgba(255, 255, 255, 0.75);
}

body.theme-pittsfieldwater .careers-cta {
    border-radius: 26px;
    background: rgba(252, 250, 246, 0.78);
}

body.theme-pittsfieldwater .form-group label {
    color: var(--illus-ink-soft);
    font-weight: 600;
}

body.theme-pittsfieldwater .form-group input,
body.theme-pittsfieldwater .form-group textarea {
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(79, 143, 170, 0.22);
    color: var(--illus-ink);
    border-radius: 18px;
}

body.theme-pittsfieldwater .games-section {
    background: linear-gradient(180deg, rgba(237, 232, 223, 0.55), rgba(247, 244, 239, 0.35));
}

body.theme-pittsfieldwater .game-card {
    border-color: rgba(79, 143, 170, 0.15);
}

body.theme-pittsfieldwater .game-1 { background: linear-gradient(148deg, #bfe0ec 0%, #7eb6c9 88%); }
body.theme-pittsfieldwater .game-2 { background: linear-gradient(148deg, #f0d9c9 0%, #d4987d 92%); }
body.theme-pittsfieldwater .game-3 { background: linear-gradient(148deg, #cde5d7 0%, #8eb99c 92%); }
body.theme-pittsfieldwater .game-4 { background: linear-gradient(148deg, #ead9f0 0%, #bfb0cf 94%); }

body.theme-pittsfieldwater .footer {
    background:
        radial-gradient(circle at 10% 0%, rgba(79, 143, 170, 0.14), transparent 35%),
        linear-gradient(180deg, #3b4f55 0%, #2f3b40 100%);
    border-top: 4px solid rgba(180, 216, 232, 0.45);
}

body.theme-pittsfieldwater .footer-description,
body.theme-pittsfieldwater .footer-links a,
body.theme-pittsfieldwater .footer-bottom p,
body.theme-pittsfieldwater .footer-newsletter p {
    color: rgba(240, 246, 248, 0.88);
}

body.theme-pittsfieldwater .footer-logo,
body.theme-pittsfieldwater .footer-section h4 {
    color: #f5fbfd;
}

body.theme-pittsfieldwater .footer .logo-icon .logo-illustration.logo-realty path {
    stroke: rgba(245, 251, 253, 0.88);
}

body.theme-pittsfieldwater .footer .logo-icon .logo-illustration.logo-realty path:nth-of-type(2) {
    fill: rgba(180, 216, 232, 0.22);
}

body.theme-pittsfieldwater .footer .logo-icon .logo-illustration.logo-realty rect {
    fill: rgba(79, 143, 170, 0.35);
}

body.theme-pittsfieldwater .newsletter-form input {
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(180, 216, 232, 0.35);
    color: #f5fbfd;
}

body.theme-pittsfieldwater .footer-bottom {
    border-top-color: rgba(245, 251, 253, 0.18);
}

body.theme-pittsfieldwater .logo-text {
    color: var(--illus-primary);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}

body.theme-pittsfieldwater .section-description,
body.theme-pittsfieldwater .about-description,
body.theme-pittsfieldwater .contact-description {
    color: var(--illus-ink-soft);
}

body.theme-pittsfieldwater .stat-label {
    color: var(--illus-ink-muted);
}

body.theme-pittsfieldwater .stat-number {
    color: var(--illus-primary);
}

body.theme-pittsfieldwater .title-line.highlight {
    color: var(--illus-secondary);
    text-shadow:
        0 2px 0 rgba(255, 252, 248, 0.75),
        0 22px 30px rgba(200, 123, 95, 0.18);
}

body.theme-pittsfieldwater .doodle {
    opacity: 0.5;
}

body.theme-pittsfieldwater .hero-content {
    text-align: center;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

body.theme-pittsfieldwater .hero-buttons {
    justify-content: center;
}

body.theme-pittsfieldwater .hero-stats {
    margin-top: 3rem;
}

@media (max-width: 900px) {
    body.theme-pittsfieldwater .logo-text {
        font-size: clamp(0.76rem, 2.75vw, 1.06rem);
        line-height: 1.22;
    }
}

/* ============================================================
   THEME: Slape dark mode
   ============================================================ */
body.theme-slape-dark {
    --illus-bg: #0b0f17;
    --illus-paper: #111827;
    --illus-surface: #1a2233;
    --illus-ink: #e5e7eb;
    --illus-ink-soft: #cbd5e1;
    --illus-ink-muted: #94a3b8;
    --illus-primary: #60a5fa;
    --illus-primary-soft: #93c5fd;
    --illus-secondary: #22d3ee;
    --illus-accent: #c084fc;
    --illus-coral: #f472b6;
    --illus-mint: #34d399;
    --illus-lavender: #a78bfa;
    --illus-sky: #38bdf8;
    --illus-shadow: rgba(2, 6, 23, 0.5);
    --illus-shadow-soft: rgba(96, 165, 250, 0.25);
    --illus-border: rgba(148, 163, 184, 0.22);
    --illus-border-2: rgba(148, 163, 184, 0.36);
    background:
        radial-gradient(circle at 12% 10%, rgba(56, 189, 248, 0.14), transparent 30%),
        radial-gradient(circle at 88% 20%, rgba(192, 132, 252, 0.16), transparent 32%),
        radial-gradient(circle at 50% 90%, rgba(52, 211, 153, 0.1), transparent 30%),
        var(--illus-bg);
}

body.theme-slape-dark .watercolor-wash {
    display: none;
}

body.theme-slape-dark .navbar {
    background: rgba(11, 15, 23, 0.9);
    border-bottom-color: rgba(148, 163, 184, 0.28);
}

body.theme-slape-dark .hero-badge,
body.theme-slape-dark .section-tag,
body.theme-slape-dark .illus-tag {
    background: rgba(26, 34, 51, 0.92);
    border-color: rgba(148, 163, 184, 0.4);
    color: var(--illus-primary-soft);
    box-shadow: 0 10px 25px rgba(2, 6, 23, 0.35);
}

body.theme-slape-dark .title-line.highlight,
body.theme-slape-dark .logo-text {
    color: var(--illus-primary-soft);
    text-shadow: none;
}

body.theme-slape-dark .btn-primary {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    border-color: rgba(147, 197, 253, 0.5);
    color: #f8fafc;
}

body.theme-slape-dark .btn-secondary {
    background: rgba(17, 24, 39, 0.95);
    color: var(--illus-ink);
    border-color: rgba(148, 163, 184, 0.45);
}

body.theme-slape-dark .games-section,
body.theme-slape-dark .careers-section,
body.theme-slape-dark .about-section,
body.theme-slape-dark .contact-section {
    background: transparent;
    border-top-color: rgba(148, 163, 184, 0.2);
}

body.theme-slape-dark .visual-card,
body.theme-slape-dark .career-card,
body.theme-slape-dark .feature-item,
body.theme-slape-dark .contact-form-wrapper,
body.theme-slape-dark .careers-cta {
    background: rgba(26, 34, 51, 0.9);
    border-color: rgba(148, 163, 184, 0.3);
    box-shadow: 0 12px 26px rgba(2, 6, 23, 0.4);
}

body.theme-slape-dark .game-overlay {
    background: linear-gradient(to top, rgba(2, 6, 23, 0.95) 0%, transparent 60%);
}

body.theme-slape-dark .form-group input,
body.theme-slape-dark .form-group textarea,
body.theme-slape-dark .newsletter-form input,
body.theme-slape-dark .social-link {
    background: rgba(15, 23, 42, 0.85);
    border-color: rgba(148, 163, 184, 0.35);
    color: var(--illus-ink);
}

body.theme-slape-dark .footer {
    background: #060a12;
    border-top-color: rgba(96, 165, 250, 0.4);
}

/* ============================================================
   THEME: Chip's Pixar 3D cartoon
   ============================================================ */
body.theme-chips-pixar {
    --illus-bg: #dff3ff;
    --illus-paper: #edf8ff;
    --illus-surface: #ffffff;
    --illus-ink: #20314a;
    --illus-ink-soft: #385072;
    --illus-ink-muted: #5b7394;
    --illus-primary: #4f8cff;
    --illus-primary-soft: #7db1ff;
    --illus-secondary: #3ecf8e;
    --illus-accent: #ffd166;
    --illus-coral: #ff8da1;
    --illus-mint: #54d6ac;
    --illus-lavender: #9ca7ff;
    --illus-sky: #7bd8ff;
    --illus-shadow: rgba(32, 49, 74, 0.18);
    --illus-shadow-soft: rgba(79, 140, 255, 0.28);
    --illus-border: rgba(79, 140, 255, 0.26);
    --illus-border-2: rgba(32, 49, 74, 0.2);
    font-family: 'Nunito', system-ui, -apple-system, sans-serif;
    background:
        radial-gradient(circle at 14% 12%, rgba(255, 209, 102, 0.4), transparent 28%),
        radial-gradient(circle at 82% 18%, rgba(123, 216, 255, 0.42), transparent 32%),
        radial-gradient(circle at 78% 80%, rgba(84, 214, 172, 0.3), transparent 30%),
        linear-gradient(180deg, #dff3ff 0%, #cfe9ff 100%);
}

body.theme-chips-pixar .logo,
body.theme-chips-pixar .hero-title,
body.theme-chips-pixar .section-title,
body.theme-chips-pixar .stat-number,
body.theme-chips-pixar .visual-card h3 {
    font-family: 'Baloo 2', 'Nunito', sans-serif;
    font-weight: 700;
    letter-spacing: 0.01em;
}

body.theme-chips-pixar .navbar {
    background: rgba(255, 255, 255, 0.82);
    border-bottom: 3px solid rgba(79, 140, 255, 0.24);
    backdrop-filter: blur(12px);
}

body.theme-chips-pixar .watercolor-wash {
    display: none;
}

body.theme-chips-pixar .gradient-overlay {
    background:
        radial-gradient(ellipse 60% 45% at 20% 30%, rgba(255, 255, 255, 0.55), transparent 55%),
        radial-gradient(ellipse 50% 38% at 78% 70%, rgba(79, 140, 255, 0.14), transparent 58%),
        radial-gradient(ellipse 46% 34% at 86% 18%, rgba(255, 141, 161, 0.18), transparent 52%);
}

body.theme-chips-pixar .hero-badge,
body.theme-chips-pixar .section-tag,
body.theme-chips-pixar .illus-tag {
    background: linear-gradient(180deg, #ffffff 0%, #eaf4ff 100%);
    border: 2px solid rgba(79, 140, 255, 0.35);
    color: #3f6ab6;
    box-shadow: 0 8px 0 rgba(79, 140, 255, 0.15);
}

body.theme-chips-pixar .title-line.highlight,
body.theme-chips-pixar .logo-text {
    color: #3f73db;
    text-shadow: 0 2px 0 rgba(255, 255, 255, 0.8);
}

body.theme-chips-pixar .btn {
    border-radius: 999px;
    border-width: 2px;
    box-shadow: 0 8px 0 var(--illus-shadow);
}

body.theme-chips-pixar .btn-primary {
    background: linear-gradient(145deg, #5ca4ff 0%, #4879ff 100%);
    border-color: rgba(32, 49, 74, 0.2);
    color: #ffffff;
}

body.theme-chips-pixar .btn-secondary {
    background: linear-gradient(145deg, #ffffff 0%, #eef6ff 100%);
    border-color: rgba(79, 140, 255, 0.35);
    color: var(--illus-ink);
}

body.theme-chips-pixar .games-section,
body.theme-chips-pixar .about-section,
body.theme-chips-pixar .careers-section,
body.theme-chips-pixar .contact-section {
    background: transparent;
    border-top-color: rgba(79, 140, 255, 0.2);
}

body.theme-chips-pixar .visual-card,
body.theme-chips-pixar .career-card,
body.theme-chips-pixar .feature-item,
body.theme-chips-pixar .contact-form-wrapper,
body.theme-chips-pixar .careers-cta,
body.theme-chips-pixar .game-card {
    border-color: rgba(79, 140, 255, 0.28);
    border-width: 2px;
    box-shadow:
        0 14px 30px rgba(63, 115, 219, 0.16),
        0 8px 0 rgba(79, 140, 255, 0.14);
}

body.theme-chips-pixar .visual-card,
body.theme-chips-pixar .career-card,
body.theme-chips-pixar .feature-item,
body.theme-chips-pixar .contact-form-wrapper,
body.theme-chips-pixar .careers-cta {
    background: linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
    border-radius: 24px;
}

body.theme-chips-pixar .game-card:hover {
    transform: translateY(-8px) scale(1.02);
}

body.theme-chips-pixar .game-1 { background: linear-gradient(145deg, #79d77e 0%, #4ac26c 100%); }
body.theme-chips-pixar .game-2 { background: linear-gradient(145deg, #71c6ff 0%, #4f8cff 100%); }
body.theme-chips-pixar .game-3 { background: linear-gradient(145deg, #ffd166 0%, #ffb347 100%); }
body.theme-chips-pixar .game-4 { background: linear-gradient(145deg, #ff9ab4 0%, #ff7e98 100%); }

body.theme-chips-pixar .game-overlay {
    background: linear-gradient(to top, rgba(32, 49, 74, 0.88) 0%, transparent 60%);
}

body.theme-chips-pixar .form-group input,
body.theme-chips-pixar .form-group textarea,
body.theme-chips-pixar .newsletter-form input {
    background: #f8fbff;
    border-color: rgba(79, 140, 255, 0.3);
}

body.theme-chips-pixar .footer {
    background: linear-gradient(180deg, #3d66ba 0%, #2d4d97 100%);
    border-top: 4px solid rgba(255, 209, 102, 0.9);
}

body.theme-chips-pixar .footer-description,
body.theme-chips-pixar .footer-links a,
body.theme-chips-pixar .footer-bottom,
body.theme-chips-pixar .footer-newsletter p,
body.theme-chips-pixar .footer-logo,
body.theme-chips-pixar .footer-section h4 {
    color: #f4f8ff;
}
