/* Reset and Base Styles */
@font-face {
    font-family: 'Gagalin';
    src: url('Gagalin-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Palett centrerad kring sidbakgrund #076766 + guld från landningsramen */
    --page-bg: #076766;
    --primary-color: #0d8a89;
    --primary-dark: #044544;
    --secondary-color: #055453;
    --accent-turquoise: #4eb8b7;
    --accent-orange: #ffb347;
    --accent-yellow: #ffd93d;
    --accent-gold: #d4af37;
    --accent-gold-light: #f0d878;
    --accent-gold-bright: #ffe9a8;
    --accent-gold-soft: rgba(255, 215, 120, 0.45);
    --accent-gold-glow: rgba(255, 228, 150, 0.72);
    --contact-text: #034d4c;
    --accent-pink: #ff8fa3;
    --accent-purple: #7eb8e8;
    --accent-blue: #076766;
    --accent-green: #5ecf7a;
    --text-dark: #023a39;
    --text-light: #3a8a89;
    --text-cream: #FFFFF6;
    --heading-color: #FFFFF6;
    --subtext-color: #FFFFF6;
    --section-wave-height: 5.5rem;
    --text-on-ocean: #f0fafc;
    --bg-ocean: #055453;
    --bg-ocean-deep: #023332;
    --bg-sky: #076766;
    --bg-sky-light: #0a8281;
    --bg-sand: #05504f;
    --bg-sand-warm: #044241;
    --bg-parchment: var(--bg-sky-light);
    --bg-parchment-deep: var(--bg-sky);
    --bg-wood: var(--bg-ocean-deep);
    --bg-wood-light: var(--bg-ocean);
    --bg-light: var(--bg-sky-light);
    --bg-white: #ffffff;
    --border-color: #2d7a79;
    --border-wood: #4eb8b7;
    --shadow-sm: 0 2px 10px rgba(7, 103, 102, 0.12);
    --shadow-md: 0 8px 28px rgba(7, 103, 102, 0.16);
    --shadow-lg: 0 16px 44px rgba(7, 103, 102, 0.2);
    --shadow-xl: 0 24px 56px rgba(7, 103, 102, 0.24);
    --shadow-color: 0 20px 50px rgba(7, 103, 102, 0.28);
    --gradient-sky: linear-gradient(180deg, #0a8281 0%, #076766 50%, #044544 100%);
    --gradient-page: linear-gradient(180deg, #0a8281 0%, #076766 55%, #044544 100%);
    --gradient-gold-fade: linear-gradient(
        180deg,
        transparent 0%,
        var(--accent-gold-soft) 42%,
        var(--accent-gold-glow) 72%,
        var(--accent-gold-soft) 100%
    );
    --gradient-ocean: linear-gradient(135deg, var(--accent-turquoise) 0%, var(--primary-color) 50%, var(--secondary-color) 100%);
    --transition: all 0.45s cubic-bezier(0.34, 1.2, 0.64, 1);
    --transition-fast: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body.menu-open {
    overflow: hidden;
    overscroll-behavior: none;
    width: 100%;
    height: 100%;
}

body {
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--subtext-color);
    background-color: var(--page-bg);
    background-image: var(--gradient-page);
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}

/* Typography - Bold & Dramatic */
h1, h2, h3, h4, h5, h6,
.hero-title,
.section-title,
.feature-card h3,
.contact-item h3,
.footer-section h3,
.footer-section h4 {
    font-family: 'Gagalin', cursive, sans-serif;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.28;
    padding-top: 0.12em;
    overflow: visible;
    color: var(--heading-color);
    text-shadow: none;
}

/* Undertexter – samma vita nyans (utom i feature-korten, se .feature-card p) */
.section-subtitle,
.features-subtitle,
.features-eyebrow,
.hero-subtitle,
.about-text > p,
.about-text .about-signoff,
.about-text .about-authors,
.about .section-subtitle,
.footer-section p,
.footer-section a,
.footer-bottom,
.footer-bottom p {
    color: var(--subtext-color);
}

/* Mörk text i ljusa formulär, citat och quiz-bubbla */
.hero-quiz-question,
.form-group label,
.form-group input,
.form-group textarea,
.about-quote-text,
.quote-author {
    color: var(--text-dark);
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Navigation – ljus ocean */
.navbar {
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--secondary-color) 50%, var(--primary-color) 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 3px solid var(--accent-turquoise);
    box-shadow: var(--shadow-md);
}

.navbar.scrolled {
    background: linear-gradient(90deg, var(--bg-ocean-deep) 0%, var(--secondary-color) 100%);
    border-bottom-color: var(--accent-yellow);
}

.nav-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.25rem 0;
    position: relative;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.logo h1 {
    display: none;
}

/* Dölj 8.svg-illustrationen helt */
img[src*="8.svg"] {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 900px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-on-ocean);
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 0.75rem 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-yellow), var(--accent-turquoise));
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-yellow);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
    pointer-events: auto;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-toggle span {
    width: 32px;
    height: 4px;
    background: var(--accent-turquoise);
    transition: var(--transition);
    border-radius: 4px;
}

/* Hero Section – landningssida med frågeanimation */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 1.5rem 3rem;
    margin: 0;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background-color: var(--page-bg);
}

.hero-map-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url("images and video/framsida.svg");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    pointer-events: none;
}

.hero-map-mobile {
    display: none;
}

.hero-bg-decoration,
.hero-content,
.hero-image {
    display: none;
}

/* Frågeanimation – mjuka CSS-övergångar */
.hero-quiz {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 648px;
    margin: 0 auto;
    transform: translateY(-1vh);
    pointer-events: none;
}

.hero-quiz-stage {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: min(47vh, 432px);
    transform: translateY(0.75vh);
    transition: opacity 0.48s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-quiz-stage.is-cycle-paused {
    opacity: 0;
    pointer-events: none;
}

.hero-quiz-image-wrap {
    position: relative;
    width: min(55vw, 468px);
    height: min(47vh, 378px);
    border-radius: 20px;
    overflow: hidden;
}

.hero-quiz-image-clip {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    overflow: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.hero-quiz-image {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -50%) scale(0.2);
    transition:
        transform 0.9s cubic-bezier(0.22, 1.15, 0.36, 1),
        opacity 0.55s ease;
    will-change: transform, opacity;
}

.hero-quiz-image.is-active {
    z-index: 3;
}

.hero-quiz-image.is-behind {
    z-index: 2;
}

.hero-quiz-image.is-mounted {
    visibility: visible;
}

.hero-quiz-image.from-left {
    opacity: 0;
    transform: translate(calc(-50% - 75vw), -50%) scale(0.18);
}

.hero-quiz-image.from-top {
    opacity: 0;
    transform: translate(-50%, calc(-50% - 55vh)) scale(0.18);
}

.hero-quiz-image.from-right {
    opacity: 0;
    transform: translate(calc(-50% + 75vw), -50%) scale(0.18);
}

.hero-quiz-image.is-settled {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.hero-quiz-image.is-leaving {
    opacity: 0;
    transform: translate(-50%, -46%) scale(0.92);
    transition:
        transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.45s ease;
}

.hero-quiz-image[hidden]:not(.is-mounted) {
    display: none !important;
}

.hero-quiz-image.is-parked {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none;
}

.hero-quiz-question {
    --question-ease: cubic-bezier(0.16, 1, 0.3, 1);
    --question-enter-duration: 1.15s;
    position: relative;
    z-index: 4;
    flex-shrink: 0;
    width: min(55vw, 504px);
    margin: 0;
    padding: 1rem 1.575rem;
    text-align: center;
    font-family: 'Gagalin', cursive, sans-serif;
    font-size: clamp(1.22rem, 4.05vw, 1.8rem);
    font-weight: 400;
    line-height: 1.25;
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.92);
    border: 3px solid var(--primary-color);
    border-radius: 100px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.96);
    transition:
        transform var(--question-enter-duration) var(--question-ease),
        opacity calc(var(--question-enter-duration) * 0.85) var(--question-ease),
        visibility 0s linear calc(var(--question-enter-duration) * 0.85);
    will-change: transform, opacity;
    backface-visibility: hidden;
}

