/* 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-pill {
    width: 40px;
    height: 20px;
    top: 18%;
    right: 15%;
    color: var(--illus-primary);
    animation-delay: 0s;
}

.doodle-cross {
    width: 32px;
    height: 32px;
    bottom: 25%;
    left: 12%;
    color: var(--illus-secondary);
    animation-delay: 3s;
}

.doodle-heart {
    width: 28px;
    height: 28px;
    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 {
    stroke: rgba(254, 247, 238, 0.9);
    fill: var(--illus-accent);
}

.footer .logo-icon .logo-illustration.logo-optics path {
    stroke: rgba(254, 247, 238, 0.95);
}

.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;
    }
}