.hero-quiz-question.is-mounted.from-left,
.hero-quiz-question.is-mounted.from-top,
.hero-quiz-question.is-mounted.from-right {
    visibility: visible;
}

.hero-quiz-question.from-left {
    opacity: 0;
    transform: translateX(-22vw) translateY(14px) scale(0.94);
    transition:
        transform var(--question-enter-duration) var(--question-ease),
        opacity calc(var(--question-enter-duration) * 0.9) var(--question-ease) 0.1s,
        visibility 0s linear calc(var(--question-enter-duration) + 0.1s);
}

.hero-quiz-question.from-top {
    opacity: 0;
    transform: translateY(48px) scale(0.94);
    transition:
        transform var(--question-enter-duration) var(--question-ease),
        opacity calc(var(--question-enter-duration) * 0.9) var(--question-ease) 0.08s,
        visibility 0s linear calc(var(--question-enter-duration) + 0.08s);
}

.hero-quiz-question.from-right {
    opacity: 0;
    transform: translateX(22vw) translateY(14px) scale(0.94);
    transition:
        transform var(--question-enter-duration) var(--question-ease),
        opacity calc(var(--question-enter-duration) * 0.9) var(--question-ease) 0.1s,
        visibility 0s linear calc(var(--question-enter-duration) + 0.1s);
}

.hero-quiz-question.is-visible {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
    transition:
        transform var(--question-enter-duration) var(--question-ease),
        opacity calc(var(--question-enter-duration) * 0.9) var(--question-ease),
        visibility 0s;
}

.hero-quiz-question:not(.is-visible):not(.is-hiding):not(.from-left):not(.from-top):not(.from-right) {
    visibility: hidden;
    opacity: 0;
    padding: 0;
    border-color: transparent;
    box-shadow: none;
    min-height: 0;
}

.hero-quiz-question.is-hiding {
    visibility: visible;
    opacity: 0;
    transform: translateY(16px) scale(0.97);
    transition:
        transform 0.55s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0s linear 0.5s;
}

/* Mobil: undvik zoom/jank vid scroll (iOS viewport + fixed background) */
@media (max-width: 768px) {
    html {
        scroll-behavior: auto;
    }

    body {
        background-color: var(--page-bg);
        background-image: var(--gradient-page);
        background-attachment: scroll;
        overscroll-behavior-y: none;
    }

    .hero {
        touch-action: pan-y;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-quiz-image,
    .hero-quiz-question {
        transition-duration: 0.01ms !important;
    }

    .retailers-track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        gap: 2rem;
    }

    .retailers-logo-crop[aria-hidden="true"] {
        display: none;
    }

    .retailers-marquee {
        mask-image: none;
        -webkit-mask-image: none;
    }

    .games::after,
    .retailers::after,
    .about::after {
        animation: none;
    }

}

.explosion-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.explosion-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.particle-1 {
    background: var(--primary-color);
    box-shadow: 0 0 12px rgba(110, 200, 216, 0.45);
    animation: explode-1 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.particle-2 {
    background: var(--secondary-color);
    box-shadow: 0 0 12px rgba(32, 152, 184, 0.45);
    animation: explode-2 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.particle-3 {
    background: var(--accent-yellow);
    box-shadow: 0 0 12px rgba(255, 217, 61, 0.5);
    animation: explode-3 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.particle-4 {
    background: var(--accent-orange);
    box-shadow: 0 0 12px rgba(255, 179, 71, 0.45);
    animation: explode-4 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.particle-5 {
    background: var(--accent-purple);
    box-shadow: 0 0 12px rgba(126, 184, 232, 0.45);
    animation: explode-5 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.particle-6 {
    background: var(--accent-green);
    box-shadow: 0 0 12px rgba(94, 207, 122, 0.5);
    animation: explode-6 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.particle-7 {
    background: var(--primary-dark);
    box-shadow: 0 0 12px rgba(51, 134, 157, 0.45);
    animation: explode-7 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.particle-8 {
    background: var(--accent-blue);
    box-shadow: 0 0 12px rgba(61, 159, 212, 0.45);
    animation: explode-8 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-svg-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 24px 48px rgba(110, 200, 216, 0.25));
    animation: spin-grow-pop 2.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 0;
    transform: scale(0) rotate(0deg);
}

.hero-badge {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--accent-turquoise) 100%);
    color: var(--text-dark);
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.875rem;
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-sm);
    animation: bounce-bold 2s ease infinite;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.hero-content {
    animation: fadeInUp 1.2s ease;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 800;
    line-height: 1.18;
    padding-top: 0.14em;
    margin-bottom: 2.5rem;
    color: var(--heading-color);
    position: relative;
    z-index: 1;
    letter-spacing: -0.04em;
}

.hero-title span {
    color: var(--heading-color);
    -webkit-text-fill-color: var(--heading-color);
    display: block;
    margin-top: 0.5rem;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    margin-bottom: 4rem;
    line-height: 1.8;
    font-weight: 400;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    transform: perspective(1000px) rotateY(-5deg);
}

.hero-globe-container {
    width: 100%;
    height: 700px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}


.hero-svg-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(110, 200, 216, 0.2));
}

/* Buttons - EXTRA BOLD */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 3rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.8s, height 0.8s;
}

.btn:hover::before {
    width: 400px;
    height: 400px;
}

.btn-primary {
    background: var(--gradient-ocean);
    color: var(--text-cream);
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.35);
    position: relative;
    z-index: 1;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--accent-turquoise) 0%, var(--primary-dark) 100%);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--primary-dark);
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 1;
}

.btn-secondary:hover {
    background: var(--accent-turquoise);
    color: var(--text-dark);
    transform: translateY(-4px) scale(1.04);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-turquoise);
}

/* Sektionsövergångar – mjuka våglinjer och gradienter */
.games,
.retailers,
.features,
.about,
.contact {
    isolation: isolate;
}

.games {
    background:
        linear-gradient(
            180deg,
            var(--page-bg) 0%,
            var(--page-bg) 18%,
            var(--page-bg) 72%,
            color-mix(in srgb, var(--accent-gold) 22%, var(--page-bg)) 90%,
            var(--bg-sand) 100%
        );
}

.games::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 130%;
    height: var(--section-wave-height);
    transform: translateX(-50%) translateY(42%);
    background:
        linear-gradient(
            180deg,
            var(--accent-gold-bright) 0%,
            var(--accent-gold-glow) 28%,
            var(--accent-gold-soft) 52%,
            var(--bg-sand) 100%
        );
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    box-shadow:
        0 -4px 24px rgba(255, 220, 130, 0.55),
        0 -10px 48px rgba(212, 175, 55, 0.35);
    animation: gold-wave-shimmer 5s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.retailers {
    background:
        linear-gradient(
            180deg,
            var(--bg-sand) 0%,
            color-mix(in srgb, var(--accent-gold) 10%, var(--bg-sand-warm)) 82%,
            var(--bg-sky) 100%
        );
    margin-top: calc(var(--section-wave-height) * -0.45);
}

.retailers::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 130%;
    height: var(--section-wave-height);
    transform: translateX(-50%) translateY(42%);
    background:
        linear-gradient(
            180deg,
            var(--accent-gold-bright) 0%,
            var(--accent-gold-glow) 30%,
            var(--accent-gold-soft) 55%,
            var(--bg-sky) 100%
        );
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    box-shadow:
        0 -4px 24px rgba(255, 220, 130, 0.5),
        0 -10px 44px rgba(212, 175, 55, 0.32);
    animation: gold-wave-shimmer 5.5s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.features {
    background:
        linear-gradient(
            180deg,
            var(--bg-sky) 0%,
            color-mix(in srgb, var(--accent-gold) 8%, var(--bg-sky-light)) 38%,
            var(--bg-sand) 100%
        );
    clip-path: polygon(0 2.5%, 100% 0%, 100% 97.5%, 0 100%);
    margin-top: calc(var(--section-wave-height) * -0.35);
}

.about {
    background:
        linear-gradient(
            180deg,
            var(--bg-sand) 0%,
            color-mix(in srgb, var(--accent-gold) 12%, var(--page-bg)) 20%,
            var(--page-bg) 76%,
            var(--bg-sand-warm) 100%
        );
    clip-path: polygon(0 2.5%, 100% 0%, 100% 97.5%, 0 100%);
    margin-top: calc(var(--section-wave-height) * -0.35);
}

.about::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 130%;
    height: var(--section-wave-height);
    transform: translateX(-50%) translateY(42%);
    background:
        linear-gradient(
            180deg,
            var(--accent-gold-bright) 0%,
            var(--accent-gold-glow) 28%,
            var(--accent-gold-soft) 52%,
            var(--bg-sand-warm) 100%
        );
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    box-shadow:
        0 -4px 24px rgba(255, 220, 130, 0.48),
        0 -10px 44px rgba(212, 175, 55, 0.3);
    animation: gold-wave-shimmer 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.contact {
    background:
        linear-gradient(
            180deg,
            var(--bg-sand-warm) 0%,
            color-mix(in srgb, var(--accent-gold) 10%, var(--bg-ocean)) 48%,
            var(--bg-ocean-deep) 100%
        );
    margin-top: calc(var(--section-wave-height) * -0.4);
}

.footer {
    margin-top: -1px;
}

/* Återförsäljare – rullande logotyper */
.retailers {
    padding: calc(4rem + var(--section-wave-height) * 0.55) 60px calc(4.5rem + var(--section-wave-height) * 0.35) 60px;
    position: relative;
    overflow: hidden;
}

.retailers .container {
    position: relative;
    z-index: 1;
}

.retailers-title {
    text-align: center;
    margin-bottom: 0.5rem;
}

.retailers-subtitle,
.retailers .section-subtitle {
    text-align: center;
    margin-bottom: 1.25rem;
}

.retailers-marquee {
    overflow: hidden;
    width: 100%;
    margin-top: 0.25rem;
    mask-image: linear-gradient(
        90deg,
        transparent 0%,
        #000 5%,
        #000 95%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        90deg,
        transparent 0%,
        #000 5%,
        #000 95%,
        transparent 100%
    );
}

.retailers-track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 3rem;
    animation: retailers-marquee 45s linear infinite;
    will-change: transform;
}

.retailers-marquee:hover .retailers-track,
.retailers-marquee:focus-within .retailers-track {
    animation-play-state: paused;
}

/* SVG: loggorna ligger i en smal remsa (~y 235–296 av 576) – beskär bort tomt utrymme */
.retailers-logo-crop {
    flex-shrink: 0;
    width: clamp(1800px, 145vw, 2800px);
    height: clamp(110px, 14vw, 180px);
    overflow: hidden;
}

.retailers-logos {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center 46.1%;
    filter: drop-shadow(0 2px 8px rgba(51, 134, 157, 0.08));
}

@keyframes retailers-marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 1.5rem));
    }
}

/* Features Section – ljus strand */
.features {
    padding: calc(12rem + var(--section-wave-height) * 0.4) 60px calc(12rem + var(--section-wave-height) * 0.35) 60px;
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 70% 30%, rgba(51, 134, 157, 0.1) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.features::after {
    content: '';
    position: absolute;
    inset: 8% 5%;
    background-image: radial-gradient(circle, rgba(51, 134, 157, 0.12) 1.5px, transparent 1.5px);
    background-size: 28px 28px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 72%);
    pointer-events: none;
    z-index: 0;
}

.features-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.features-deco-orbit {
    position: absolute;
    top: 12%;
    left: 50%;
    width: min(90vw, 720px);
    height: min(90vw, 720px);
    transform: translateX(-50%);
    border: 2px dashed rgba(110, 200, 216, 0.22);
    border-radius: 50%;
    opacity: 0.7;
}

.features-deco-compass {
    position: absolute;
    top: 6%;
    right: 8%;
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: rgba(255, 179, 71, 0.55);
    font-family: 'Gagalin', cursive, sans-serif;
    transform: rotate(12deg);
    text-shadow: 0 4px 0 rgba(110, 200, 216, 0.15);
}

.features .container {
    position: relative;
    z-index: 1;
}

.features-header {
    max-width: 820px;
    margin: 0 auto 4.5rem;
    text-align: center;
}

.features-eyebrow {
    display: inline-block;
    margin-bottom: 1.25rem;
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.75);
    border: 2px solid rgba(110, 200, 216, 0.35);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
}

.features-title {
    margin-bottom: 1.25rem;
    color: var(--heading-color);
    line-height: 1.22;
    padding-top: 0.16em;
}

.features-subtitle {
    margin-bottom: 0;
}

.section-title {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--heading-color);
    letter-spacing: -0.03em;
    line-height: 1.22;
    padding-top: 0.16em;
    overflow: visible;
}

.section-subtitle {
    text-align: center;
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    margin-bottom: 5rem;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    align-items: stretch;
}

.feature-card {
    padding: 3rem 2rem 2.75rem;
    border-radius: 28px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 3px solid transparent;
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
}

.feature-card::before {
    content: attr(data-step);
    position: absolute;
    top: -1rem;
    left: 1.5rem;
    width: 3.25rem;
    height: 3.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 900;
    color: var(--primary-dark);
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.feature-stamp {
    position: absolute;
    top: 1.25rem;
    right: 1rem;
    padding: 0.35rem 0.75rem;
    border: 2px dashed rgba(255, 255, 255, 0.65);
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transform: rotate(8deg);
    opacity: 0.85;
    z-index: 2;
}

.feature-card--highlight {
    box-shadow: 0 24px 56px rgba(51, 134, 157, 0.32), 0 0 0 4px rgba(255, 217, 61, 0.4);
}

/* Turkos → mellanblå → mörkblå (vänster till höger) */
.feature-card:nth-child(1) {
    background: #b8e8f0;
    border-color: #7ad4e4;
}

.feature-card:nth-child(2) {
    background: #3a8a89;
    border-color: #076766;
}

.feature-card:nth-child(3) {
    background: #044544;
    border-color: #0d8a89;
}

.feature-icon {
    font-size: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 240px;
    max-width: 100%;
    height: 240px;
    margin: 0.5rem auto 2rem auto;
    flex-shrink: 0;
    filter: drop-shadow(0 12px 24px rgba(110, 200, 216, 0.25));
    position: relative;
    background: rgba(255, 255, 255, 0.55);
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.8);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4), 0 12px 32px rgba(51, 134, 157, 0.12);
}

.feature-icon::before,
.feature-icon::after {
    content: none;
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 8px 20px rgba(110, 200, 216, 0.18));
    display: block;
    margin: 0 auto;
    position: relative;
}

/* 9.svg & 10.svg – fyller hela den cirkulära ramen */
.feature-card:nth-child(1) .feature-icon,
.feature-card:nth-child(2) .feature-icon {
    position: relative;
    overflow: hidden;
    padding: 0;
}

.feature-card:nth-child(1) .feature-image,
.feature-card:nth-child(2) .feature-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.35);
    filter: none;
}

.feature-card h3 {
    font-family: 'Gagalin', cursive, sans-serif;
    letter-spacing: 0.02em;
    font-size: 2rem;
    line-height: 1.3;
    padding-top: 0.14em;
    margin-bottom: 1.5rem;
    position: relative;
}

.feature-card:nth-child(1) p {
    color: #023a39;
}

.feature-card:nth-child(2) h3,
.feature-card:nth-child(2) p {
    color: #ffffff;
}

.feature-card:nth-child(3) p {
    color: #FFFFF6;
}

.feature-card:nth-child(1) .feature-stamp {
    color: #023a39;
    border-color: rgba(2, 58, 57, 0.35);
}

.feature-card:nth-child(2) .feature-stamp {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.45);
}

.feature-card:nth-child(3) .feature-stamp {
    color: #FFFFF6;
    border-color: rgba(255, 255, 255, 0.5);
}

.feature-card p {
    line-height: 1.9;
    font-size: 1.15rem;
}

.scroll-reveal {
    opacity: 0;
    transition:
        opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
}

.game-card.scroll-reveal {
    transform: translateY(40px);
}

.game-card.scroll-reveal.revealed {
    transform: translateY(0);
}

.feature-card.scroll-reveal:nth-child(1),
.feature-card.scroll-reveal:nth-child(2),
.feature-card.scroll-reveal:nth-child(3) {
    transform: translateY(40px);
}

.feature-card.scroll-reveal:nth-child(1).revealed,
.feature-card.scroll-reveal:nth-child(2).revealed,
.feature-card.scroll-reveal:nth-child(3).revealed {
    transform: translateY(0);
}

.contact-item.scroll-reveal,
.about-text.scroll-reveal,
.about-image.scroll-reveal {
    transform: translateY(40px);
}

.contact-item.scroll-reveal.revealed,
.about-text.scroll-reveal.revealed,
.about-image.scroll-reveal.revealed {
    transform: translateY(0);
}

/* Games Section – turkos & sand */
.games {
    padding: 10rem 60px calc(10rem + var(--section-wave-height) * 0.35);
    position: relative;
    overflow: hidden;
}

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

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    align-items: stretch;
}

.game-card {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
    border: 2px solid transparent;
    width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

/* Färgade kort – fadade toner från riktiga förpackningar (Kooka & Burra) */
.game-card--final-call {
    --game-surface: #fde8ef;
    --game-content-bg: #fff6f8;
    --game-border: #d97a9a;
    --game-text: #5a1f38;
    --game-text-muted: #7a3550;
    --game-tag-bg: rgba(198, 45, 90, 0.14);
    --game-tag-border: rgba(190, 90, 130, 0.45);
    --game-hover-surface: #fcdde8;
}

.game-card--final-call .game-image {
    background: linear-gradient(135deg, #fce2e8 0%, #edd8f5 100%);
}

.game-card--travel-music {
    --game-surface: #fff2e8;
    --game-content-bg: #fffaf5;
    --game-border: #e8a060;
    --game-text: #6b3018;
    --game-text-muted: #8a4a28;
    --game-tag-bg: rgba(230, 120, 50, 0.16);
    --game-tag-border: rgba(220, 150, 90, 0.5);
    --game-hover-surface: #ffe8dc;
}

.game-card--travel-music .game-image {
    background: linear-gradient(180deg, #fde0e4 0%, #fce4c8 48%, #fdf6dc 100%);
}

.game-card--turist {
    --game-surface: #d4eef5;
    --game-content-bg: #eef8fb;
    --game-border: #076766;
    --game-text: #023a39;
    --game-text-muted: #0a5554;
    --game-tag-bg: rgba(51, 134, 157, 0.15);
    --game-tag-border: rgba(74, 173, 196, 0.45);
    --game-hover-surface: #c8e8f2;
    --game-badge-end: #4aadc4;
}

.game-card--turist .game-image {
    background: linear-gradient(90deg, #c8e8f2 0%, #b8dfea 55%, #a8d4e4 100%);
}

.game-card--globetrotter {
    --game-surface: #eaf6e2;
    --game-content-bg: #f6fbf3;
    --game-border: #72b85c;
    --game-text: #1a5230;
    --game-text-muted: #356848;
    --game-tag-bg: rgba(80, 160, 70, 0.16);
    --game-tag-border: rgba(110, 175, 100, 0.45);
    --game-hover-surface: #e2f2d8;
}

.game-card--globetrotter .game-image {
    background: linear-gradient(160deg, #e4f6d8 0%, #d8eef8 100%);
}

.game-card--speedfinger {
    --game-surface: #d4f0fc;
    --game-content-bg: #eef8fe;
    --game-border: #0078e6;
    --game-text: #023a6b;
    --game-text-muted: #0a5090;
    --game-tag-bg: rgba(0, 120, 230, 0.15);
    --game-tag-border: rgba(0, 180, 230, 0.45);
    --game-hover-surface: #c8e8fa;
}

.game-card--speedfinger .game-image {
    background: linear-gradient(135deg, #c8ecfc 0%, #a8dcfa 55%, #88ccf0 100%);
    padding: 1.5rem;
    box-sizing: border-box;
}

.game-card--speedfinger .game-img,
.game-card--gissa-djuret .game-img,
.game-card--explorer .game-img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 139%;
    height: auto;
    max-width: none;
    padding: 0;
}

.game-card--gissa-djuret {
    --game-surface: #dff6f8;
    --game-content-bg: #f0fafb;
    --game-border: #28a8bc;
    --game-text: #5a2010;
    --game-text-muted: #8c3018;
    --game-tag-bg: rgba(40, 190, 210, 0.16);
    --game-tag-border: rgba(230, 80, 40, 0.35);
    --game-hover-surface: #d0eef2;
}

.game-card--gissa-djuret .game-image {
    background: linear-gradient(160deg, #d8f4f8 0%, #c8eef4 48%, #f8dcd4 100%);
    padding: 1.5rem;
    box-sizing: border-box;
}

.game-card--explorer {
    --game-surface: #dcf8fa;
    --game-content-bg: #f0fcfd;
    --game-border: #0a5032;
    --game-text: #0a281e;
    --game-text-muted: #0a4632;
    --game-tag-bg: rgba(10, 80, 50, 0.14);
    --game-tag-border: rgba(120, 240, 250, 0.5);
    --game-hover-surface: #ccf4f6;
}

.game-card--explorer .game-image {
    background: linear-gradient(135deg, #d8f8fc 0%, #b8ece8 55%, #98dcc8 100%);
    padding: 1.5rem;
    box-sizing: border-box;
}

.game-card--final-call,
.game-card--travel-music,
.game-card--turist,
.game-card--globetrotter,
.game-card--speedfinger,
.game-card--gissa-djuret,
.game-card--explorer {
    background: var(--game-surface);
    border-color: var(--game-border);
}

.game-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: linear-gradient(135deg, #e85d8a 0%, #9b4db8 100%);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    font-weight: 900;
    font-size: 0.75rem;
    z-index: 10;
    box-shadow: var(--shadow-sm);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.game-card--speedfinger .game-badge {
    background: linear-gradient(135deg, var(--game-border) 0%, #00b8e8 100%);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 14px rgba(0, 120, 230, 0.35);
}

.game-card--gissa-djuret .game-badge {
    background: linear-gradient(135deg, var(--game-border) 0%, #e06838 100%);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 14px rgba(40, 168, 188, 0.35);
}

.game-card--explorer .game-badge {
    background: linear-gradient(135deg, var(--game-border) 0%, #3cb888 100%);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 14px rgba(10, 80, 50, 0.35);
}

.game-card--travel-music .game-badge {
    background: linear-gradient(135deg, var(--game-border) 0%, #e87838 100%);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 14px rgba(232, 160, 96, 0.35);
}

.game-card--turist .game-badge {
    background: linear-gradient(135deg, var(--game-border) 0%, var(--game-badge-end) 100%);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 14px rgba(51, 134, 157, 0.35);
}

.game-stamp {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.45rem 0.9rem;
    border: 2px dashed rgba(26, 82, 48, 0.55);
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1a5230;
    background: rgba(255, 255, 255, 0.75);
    transform: rotate(8deg);
    z-index: 10;
    box-shadow: var(--shadow-sm);
}

.game-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-sky-light);
    position: relative;
}

.game-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 1.5rem;
}

.game-card--final-call .game-img,
.game-card--travel-music .game-img,
.game-card--turist .game-img {
    width: 72%;
    height: 72%;
}

.game-content {
    padding: 3rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    background: var(--game-content-bg, var(--bg-white));
}

.game-content h3 {
    font-size: 2rem;
    line-height: 1.3;
    padding-top: 0.14em;
    margin-bottom: 1.25rem;
    color: var(--game-text, var(--text-dark));
    flex-grow: 0;
    position: relative;
    display: inline-block;
    overflow: visible;
}

.game-content p {
    margin-bottom: 2rem;
    line-height: 1.9;
    flex-grow: 0;
    font-size: 1.1rem;
    color: var(--game-text-muted, var(--text-light));
}

.game-tags {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    flex-grow: 0;
    justify-content: center;
    align-items: center;
}

.game-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.game-content .btn-primary {
    margin-top: auto;
    align-self: center;
    width: auto;
    min-width: 200px;
}

.game-card .tag {
    background: var(--game-tag-bg, rgba(94, 234, 212, 0.25));
    color: var(--game-text, var(--primary-dark));
    padding: 0.625rem 1.25rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: none;
    display: inline-block;
    white-space: normal;
    word-wrap: break-word;
    line-height: 1.4;
    border: 1px solid var(--game-tag-border, var(--border-color));
    text-align: center;
    max-width: 100%;
    box-sizing: border-box;
}

/* About Section – djupare havston */
.about {
    padding: calc(12rem + var(--section-wave-height) * 0.4) 60px calc(12rem + var(--section-wave-height) * 0.35) 60px;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 50% 100%, rgba(51, 134, 157, 0.14) 0%, transparent 55%);
    z-index: 0;
    pointer-events: none;
}

.about .section-title {
    color: var(--heading-color);
}

.about .container {
    position: relative;
    z-index: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 6rem;
    align-items: center;
}

.about-text > p {
    margin-bottom: 2.5rem;
    line-height: 2;
    font-size: 1.2rem;
    position: relative;
}

.about-lead {
    margin-bottom: 1.5rem;
}

.about-closing {
    margin-bottom: 1.5rem;
}

.about-text .about-signoff,
.about-text .about-authors {
    margin-bottom: 0;
    line-height: 1.45;
    font-size: 1.1rem;
}

.about-text .about-authors {
    margin-top: 0.15rem;
    font-weight: 600;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transform: perspective(1000px) rotateY(5deg);
}

.about-svg-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 500px;
    filter: drop-shadow(0 20px 40px rgba(110, 200, 216, 0.25));
}

.about-quote {
    margin: 1.5rem 0 0;
    padding: 0;
    border: none;
    position: relative;
    max-width: 28rem;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(145deg, #ffffff 0%, #e4f4f8 48%, #d8eef4 100%);
    box-shadow:
        0 10px 28px rgba(51, 134, 157, 0.12),
        0 0 0 2px rgba(110, 200, 216, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.about-quote::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(180deg, var(--accent-turquoise) 0%, var(--primary-color) 45%, var(--secondary-color) 100%);
}

.about-quote-label {
    display: block;
    padding: 0.45rem 1.15rem;
    background: linear-gradient(90deg, #044544 0%, #076766 55%, #4eb8b7 100%);
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.about-quote-text {
    margin: 0;
    padding: 0.75rem 1rem 0.15rem;
    font-family: Georgia, 'Times New Roman', serif;
    font-style: italic;
    font-size: clamp(0.92rem, 1.6vw, 1.05rem);
    line-height: 1.5;
    color: var(--text-dark);
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-quote-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 0 1rem 0.65rem;
    position: relative;
    z-index: 1;
}

.about-quote-footer::before {
    content: '';
    width: 55%;
    max-width: 9rem;
    flex: none;
    height: 2px;
    background: linear-gradient(90deg, rgba(110, 200, 216, 0.08) 0%, rgba(110, 200, 216, 0.55) 50%, rgba(110, 200, 216, 0.08) 100%);
    border-radius: 2px;
}

.quote-author {
    font-family: 'Gagalin', cursive, sans-serif;
    font-style: normal;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--primary-dark);
    white-space: nowrap;
}

/* Contact Section */
.contact {
    padding: calc(10rem + var(--section-wave-height) * 0.45) 60px 10rem;
    position: relative;
    overflow: hidden;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 36rem;
    margin: 0 auto;
    gap: 3rem;
}

.contact-intro {
    margin-bottom: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    width: 100%;
}

.contact-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 20px;
    border: 3.5px solid var(--accent-gold-bright);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.contact-item:hover {
    transform: translateX(10px) scale(1.01);
    border-color: var(--accent-yellow);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    flex-shrink: 0;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--text-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
}

.contact-icon--email::before {
    content: '@';
}

.contact-icon--company::before {
    content: 'AB';
    font-size: 0.85rem;
    letter-spacing: -0.05em;
}

.contact-item h3 {
    margin-bottom: 1rem;
    color: var(--contact-text);
    font-size: 1.75rem;
}

.contact-item p {
    font-size: 1.1rem;
    color: var(--contact-text);
}

.contact-email-link {
    color: var(--contact-text);
    text-decoration: underline;
    text-decoration-color: rgba(51, 134, 157, 0.45);
    text-underline-offset: 0.15em;
    transition: var(--transition);
}

.contact-email-link:hover {
    color: var(--primary-color);
    text-decoration-color: var(--primary-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 24px;
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

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

.form-group label {
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
    padding: 1.25rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    font-family: inherit;
    font-size: 1.1rem;
    transition: var(--transition);
    background: var(--bg-sky-light);
    color: var(--text-dark);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(74, 138, 154, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(110, 200, 216, 0.2);
    transform: translateY(-2px);
    background: var(--bg-white);
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--bg-ocean-deep) 100%);
    color: var(--text-on-ocean);
    padding: 6rem 60px 3rem;
    position: relative;
    overflow: hidden;
    border-top: 3px solid var(--accent-turquoise);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-yellow), var(--accent-turquoise), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 5rem;
    margin-bottom: 4rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 2rem;
    color: var(--heading-color);
    font-size: 1.5rem;
}

.footer-section p {
    line-height: 1.9;
    font-size: 1.1rem;
}

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

.footer-section ul li {
    margin-bottom: 1rem;
}

.footer-section a {
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
}

.footer-section a:hover {
    color: var(--accent-yellow);
    transform: translateX(8px);
}

.footer-section--social {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.social-links a {
    text-align: center;
}

.footer-section--social a:hover {
    color: var(--accent-gold-light);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
}

/* BOLD ANIMATIONS */
@keyframes gold-wave-shimmer {
    0%, 100% {
        filter: brightness(1) saturate(1.05);
        opacity: 0.92;
    }
    50% {
        filter: brightness(1.22) saturate(1.2);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes blob-morph {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    25% {
        transform: translate(50px, -50px) scale(1.1);
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
    50% {
        transform: translate(-30px, 30px) scale(0.9);
        border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
    }
    75% {
        transform: translate(30px, 50px) scale(1.05);
        border-radius: 40% 60% 50% 50% / 60% 40% 60% 40%;
    }
}

@keyframes float-3d {
    0%, 100% {
        transform: translateY(0) translateX(0) rotateY(0deg);
    }
    25% {
        transform: translateY(-30px) translateX(15px) rotateY(5deg);
    }
    50% {
        transform: translateY(-15px) translateX(-10px) rotateY(-5deg);
    }
    75% {
        transform: translateY(-40px) translateX(10px) rotateY(3deg);
    }
}

@keyframes bounce-bold {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-15px) scale(1.05);
    }
}

@keyframes spin-bold {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(20deg) scale(1.3);
    }
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes spin-grow-pop {
    0% {
        opacity: 0;
        transform: scale(0.1) rotate(0deg);
        filter: blur(10px) drop-shadow(0 0 0 rgba(110, 200, 216, 0));
    }
    20% {
        opacity: 0.5;
        transform: scale(0.3) rotate(180deg);
        filter: blur(5px) drop-shadow(0 0 12px rgba(110, 200, 216, 0.2));
    }
    40% {
        opacity: 0.8;
        transform: scale(0.6) rotate(360deg);
        filter: blur(2px) drop-shadow(0 0 20px rgba(110, 200, 216, 0.25));
    }
    60% {
        opacity: 1;
        transform: scale(0.9) rotate(540deg);
        filter: blur(0px) drop-shadow(0 0 28px rgba(110, 200, 216, 0.3));
    }
    75% {
        opacity: 1;
        transform: scale(1.69) rotate(720deg);
        filter: blur(0px) drop-shadow(0 0 28px rgba(110, 200, 216, 0.3));
    }
    80% {
        transform: scale(1.85) rotate(720deg);
        filter: blur(0px) drop-shadow(0 0 32px rgba(110, 200, 216, 0.35));
    }
    85% {
        transform: scale(1.6) rotate(720deg);
    }
    90% {
        transform: scale(1.75) rotate(720deg);
    }
    95% {
        transform: scale(1.66) rotate(720deg);
    }
    100% {
        opacity: 1;
        transform: scale(1.69) rotate(720deg);
        filter: blur(0px) drop-shadow(0 24px 48px rgba(110, 200, 216, 0.3));
    }
}

@keyframes explode-1 {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translate(-200px, -150px) scale(1.5);
        opacity: 0;
    }
}

@keyframes explode-2 {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translate(200px, -150px) scale(1.5);
        opacity: 0;
    }
}

@keyframes explode-3 {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translate(-150px, 200px) scale(1.5);
        opacity: 0;
    }
}

@keyframes explode-4 {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translate(150px, 200px) scale(1.5);
        opacity: 0;
    }
}

@keyframes explode-5 {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translate(0, -250px) scale(1.5);
        opacity: 0;
    }
}

@keyframes explode-6 {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translate(0, 250px) scale(1.5);
        opacity: 0;
    }
}

@keyframes explode-7 {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translate(-250px, 0) scale(1.5);
        opacity: 0;
    }
}

@keyframes explode-8 {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translate(250px, 0) scale(1.5);
        opacity: 0;
    }
}


@keyframes fly-in {
    0% {
        transform: translateY(-50%) translateX(-100px) scale(0) rotate(-90deg);
        opacity: 0;
    }
    60% {
        transform: translateY(-50%) translateX(10px) scale(1.2) rotate(10deg);
        opacity: 1;
    }
    100% {
        transform: translateY(-50%) translateX(0) scale(1) rotate(0deg);
        opacity: 1;
    }
}

/* Desktop – mindre skala så sidan inte känns inzoomad */
@media (min-width: 1024px) {
    html {
        font-size: 14px;
    }

    .container {
        max-width: 1100px;
        padding: 0 40px;
    }

    .section-title {
        font-size: clamp(2.25rem, 3.5vw, 3.5rem);
    }

    .section-subtitle {
        font-size: clamp(1rem, 1.5vw, 1.2rem);
        margin-bottom: 3.5rem;
    }

    .features {
        padding: calc(6rem + var(--section-wave-height) * 0.35) 40px calc(6rem + var(--section-wave-height) * 0.3) 40px;
    }

    .features-header {
        margin-bottom: 3rem;
    }

    .features-title {
        font-size: clamp(2.25rem, 3.5vw, 3.5rem);
    }

    .features-subtitle {
        font-size: clamp(1rem, 1.5vw, 1.2rem);
    }

    .feature-card {
        padding: 2.5rem 2rem;
    }

    .feature-card h3 {
        font-size: 1.65rem;
    }

    .feature-card p {
        font-size: 1rem;
    }

    .feature-icon {
        width: 200px;
        height: 200px;
        font-size: 5rem;
    }

    .games {
        padding: 6rem 40px calc(6rem + var(--section-wave-height) * 0.35);
    }

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

    .about {
        padding: calc(6rem + var(--section-wave-height) * 0.35) 40px calc(6rem + var(--section-wave-height) * 0.3) 40px;
    }

    .contact {
        padding: calc(6rem + var(--section-wave-height) * 0.4) 40px 6rem;
    }

    .retailers {
        padding: calc(3rem + var(--section-wave-height) * 0.45) 40px calc(3.5rem + var(--section-wave-height) * 0.35) 40px;
    }

    .hero-quiz {
        max-width: 490px;
        transform: translateY(1.25vh);
    }

    .hero-quiz-stage {
        min-height: min(38vh, 315px);
        gap: 0.35rem;
        transform: translateY(1.75vh);
    }

    .hero-quiz-image-wrap {
        width: min(38vw, 335px);
        height: min(34vh, 270px);
        border-radius: 20px;
    }

    .hero-quiz-image {
        max-height: 100%;
        width: auto;
        height: auto;
    }

    .hero-quiz-question {
        width: min(38vw, 363px);
        font-size: clamp(0.85rem, 1.2vw, 1.25rem);
        padding: 0.5rem 0.9rem;
        margin-top: -4mm;
    }

    .game-content h3 {
        font-size: 1.65rem;
    }

    .about-text h2 {
        font-size: clamp(2rem, 3.5vw, 3rem);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }
    
    .hero {
        grid-template-columns: 1fr;
        gap: 5rem;
        padding: 8rem 40px 6rem;
        text-align: center;
    }
    
    .hero-subtitle {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        transform: none;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .about-image {
        transform: none;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }

    .nav-wrapper {
        justify-content: flex-end;
        position: relative;
    }
    
    .mobile-menu-toggle {
        display: flex;
        pointer-events: auto;
        position: relative;
        z-index: 1001;
        margin-left: auto;
    }

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

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .nav-menu {
        position: fixed;
        top: var(--mobile-nav-top, 3.5rem);
        left: 0;
        width: 100%;
        margin-left: 0;
        transform: translateX(-100%);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        background: var(--page-bg);
        max-width: none;
        text-align: center;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        padding: 0.5rem 0 0.75rem;
        gap: 0;
        height: auto;
        max-height: calc(100dvh - var(--mobile-nav-top, 3.5rem));
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        pointer-events: auto;
        z-index: 999;
    }

    .nav-menu li {
        margin: 0;
        padding: 0;
        width: 100%;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu .nav-link {
        font-family: 'Gagalin', cursive, sans-serif;
        font-weight: 400;
        font-size: 1.1rem;
        display: block;
        width: 100%;
        padding: 0.55rem 0;
        line-height: 1.2;
        letter-spacing: -0.02em;
        text-transform: none;
        color: var(--heading-color);
        opacity: 1;
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        transform: none;
        color: var(--accent-yellow);
        opacity: 1;
    }

    body.menu-open .navbar {
        background: var(--page-bg);
        box-shadow: none;
    }

    .hero {
        display: block;
        padding: 0;
        margin-top: -70px;
        width: 100%;
        max-width: 100vw;
        min-height: 100vh;
        height: 100vh;
        overflow: hidden;
        background-color: transparent;
        background-image: none;
    }

    .navbar {
        border-bottom: none;
        background: transparent;
        box-shadow: none;
        overflow: visible;
    }

    .navbar .container {
        overflow: visible;
    }

    .navbar.scrolled {
        background: var(--page-bg);
        border-bottom-color: var(--accent-turquoise);
        box-shadow: var(--shadow-md);
    }

    .hero-map-bg {
        display: none;
    }

    .hero-map-mobile {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        max-width: none;
        margin: 0;
        padding: 0;
        transform: none;
        object-fit: cover;
        object-position: top center;
        z-index: 0;
        pointer-events: none;
    }

    .hero-quiz {
        position: absolute;
        left: 0;
        right: 0;
        bottom: clamp(5.5rem, 18vh, 8rem);
        z-index: 2;
        width: 100%;
        padding: 0 1rem;
        margin: 0;
        contain: none;
        box-sizing: border-box;
        pointer-events: none;
        transform: none;
    }

    .hero-quiz-stage {
        min-height: auto;
        padding-top: 0;
        padding-bottom: 0;
        gap: 0.86rem;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
        transform: translateY(-0.5vh);
        pointer-events: none;
    }

    .hero-quiz-image-wrap {
        position: relative;
        width: min(78vw, 306px);
        height: min(36vh, 238px);
        border-radius: 16px;
        overflow: hidden;
        flex-shrink: 0;
        box-shadow: 0 6px 16px rgba(7, 103, 102, 0.18);
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }

    .hero-quiz-image-clip {
        border-radius: 16px;
        overflow: hidden;
    }

    /* Mobil – centrerad contain (hela bilden syns), rundning via clip-lager */
    .hero-quiz .hero-quiz-image {
        position: absolute;
        left: 50%;
        top: 50%;
        width: auto;
        height: auto;
        max-width: 100%;
        max-height: 100%;
        margin: 0;
        object-fit: contain;
        object-position: center;
        border-radius: 16px;
        box-shadow: none;
        transform: translate3d(-50%, -50%, 0) !important;
        transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1) !important;
        will-change: opacity;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }

    .hero-quiz .hero-quiz-image.from-left,
    .hero-quiz .hero-quiz-image.from-top,
    .hero-quiz .hero-quiz-image.from-right {
        opacity: 0;
        transform: translate3d(-50%, -50%, 0) !important;
    }

    .hero-quiz .hero-quiz-image.is-settled,
    .hero-quiz .hero-quiz-image.is-behind {
        opacity: 1;
        transform: translate3d(-50%, -50%, 0) !important;
    }

    .hero-quiz .hero-quiz-image.is-leaving {
        opacity: 0;
        transform: translate3d(-50%, -50%, 0) !important;
        transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }

    .hero-quiz .hero-quiz-image.is-parked {
        opacity: 0;
        transform: translate3d(-50%, -50%, 0) !important;
        visibility: hidden !important;
        transition: none !important;
    }

    .hero-quiz--mobile .hero-quiz-question {
        width: min(78vw, 565px);
        min-height: 2.85rem;
        padding: 0.94rem 1.44rem;
        font-size: clamp(1.37rem, 4.54vw, 1.73rem);
        border-radius: 20px;
        border-width: 2px;
    }

    .hero-quiz--mobile .hero-quiz-question:not(.is-visible):not(.is-hiding):not(.from-left):not(.from-top):not(.from-right) {
        padding: 0.94rem 1.44rem;
        min-height: 2.85rem;
    }

    .hero-image {
        order: -1;
        margin-bottom: 1rem;
    }

    .hero-content {
        text-align: center;
        width: 100%;
        order: 1;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.75rem 1.5rem;
        margin-bottom: 1.5rem;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
        margin-bottom: 1.5rem;
        line-height: 1.2;
        padding-top: 0.14em;
    }

    .hero-title span {
        color: var(--heading-color);
        -webkit-text-fill-color: var(--heading-color);
        background: none;
        filter: none;
        text-shadow: none;
    }

    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.2rem);
        margin-bottom: 2rem;
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .btn {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .hero-image {
        width: 100%;
        transform: none;
    }

    .hero-globe-container {
        height: 300px;
        margin-top: 0;
    }

    .hero-svg-container {
        will-change: transform;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }

    .hero-svg-image {
        max-width: 280px;
        width: 100%;
        height: auto;
    }

    /* Simplified animation for mobile */
    @keyframes spin-grow-pop {
        0% {
            opacity: 0;
            transform: scale(0.1) rotate(0deg);
        }
        30% {
            opacity: 0.6;
            transform: scale(0.5) rotate(180deg);
        }
        60% {
            opacity: 1;
            transform: scale(1.2) rotate(360deg);
        }
        80% {
            transform: scale(1.4) rotate(360deg);
        }
        90% {
            transform: scale(1.35) rotate(360deg);
        }
        100% {
            opacity: 1;
            transform: scale(1.3) rotate(360deg);
        }
    }

    .explosion-container {
        width: 100%;
        height: 100%;
    }

    .section-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: clamp(1rem, 4vw, 1.2rem);
        margin-bottom: 1.25rem;
    }

    :root {
        --section-wave-height: 3.25rem;
    }

    .features,
    .games,
    .retailers,
    .about,
    .contact {
        padding: 4rem 20px;
    }

    .games {
        padding-top: 1.5rem;
        padding-bottom: calc(4rem + var(--section-wave-height) * 0.3);
        margin-top: -2px;
    }

    .retailers {
        padding: calc(2.75rem + var(--section-wave-height) * 0.45) 20px calc(3rem + var(--section-wave-height) * 0.25) 20px;
        margin-top: calc(var(--section-wave-height) * -0.35);
    }

    .features {
        padding-top: calc(4rem + var(--section-wave-height) * 0.35);
        margin-top: calc(var(--section-wave-height) * -0.3);
    }

    .about {
        padding-top: calc(4rem + var(--section-wave-height) * 0.35);
        margin-top: calc(var(--section-wave-height) * -0.3);
        padding-bottom: calc(5.5rem + var(--section-wave-height) * 0.4);
    }

    .contact {
        padding-top: calc(4rem + var(--section-wave-height) * 0.4);
        margin-top: calc(var(--section-wave-height) * -0.35);
    }

    .games::after,
    .retailers::after,
    .about::after {
        width: 150%;
    }

    .retailers-subtitle,
    .retailers .section-subtitle {
        margin-bottom: 0.85rem;
    }

    .retailers-track {
        gap: 2rem;
        animation-duration: 35s;
    }

    .retailers-logo-crop {
        width: clamp(1400px, 220vw, 2200px);
        height: clamp(88px, 22vw, 140px);
    }
    
    .features {
        clip-path: none;
    }
    
    .about {
        clip-path: none;
    }

    .features-grid,
    .games-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        align-items: start;
    }

    .features-deco-orbit,
    .features-deco-compass {
        display: none;
    }

    .features-header {
        margin-bottom: 3rem;
    }

    .feature-card {
        padding: 2.5rem 1.5rem;
        border-radius: 25px;
        height: auto;
    }

    .feature-icon {
        width: 200px;
        height: 200px;
        margin: 0 auto 1.5rem auto;
    }

    .feature-icon::before,
    .feature-icon::after {
        width: 150%;
        height: 150%;
    }

    .feature-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .feature-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .game-card {
        max-width: 100%;
        padding: 1.75rem 1.25rem;
        min-height: auto;
    }

    .game-image {
        height: 260px;
    }

    .game-img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .game-card--final-call .game-img,
    .game-card--travel-music .game-img,
    .game-card--turist .game-img {
        width: 90%;
        height: 90%;
    }

    .game-card--speedfinger .game-img,
    .game-card--gissa-djuret .game-img,
    .game-card--explorer .game-img {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 139%;
        height: auto;
        max-width: none;
        padding: 0;
    }

    .game-content h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: var(--game-text, var(--text-dark));
    }

    .game-content p {
        font-size: 0.95rem;
        margin-bottom: 0.85rem;
        line-height: 1.7;
    }

    .game-tags {
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-bottom: 1.25rem;
        justify-content: center;
        align-items: center;
    }

    .tag {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
        text-align: center;
        max-width: 100%;
        box-sizing: border-box;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .game-content {
        display: flex;
        flex-direction: column;
        min-height: 0;
        height: auto;
        padding: 1.5rem 1.25rem;
        gap: 0.85rem;
        flex: 0 0 auto; /* Prevent stretching from grid row height */
        justify-content: flex-start;
    }

    .game-content p {
        flex-shrink: 1;
        min-height: 0;
    }

    .game-tags {
        flex-shrink: 0;
    }

    .game-content .btn-primary {
        margin-top: auto;
        align-self: center;
        width: auto;
        min-width: 160px;
        flex-shrink: 0;
    }

    .about-content {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
    }

    .about-text {
        display: contents;
        width: auto;
    }

    .about-text h2 {
        order: 1;
        font-size: clamp(2rem, 8vw, 2.5rem);
        margin-bottom: 0;
    }

    .about-text .about-lead {
        order: 2;
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 0;
        margin-top: 0;
        width: 100%;
        text-align: left;
        align-self: stretch;
    }

    .about-closing {
        order: 3;
        margin-bottom: 0;
        width: 100%;
        text-align: left;
        align-self: stretch;
    }

    .about-text .about-signoff,
    .about-text .about-authors {
        font-size: 0.95rem;
        line-height: 1.4;
        text-align: left;
    }

    .about-text .about-authors {
        margin-top: 0.1rem;
    }

    .about-image {
        order: 4;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .about-quote {
        order: 5;
        margin-top: 0;
        margin-bottom: 2rem;
        max-width: min(100%, 22rem);
        border-radius: 14px;
        align-self: center;
    }

    .about-quote-text {
        padding: 0.65rem 0.85rem 0.1rem;
        font-size: 0.9rem;
        line-height: 1.45;
    }

    .about-quote-footer {
        gap: 0.25rem;
        padding: 0 0.85rem 0.55rem;
    }

    .about-quote-footer::before {
        width: 50%;
        max-width: 8rem;
    }

    .about-svg-image {
        width: 100%;
        height: auto;
    }

    .contact-wrapper {
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
    }

    .contact-info {
        width: 100%;
        gap: 1.5rem;
    }

    .contact-item {
        margin-bottom: 0;
        padding: 1.5rem;
        flex-direction: row;
        align-items: center;
        gap: 1.5rem;
    }

    .contact-icon {
        width: 3rem;
        height: 3rem;
        font-size: 1.1rem;
    }

    .contact-item h3 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }

    .contact-item p {
        font-size: 1rem;
        margin: 0;
    }

    .contact-form {
        width: 100%;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }

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

    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 1rem;
        padding: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-section h3,
    .footer-section h4 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo h1 {
        font-size: 1.3rem;
    }

    .nav-wrapper {
        padding: 1rem 0;
    }

    .hero-quiz {
        bottom: clamp(4.5rem, 16vh, 6.5rem);
        padding: 0 0.85rem;
    }

    .hero-quiz-stage {
        transform: translateY(0.5vh);
    }

    .hero-quiz-image-wrap {
        width: min(76vw, 272px);
        height: min(31.7vh, 211px);
        border-radius: 14px;
    }

    .hero-quiz-image-clip {
        border-radius: 14px;
    }

    .hero-quiz .hero-quiz-image {
        border-radius: 14px;
    }

    .hero-quiz--mobile .hero-quiz-question {
        width: min(76vw, 504px);
        font-size: clamp(1.3rem, 4.32vw, 1.58rem);
        padding: 0.79rem 1.22rem;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 0.6rem 1.2rem;
    }

    .hero-title {
        font-size: clamp(1.8rem, 10vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 4vw, 1.1rem);
        margin-bottom: 1.5rem;
    }

    .hero-globe-container {
        height: 250px;
    }

    .hero-svg-image {
        max-width: 220px;
    }

    .btn {
        width: 100%;
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: clamp(1.8rem, 10vw, 2rem);
    }

    .section-subtitle {
        font-size: clamp(0.9rem, 4vw, 1.1rem);
        margin-bottom: 1rem;
    }

    .features,
    .games,
    .retailers,
    .about,
    .contact {
        padding: 3rem 15px;
    }

    .games {
        padding-top: 0.75rem;
    }

    .retailers-track {
        animation-duration: 28s;
    }
    
    .feature-card,
    .game-card {
        border-radius: 18px;
        padding: 1.5rem 1rem;
    }

    .feature-icon {
        width: 180px;
        height: 180px;
        margin-bottom: 1rem;
    }

    .feature-card h3 {
        font-size: 1.3rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    .game-image {
        height: 240px;
    }

    .game-content {
        padding: 1.25rem 1rem;
        gap: 0.75rem;
        height: auto;
        flex: 0 0 auto;
        justify-content: flex-start;
    }

    .game-content h3 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }

    .game-content p {
        font-size: 0.9rem;
        margin-bottom: 0.85rem;
        line-height: 1.7;
    }

    .game-tags {
        margin-bottom: 1.1rem;
    }

    .game-content .btn-primary {
        min-width: 155px;
    }

    .tag {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .about-text .about-lead,
    .about-text .about-signoff,
    .about-text .about-authors {
        font-size: 0.9rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .contact-icon {
        width: 2.75rem;
        height: 2.75rem;
        margin: 0 auto;
    }

    .form-group input,
    .form-group textarea {
        font-size: 0.95rem;
        padding: 0.9rem;
    }

    .footer {
        padding: 3rem 15px 2rem;
    }

    .footer-section h3,
    .footer-section h4 {
        font-size: 1.2rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.85rem;
    }
}
