:root {
    --bg: #0A0A0A;
    --bg-deep: #050505;
    --text: #FFFFFF;
    --text-muted: rgba(255, 255, 255, 0.6);
    --border: rgba(255, 255, 255, 0.08);
    --success: #28C76F;

    --klassiker: #A7E84C;
    --party: #4393FD;
    --trinkspiel: #FC551E;
    --quiz: #D926FF;
    --extrem: #FEE027;

    --gold: #D4AF37;
    --gold-light: #F1D87E;

    --font: 'Inter', -apple-system, sans-serif;
}

/* Desktop Reset for body padding (overridden in mobile media query) */
body {
    padding-top: 0;
}

.navbar {
    top: 0;
}

/* Global horizontal scroll prevention */
html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    max-width: 100vw;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 48px;
}

.section-title-left {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    text-align: left;
    margin-bottom: 24px;
    white-space: nowrap;
}

.gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--bg);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    z-index: 10000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 16px;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    font-size: 1.25rem;
}

.nav-logo img {
    width: 40px;
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-cta {
    background: var(--gold) !important;
    color: var(--background) !important;
    padding: 8px 24px !important;
    border-radius: 12px;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

.hamburger-bar {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.nav-hamburger.active .hamburger-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-hamburger.active .hamburger-bar:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.active .hamburger-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 600px) {

    /* Scroll offset for navigation anchors - accounts for fixed navbar */
    section[id] {
        scroll-margin-top: 50px;
    }

    /* Mobile navbar: burger left, logo center, shop right */
    .nav-container {
        display: grid;
        grid-template-columns: 44px 1fr 44px;
        align-items: center;
        padding: 12px 16px;
    }

    .nav-hamburger {
        display: flex;
        position: relative;
        z-index: 1001;
        width: 44px;
        height: 44px;
        padding: 10px;
        cursor: pointer;
        background: transparent;
        border: none;
        order: 1;
        justify-self: start;
    }

    .nav-logo {
        order: 2;
        justify-self: center;
    }

    .nav-logo img {
        width: 32px;
        height: 32px;
    }

    .nav-logo span {
        font-size: 1rem;
    }

    /* Mobile Shop Button */
    .nav-shop-btn {
        order: 3;
        justify-self: end;
        background: var(--gold);
        color: #000;
        font-weight: 700;
        font-size: 0.75rem;
        padding: 8px 12px;
        border-radius: 8px;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 0.03em;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: 16px;
        width: 200px;
        background: rgba(15, 15, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: stretch;
        padding: 12px 0;
        gap: 0;
        z-index: 10000;
        border-radius: 14px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
        pointer-events: none;
        transition: opacity 0.25s ease, transform 0.25s ease;
    }

    .nav-links.active {
        opacity: 1;
        transform: translateY(0) scale(1);
        pointer-events: auto;
    }

    .nav-links a {
        display: block;
        font-size: 1.1rem;
        font-weight: 500;
        padding: 14px 24px;
        color: var(--text);
        text-align: left;
        transition: background 0.2s ease, color 0.2s ease;
        border-bottom: 1px solid var(--border);
    }

    .nav-links a:last-of-type {
        border-bottom: none;
    }

    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.05);
        color: var(--gold);
    }

    .nav-cta {
        margin: 16px 16px 8px;
        padding: 12px 20px;
        font-size: 1rem;
        text-align: center;
        border-radius: 10px;
    }

    body.menu-open {
        overflow: hidden;
    }
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 100px 0 60px;
    background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%), var(--bg);
    position: relative;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(3rem, 5.5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 28px;
}

.nowrap {
    white-space: nowrap;
}

.hero-text .highlight {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 520px;
    display: none;
    /* Hidden, replaced by stats */
}

/* Static Trust Bar */
.trust-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
    padding: 18px 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.trust-bar span:not(.trust-divider) {
    color: var(--text);
    font-weight: 500;
}

.trust-divider {
    color: var(--gold);
    opacity: 0.5;
}

/* Hero Description - Visual Hierarchy */
.hero-description {
    margin-bottom: 40px;
    max-width: 520px;
}

.hero-hook {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 16px;
}

.hero-body {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.hero-facts {
    font-size: 1rem;
    color: var(--text);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.hero-facts .gold {
    color: var(--gold);
}

/* Desktop: Hide mobile-only hero elements */
.hero-label {
    display: none;
}

.hero-split-image {
    display: none;
}

.mobile-tap-hint {
    display: none;
}

/* Hero Stats - visible on desktop and mobile */
.hero-stats {
    display: flex;
    gap: 40px;
    margin: 30px 0;
}

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

.stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Buttons - visible on desktop */
.hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 50px;
}

.btn-shop {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--background);
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-shop:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-shop svg {
    width: 20px;
    height: 20px;
}


.btn-appstore {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--text);
    color: #000;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-appstore:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.btn-appstore svg {
    width: 28px;
    height: 28px;
}

.btn-appstore-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.btn-appstore .btn-small {
    font-size: 0.7rem;
    opacity: 0.8;
}

.btn-appstore .btn-large {
    font-size: 1.25rem;
    font-weight: 700;
}

.btn-appstore.large {
    padding: 18px 36px;
}

.btn-appstore.large svg {
    width: 36px;
    height: 36px;
}

.btn-appstore.large .btn-large {
    font-size: 1.5rem;
}

/* Hide mobile-only elements on desktop */
.mobile-only,
.mobile-only-img {
    display: none;
}

.hero-flip-container {
    perspective: 2500px;
    width: 650px;
    height: 600px;
    margin: 0 auto;
}

.flip-card {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s ease-in-out;
    cursor: pointer;
}

.flip-card.flipped {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-card-back {
    transform: rotateY(0deg);
}

.flip-card-back img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
}

.flip-card-front {
    transform: rotateY(180deg);
}

.flip-card-front .hero-phone-img {
    position: absolute;
    max-width: 105%;
    max-height: 105%;
    object-fit: contain;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 40px rgba(212, 175, 55, 0.35)) drop-shadow(0 0 80px rgba(212, 175, 55, 0.2));
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.flip-card-front .hero-phone-img.active {
    opacity: 1;
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--text-muted);
    border-bottom: 2px solid var(--text-muted);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: rotate(45deg) translateY(0);
    }

    40% {
        transform: rotate(45deg) translateY(-8px);
    }
}

.section-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    background: transparent;
}

.section-divider .divider-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    transform: rotate(45deg);
    opacity: 0.6;
    animation: bounce 2s infinite;
}

.how-it-works {
    min-height: auto;
    padding: 100px 0;
    background: var(--bg-deep);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    margin-top: 60px;
}

.step {
    flex: 1;
    max-width: 280px;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: var(--bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-icon {
    font-size: 4rem;
    margin: 30px 0 20px;
}

.step-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.step-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.step-connector {
    display: flex;
    align-items: center;
    padding-top: 70px;
}

.connector-arrow {
    width: 40px;
    height: 20px;
    color: var(--gold);
    opacity: 0.6;
}

.features {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg), var(--bg-deep));
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.3);
}

.feature-card.premium-card {
    border-color: rgba(212, 175, 55, 0.3);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent);
}

.feature-icon {
    width: 180px;
    height: 180px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: transparent;
}

.feature-icon img {
    width: 150px;
    height: auto;
}

.feature-icon.gold-bg {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
}

.feature-icon.gold-bg span {
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-icon.premium-bg {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.1));
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
}

.flip-feature-card {
    perspective: 2000px;
    height: 450px;
    cursor: pointer;
}

.flip-feature-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;

    transition: transform 0.6s ease-in-out;
}

.flip-feature-card.flipped .flip-feature-inner {
    transform: rotateY(-180deg);
}

.flip-feature-back,
.flip-feature-front {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
}

.flip-feature-back {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-feature-back img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.flip-feature-front {

    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    text-align: center;
    box-sizing: border-box;

    height: 90%;
    width: auto;
    aspect-ratio: 0.667;
    top: 5%;
    left: 50%;
    transform: rotateY(-180deg) translateX(50%);
}

.flip-feature-front .feature-icon {
    width: 160px;
    height: 160px;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.flip-feature-front .feature-icon img {
    width: 150px;
    height: auto;
}

.flip-feature-front h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.flip-feature-front p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.4;

    min-height: 3.5em;
}

.premium-flip-card.flipped .flip-feature-front {
    border-color: rgba(212, 175, 55, 0.4);
}

.modi {
    min-height: auto;
    padding: 100px 0 60px;
    background: linear-gradient(180deg, var(--bg-deep), var(--bg));
    position: relative;
    display: flex;
    align-items: center;
    overflow: visible;
}

.modi .container {
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 8px 16px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 30px;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-top: 12px;
}

.modes-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px 100px;
    align-items: center;
    position: relative;
    overflow: visible;
}

.modes-header {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 10px;
}

.modes-header .section-title {
    margin-bottom: 8px;
}

.modes-header .section-subtitle {
    margin-top: 8px;
}

.iphone-mockup {
    position: absolute;
    right: -350px;
    top: 75%;
    transform: translateY(-50%);
    width: 950px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    z-index: 1;
}

.iphone-frame-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 50px 100px rgba(0, 0, 0, 0.6));
}

.iphone-screen-overlay {
    position: absolute;

    top: 18.5%;
    left: 17.5%;
    width: 24%;
    height: 48%;

    transform-origin: center center;
    transform: perspective(1000px) rotateZ(-30deg) rotateY(10deg) rotateX(3deg) skewY(1.5deg);

    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    padding: 15px 6px 6px;
    border-radius: 28px;
}

.app-header {
    text-align: center;
    padding: 4px 0;
    flex-shrink: 0;
    margin-bottom: -15px;
}

.app-brand {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--text);
}

.app-brand span {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-stack {
    height: 80%;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.game-card {
    position: absolute;
    width: 92%;
    height: 85%;
    border-radius: 14px;
    overflow: hidden;
    opacity: 0;
    transform: translateX(30px) scale(0.95);
    transition: opacity 0.5s ease, transform 0.5s ease;
    cursor: pointer;
}

.game-card.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    z-index: 5;
}

.game-card {
    user-select: none;
    -webkit-user-select: none;
}

.game-card img {
    pointer-events: none;
    -webkit-user-drag: none;
    user-select: none;
}

.game-card .card-label {
    pointer-events: none;
}

.card-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 20%, rgba(255, 255, 255, 0.15), transparent 50%),
        linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.25) 35%, transparent 55%),
        linear-gradient(170deg, var(--accent) 0%, var(--accent-dark) 100%);
    z-index: 0;
}

.card-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 8px;
}

.card-mascot {
    width: 80%;
    height: auto;
    max-height: 68%;
    object-fit: contain;
    filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.3));
    transition: transform 0.5s ease;
    flex-shrink: 0;
    margin-top: auto;
    margin-bottom: 6px;
}

.card-label {
    text-align: center;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 10px;
}

.card-label h4 {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    color: #000;
    text-shadow: 0 2px 3px rgba(255, 255, 255, 0.3);
    margin: 0;
}

.card-label p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin: 5px 0 0;
}

.card-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 10px 0 6px;
    flex-shrink: 0;
    margin-top: -20px;
}

.page-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding: 0;
}

.page-dot.active {
    width: 20px;
    border-radius: 5px;
    background: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

.page-dot:hover:not(.active) {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.iphone-reflection {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
    border-radius: 44px 44px 0 0;
    pointer-events: none;
}

.iphone-shadow {
    width: 200px;
    height: 20px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.3), transparent);
    border-radius: 50%;
    margin-top: 30px;
    filter: blur(8px);
}

.mode-details {
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    order: 1;
}

.mode-details-header {
    margin-bottom: 32px;
    text-align: left;
}

.mode-details-header .section-label {
    margin-bottom: 12px;
}

.mode-details-header .section-title {
    font-size: clamp(2.2rem, 5vw, 3rem);
    margin-bottom: 0;
    text-align: left;
}

.mode-details-content {
    position: relative;
    flex: 1;
    min-height: 280px;
}

.mode-detail {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.mode-detail.active {
    opacity: 1;
    pointer-events: auto;
}

.mode-badge {
    display: none;
}

.mode-detail h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0 0 12px;
    color: var(--badge-color);
}

.mode-tagline {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.6;
}

.mode-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.mode-features li {
    padding: 10px 0;
    font-size: 1rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border);
}

.mode-features li:last-child {
    border-bottom: none;
}

.mode-features li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    font-size: 0.7rem;
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

.mode-perfect {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 14px;
}

.mode-perfect .label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.mode-perfect .value {
    font-size: 0.95rem;
    color: var(--text);
}

.moments-section {
    min-height: auto;
    padding: 100px 0;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.moments-initial {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    transition: all 0.6s ease;
}

.moments-initial.hidden {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    transform: scale(0.9);
}

.initial-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    gap: 20px;
}

.initial-stack-img {
    width: 380px;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6));
    transition: transform 0.4s ease, filter 0.4s ease;
}

.initial-stack:hover .initial-stack-img {
    transform: scale(1.05) translateY(-10px) rotate(-2deg);
    filter: drop-shadow(0 40px 70px rgba(0, 0, 0, 0.7));
}

.stack-hint {
    color: var(--text-muted);
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    animation: pulseHint 2s ease-in-out infinite;
}

@keyframes pulseHint {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

.initial-text {
    padding: 40px;
}

.moments-active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scale(0.9);
    transition: all 0.6s ease;
    width: 100%;
    padding: 0 40px;
    box-sizing: border-box;
}

.moments-active.visible {
    opacity: 1;
    pointer-events: auto;
    position: relative;
    transform: translateX(0) scale(1);
    left: auto;
}

.card-draw-area {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 20px;
    min-height: 520px;
}

.corner-stack {
    cursor: pointer;
    flex-shrink: 0;
    align-self: flex-end;
    margin-bottom: 20px;
}

.corner-stack-img {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease;
}

.corner-stack:hover .corner-stack-img {
    transform: scale(1.05) rotate(-3deg);
}

.cards-stack-area {
    position: relative;
    min-height: 500px;
    min-width: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hide the tablet default card on desktop - JS creates stacked cards dynamically */
#defaultMomentCard {
    display: none;
}

.stacked-card {
    position: absolute;
    width: 360px;
    height: 510px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(212, 175, 55, 0.3);
    border: 4px solid var(--gold);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.stacked-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes cardFromStack {
    0% {
        transform: translateX(-200px) rotate(-10deg) scale(0.6);
        opacity: 0;
    }

    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 1;
    }
}

.stacked-card.entering {
    animation: cardFromStack 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.moment-text-area {
    padding: 20px 40px 20px 0;
}

.moment-text-area .section-label {
    margin-bottom: 12px;
}

.moment-text-area .section-title-left {
    margin-bottom: 32px;
}

.moment-text-area .moment-title-active {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
    color: var(--gold);
}

.moment-text-area .moment-desc-active {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.moment-text-area .hand-arrows {
    margin-top: 32px;
}

.moment-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--gold);
    border-radius: 20px;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 24px;
}

.moment-title,
.moment-title-active {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    transition: all 0.4s ease;
}

.moment-desc,
.moment-desc-active {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    transition: all 0.4s ease;
}

.hand-arrows {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.arrow-btn {
    background: transparent;
    border: none;
    color: var(--gold);
    cursor: pointer;
    padding: 8px 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-btn svg {
    width: 60px;
    height: 30px;
    transition: all 0.3s ease;
}

.arrow-btn:hover:not(:disabled) {
    color: var(--gold-light);
    transform: scale(1.15);
}

.arrow-btn:hover:not(:disabled) svg {
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.6));
}

.arrow-btn:disabled {
    opacity: 0.25;
    cursor: not-allowed;
}

.store {
    min-height: auto;
    padding: 100px 0;
    background: var(--bg-deep);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.store-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.product-showcase {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

/* Hide the label above product image on desktop */
.product-showcase .section-label {
    display: none;
}

.product-slider {
    position: relative;
    width: 480px;
    height: 480px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.product-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

.product-slide.active {
    opacity: 1;
}

.product-slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    width: 480px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.slider-dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

.product-info .section-label {
    margin-bottom: 12px;
}

.product-info .section-title-left {
    margin-bottom: 20px;
}

.product-tagline {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 28px;
    line-height: 1.8;
}

.product-features {
    list-style: none;
    margin-bottom: 28px;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 1.05rem;
}

.feature-check {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.2rem;
}

.bonus-banner {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 20px;
}

.bonus-banner .bonus-text {
    font-size: 0.95rem;
    color: var(--text);
}

.bonus-highlight {
    color: var(--gold);
    font-weight: 700;
}

.btn-order {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border: none;
    color: #000;
    padding: 18px 48px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-top: 8px;
}

.btn-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.preorder-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.preorder-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.preorder-modal {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    max-width: 480px;
    width: 90%;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--text);
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--gold);
}

.modal-message {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.modal-bonus {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.modal-success {
    text-align: center;
}

.modal-success .success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--success);
    color: #fff;
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 16px;
}

.modal-success h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--success);
}

.modal-success p {
    color: var(--text-muted);
}

.signup-form-container {
    margin-top: 8px;
}

.form-intro {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.signup-form input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 1rem;
    color: var(--text);
    transition: border-color 0.3s, background 0.3s;
}

.signup-form input::placeholder {
    color: var(--text-muted);
}

.signup-form input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

.btn-signup {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border: none;
    color: #000;
    padding: 16px 28px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-signup:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 10px;
    opacity: 0.7;
}

.signup-success {
    text-align: center;
    padding: 40px 20px;
    background: rgba(40, 199, 111, 0.1);
    border: 1px solid rgba(40, 199, 111, 0.3);
    border-radius: 12px;
}

.success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--success);
    color: #fff;
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 16px;
}

.signup-success h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--success);
}

.signup-success p {
    color: var(--text-muted);
}

.download {
    padding: 100px 0;
    background: radial-gradient(ellipse 60% 40% at 50% 100%, rgba(212, 175, 55, 0.1) 0%, transparent 70%), var(--bg);
}

.download-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.download-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 12px;
}

.download-content>p {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 32px;
}

.faq-section {
    min-height: auto;
    padding: 100px 0;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
    border-top: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: transparent;
    border: none;
    color: var(--text);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gold);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 24px;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 12px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer strong {
    color: var(--gold);
    font-weight: 600;
}

.faq-answer a {
    color: var(--gold);
    text-decoration: underline;
}

.faq-answer a:hover {
    color: var(--gold-light);
}

.faq-category {
    margin-top: 48px;
}

.faq-category:first-child {
    margin-top: 0;
}

.faq-category-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}

.footer {
    background: var(--bg-deep);
    border-top: 1px solid var(--border);
    padding: 48px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 32px;
}

.footer-brand img {
    width: 50px;
    margin-bottom: 12px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links h4 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.footer-links a {
    display: block;
    color: var(--text);
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ===========================================
   MOBILE RESPONSIVE STYLES
   =========================================== */

@media (max-width: 1024px) {
    .hero-container {
        gap: 40px;
    }

    .modes-showcase {
        gap: 40px 60px;
    }

    .iphone-mockup {
        right: -250px;
        width: 700px;
    }
}

@media (max-width: 600px) {

    /* ===== GLOBAL OVERFLOW FIX ===== */
    html,
    body {
        overflow-x: hidden !important;
        width: 100%;
        max-width: 100vw;
    }

    /* ===== GENERAL ===== */
    .container {
        padding: 0 20px;
        max-width: 100%;
        overflow-x: hidden;
    }

    section {
        min-height: auto !important;
        padding: 60px 0 !important;
        overflow-x: hidden;
    }

    /* Show mobile-only elements on mobile */
    .mobile-only {
        display: block !important;
    }

    /* Hide trust bar on mobile (desktop only) */
    .trust-bar {
        display: none !important;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 1.8rem !important;
    }

    .section-label {
        font-size: 0.65rem;
        padding: 6px 12px;
    }

    /* ===== SECTION DIVIDERS - HIDE ===== */
    .section-divider {
        display: none !important;
    }

    /* ===== HERO ===== */
    .hero {
        min-height: auto !important;
        padding: 80px 0 40px !important;
    }

    .hero-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 0;
        max-width: 100%;
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
        overflow: hidden;
    }

    .hero-text h1 {
        font-size: 2rem;
        text-align: left;
        margin-top: 24px;
        /* Space below marquee bar */
    }

    .hero-subtitle {
        font-size: 1rem;
        margin: 20px 0 30px 0;
        text-align: center;
        max-width: 100%;
        line-height: 1.6;
    }

    /* Hero Description Mobile */
    .hero-description {
        text-align: center;
        max-width: 100%;
        margin-bottom: 24px;
    }

    .hero-hook {
        font-size: 1.1rem;
        font-weight: 500;
        color: var(--text);
        margin-bottom: 14px;
    }

    .hero-body {
        font-size: 0.9rem;
        color: var(--text-muted);
        margin-bottom: 14px;
        line-height: 1.5;
        opacity: 0.85;
    }

    .hero-facts {
        font-size: 0.85rem;
        line-height: 1.6;
        opacity: 0.9;
    }

    .hero-visual {
        display: none !important;
    }

    /* Mobile hero layout - flatten hero-text so order works across all elements */
    .hero-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 0;
    }

    /* display:contents makes children of hero-text act as direct children of hero-container */
    .hero-text {
        display: contents;
    }

    .hero-text h1 {
        text-align: center;
        font-size: 1.8rem;
        margin-bottom: 12px;
        order: 1;
    }

    /* Show flip card on mobile - positioned after title (order: 2) */
    .hero-flip-container {
        display: block !important;
        order: 2;
        margin: 12px 0 4px;
        width: 180px;
        height: 220px;
        perspective: 1000px;
    }

    .hero-flip-container .flip-card {
        width: 100%;
        height: 100%;
    }

    /* Mobile Top Marquee Bar - Simplified Rebuild */
    .top-marquee-bar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 32px;
        background: #111;
        z-index: 10001;
        overflow: hidden;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Adjust Navbar and Body for marquee on mobile */
    body {
        padding-top: 32px;
    }

    .navbar {
        top: 32px;
    }

    .mobile-menu-overlay {
        top: 32px;
        padding-top: 20px;
        height: calc(100vh - 32px);
    }

    /* Marquee Track - Fast scroll, single run, then hide via JS */
    .marquee-content {
        display: flex;
        width: max-content;
        animation: scroll-left 30s linear forwards;
    }

    .marquee-content span {
        display: flex;
        align-items: center;
        height: 32px;
        padding: 0 20px;
        font-size: 0.7rem;
        color: var(--gold);
        text-transform: uppercase;
        letter-spacing: 0.08em;
        font-weight: 600;
        white-space: nowrap;
        flex-shrink: 0;
    }

    @keyframes scroll-left {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-100%);
        }
    }

    /* End Marquee */

    /* Mobile: show mobile-only images, hide desktop carousel images */
    .step-icon img {
        width: 80px;
        height: auto;
        filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.2));
    }

    .step-icon {
        font-size: 3rem;
        margin: 20px 0 16px;
    }

    /* Sticky CTA */
    .sticky-cta {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 9999;
        width: calc(100% - 40px);
        max-width: 400px;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .sticky-cta.visible {
        opacity: 1;
        pointer-events: auto;
    }

    .btn-sticky-buy {
        display: block;
        width: 100%;
        background: var(--gold);
        color: #000;
        text-align: center;
        padding: 16px;
        border-radius: 14px;
        font-weight: 700;
        font-size: 1.1rem;
        text-decoration: none;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    /* Mobile: show mobile-only images, hide desktop carousel images */
    .hero-flip-container .mobile-only-img {
        position: absolute;
        display: block !important;
        width: 100%;
        height: 100%;
        object-fit: contain;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
        filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
    }

    .hero-flip-container .mobile-only-img.active {
        opacity: 1;
    }

    .hero-flip-container .desktop-only-img,
    .flip-card-front .hero-phone-img.desktop-only-img,
    .flip-card-front .hero-phone-img {
        display: none !important;
        opacity: 0 !important;
    }

    .hero-flip-container .flip-card-back picture {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-flip-container .flip-card-back img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
    }

    /* Mobile tap hint - after flip card */
    .mobile-tap-hint {
        display: block;
        text-align: center;
        font-size: 0.75rem;
        color: var(--text-muted);
        opacity: 0.7;
        margin: 8px 0 16px;
        order: 3;
        animation: pulseHint 2s ease-in-out infinite;
    }

    @keyframes pulseHint {

        0%,
        100% {
            opacity: 0.5;
        }

        50% {
            opacity: 1;
        }
    }

    /* Mobile Hero Label - after tap hint */
    .hero-label {
        display: inline-block;
        background: #000;
        color: #fff;
        padding: 6px 14px;
        border-radius: 6px;
        font-size: 0.75rem;
        font-weight: 600;
        margin-bottom: 8px;
        text-transform: none;
        letter-spacing: 0.02em;
        order: 4;
    }

    /* Mobile Stats Row */
    .hero-stats {
        display: flex;
        justify-content: center;
        gap: 32px;
        padding: 12px 0;
        margin: 0 0 16px;
        width: 100%;
        order: 5;
    }

    .stat-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .stat-value {
        font-size: 1.5rem;
        font-weight: 800;
        color: var(--text);
    }

    .stat-label {
        font-size: 0.65rem;
        text-transform: uppercase;
        color: var(--text-muted);
        letter-spacing: 0.05em;
        margin-top: 4px;
    }

    /* Mobile Dual Buttons */
    .hero-buttons {
        display: flex;
        gap: 12px;
        width: 100%;
        justify-content: center;
        order: 6;
    }

    /* Hide desktop-only elements on mobile */
    .desktop-only {
        display: none !important;
    }

    .btn-shop {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--gold);
        color: #000;
        padding: 12px 18px;
        border-radius: 10px;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.95rem;
        transition: transform 0.2s, background 0.2s;
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    }

    .btn-shop svg {
        width: 16px;
        height: 16px;
    }

    .btn-shop:hover {
        background: #e6c547;
        transform: translateY(-2px);
    }

    .btn-appstore {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .btn-appstore svg {
        width: 20px;
        height: 20px;
    }

    .btn-appstore .btn-small {
        font-size: 0.6rem;
    }

    .btn-appstore .btn-large {
        font-size: 0.85rem;
    }


    /* ===== HOW IT WORKS ===== */
    .how-it-works {
        padding: 60px 0 !important;
    }

    .steps-container {
        flex-direction: column;
        gap: 50px;
        margin-top: 40px;
    }

    .step {
        max-width: 100%;
        padding: 0;
    }

    .step-connector {
        display: none;
    }

    .step-icon {
        font-size: 3rem;
        margin: 20px 0 15px;
    }

    /* ===== FEATURES (4 Cards) ===== */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .flip-feature-card {
        height: 320px;
    }

    .feature-card {
        padding: 20px 15px;
    }

    .feature-icon {
        width: 100px;
        height: 100px;
    }

    .feature-icon img {
        width: 80px;
    }

    .flip-feature-front h3 {
        font-size: 1rem;
    }

    .flip-feature-front p {
        font-size: 0.8rem;
        min-height: auto;
    }

    /* ===== MODI SECTION ===== */
    .modi {
        padding: 60px 0 !important;
    }

    .modes-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .modes-text {
        order: 1;
        text-align: center;
    }

    .iphone-mockup {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        order: 2;
    }

    .mode-name {
        font-size: 1.5rem !important;
    }

    .mode-desc {
        font-size: 0.95rem;
    }

    .mode-features {
        justify-content: center;
    }

    .perfekt-tag {
        justify-content: center;
    }

    /* ===== MOMENTE SECTION ===== */
    .momente {
        padding: 60px 0 !important;
    }

    .momente-container {
        flex-direction: column;
        gap: 30px;
    }

    .momente-visual {
        order: 1;
    }

    .momente-info {
        order: 2;
        text-align: center;
        max-width: 100%;
    }

    .card-stack-container {
        transform: scale(0.7);
    }

    /* ===== STORE/SHOP SECTION ===== */
    .store {
        padding: 60px 0 !important;
    }

    .store-layout {
        grid-template-columns: 1fr !important;
        gap: 30px;
        text-align: center;
    }

    .product-showcase {
        order: 1;
        align-items: center !important;
    }

    /* Show label above product image on mobile */
    .product-showcase .section-label {
        display: block !important;
    }

    .product-slider {
        width: 280px !important;
        height: 280px !important;
        margin: 0 auto;
    }

    .product-slider-dots {
        width: 280px;
        justify-content: center;
    }

    .product-info {
        order: 2;
        display: block !important;
        text-align: center;
        padding: 0 10px;
    }

    /* Hide label in product-info on mobile (it's shown in product-showcase) */
    .product-info .section-label {
        display: none !important;
    }

    .product-info .section-title-left {
        text-align: center;
    }

    .product-tagline {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .product-features {
        display: inline-block;
        text-align: left;
        margin-bottom: 24px;
    }

    .product-features li {
        font-size: 0.95rem;
        padding: 8px 0;
    }

    .btn-order {
        width: 100%;
        max-width: 300px;
        padding: 16px 32px;
        font-size: 1rem;
    }

    /* ===== PREORDER MODAL ===== */
    .preorder-modal {
        padding: 40px 20px 24px;
        width: 95%;
        max-width: 360px;
        margin: 20px;
    }

    .modal-title {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .modal-message {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 16px;
    }

    .modal-message br {
        display: none;
    }

    .modal-bonus {
        font-size: 0.85rem;
        padding: 10px 14px;
        margin-bottom: 16px;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr !important;
        gap: 10px;
    }

    .signup-form input {
        padding: 12px 14px;
        font-size: 0.95rem;
    }

    .btn-signup {
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    .form-note {
        font-size: 0.75rem;
        text-align: center;
    }

    .desktop-only {
        display: none !important;
    }

    /* ===== FAQ ===== */
    .faq {
        padding: 60px 0 !important;
    }

    .faq-container {
        max-width: 100%;
    }

    .faq-question {
        font-size: 0.95rem;
        padding: 16px;
    }

    /* ===== FOOTER ===== */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        text-align: center;
    }

    .footer-brand {
        grid-column: 1 / -1;
        order: 2;
        margin-top: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .footer-links {
        order: 1;
        text-align: center;
    }

    /* ===== HIDE DESKTOP-ONLY ELEMENTS ===== */
    .initial-text,
    .moment-text-area {
        display: none !important;
    }

    /* ===== GLOBAL WIDTH CONSTRAINTS ===== */
    .container,
    .hero-text,
    .modes-info,
    .momente-text,
    .kartenspiel-info {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box;
    }

    /* ===== FIX POSITIONED ELEMENTS OVERFLOW ===== */
    .cards-stack-area,
    .card-draw-area {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        min-width: auto !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .stacked-card {
        width: 280px !important;
        height: 400px !important;
    }

    .product-info {
        position: static !important;
        left: auto !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    /* ===== FORCE ALL ELEMENTS TO STAY WITHIN VIEWPORT ===== */
    * {
        max-width: 100vw;
    }
}

@media (max-width: 480px) {

    /* Extra small screens */
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .flip-card {
        width: 160px;
        height: 224px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .flip-feature-card {
        height: 280px;
    }

    .section-title {
        font-size: 1.5rem !important;
    }

    .btn-appstore {
        padding: 12px 20px;
    }

    .btn-appstore .btn-large {
        font-size: 1rem;
    }
}

/* ===========================================
   MOBILE CAROUSELS (Swiper.js)
   =========================================== */

/* Hide mobile carousel on desktop (default) */
.mobile-features-carousel {
    display: none !important;
}

/* Hide mobile moments carousel on desktop (default) */
.mobile-moments-carousel {
    display: none !important;
}

/* Show mobile carousel ONLY on mobile, hide desktop grid */
@media (max-width: 600px) {
    .features-grid {
        display: none !important;
    }

    .mobile-features-carousel {
        display: block !important;
    }

    /* Hide desktop moments elements on mobile */
    .moments-initial,
    .moments-active {
        display: none !important;
    }

    .mobile-moments-carousel {
        display: block !important;
        text-align: center;
        padding-top: 20px;
    }

    .mobile-moments-carousel .section-title {
        margin-bottom: 25px;
    }

    /* Moments Swiper Styles */
    .moments-swiper {
        width: 100%;
        padding: 20px 0 30px;
        overflow: hidden;
    }

    .moments-swiper .swiper-slide {
        width: 240px;
        height: 380px;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        padding-top: 30px;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .moments-swiper .swiper-slide:not(.swiper-slide-active) {
        transform: scale(0.85);
        opacity: 0.5;
    }

    .moments-swiper .swiper-slide-active {
        transform: scale(1);
        opacity: 1;
    }

    .moment-slide-card {
        width: 220px;
        height: 320px;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        border: 2px solid var(--gold);
    }

    .moment-slide-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .moments-swiper .swiper-pagination {
        bottom: -10px !important;
        position: relative;
        margin-top: 60px;
    }

    .moments-swiper .swiper-pagination-bullet {
        background: rgba(255, 255, 255, 0.4);
        width: 10px;
        height: 10px;
        opacity: 1;
    }

    .moments-swiper .swiper-pagination-bullet-active {
        background: var(--gold);
        width: 24px;
        border-radius: 5px;
    }

    .mobile-moment-text {
        padding: 0 30px 20px;
        margin-top: -10px;
        text-align: center;
    }

    .mobile-moment-title {
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--gold);
        margin-bottom: 10px;
        transition: opacity 0.3s ease;
    }

    .mobile-moment-desc {
        font-size: 0.95rem;
        color: var(--text-muted);
        line-height: 1.6;
        transition: opacity 0.3s ease;
    }
}

/* Mobile Carousel Container */
.mobile-carousel-section {
    padding: 40px 0;
    overflow: hidden;
}

.mobile-carousel-section .section-title {
    text-align: center;
    margin-bottom: 30px;
    padding: 0 20px;
}

/* Swiper Carousel Styles */
.mobile-swiper {
    width: 100%;
    padding: 20px 0 50px;
    overflow: hidden;
}

.mobile-swiper .swiper-slide {
    width: 180px;
    height: 260px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Side slides are smaller and faded */
.mobile-swiper .swiper-slide:not(.swiper-slide-active) {
    transform: scale(0.85);
    opacity: 0.5;
}

.mobile-swiper .swiper-slide-active {
    transform: scale(1);
    opacity: 1;
}

/* Flip Card in Carousel */
.mobile-flip-card {
    width: 220px;
    height: 320px;
    perspective: 1000px;
    cursor: pointer;
}

.mobile-flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
}

.mobile-flip-card.flipped .mobile-flip-card-inner {
    transform: rotateY(180deg);
}

.mobile-flip-card-front,
.mobile-flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
}

.mobile-flip-card-back {
    background: transparent;
}

.mobile-flip-card-back img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-flip-card-front {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, var(--bg-deep), var(--bg));
    border: 2px solid var(--gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 15px;
    text-align: center;
    box-sizing: border-box;
}

.mobile-flip-card-front .card-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
}

.mobile-flip-card-front .card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mobile-flip-card-front h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.mobile-flip-card-front p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Full-image card front - matches back styling */
.mobile-flip-card-front.has-image {
    padding: 0;
    background: #0A0A0A;
    border: none;
    display: block;
}

.mobile-flip-card-front.has-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Swiper Navigation Arrows */
.mobile-swiper .swiper-button-next,
.mobile-swiper .swiper-button-prev {
    color: var(--gold);
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
}

.mobile-swiper .swiper-button-next::after,
.mobile-swiper .swiper-button-prev::after {
    font-size: 18px;
}

/* Swiper Pagination */
.mobile-swiper .swiper-pagination-bullet {
    background: var(--text-muted);
    opacity: 0.5;
}

.mobile-swiper .swiper-pagination-bullet-active {
    background: var(--gold);
    opacity: 1;
}

/* Tap hint */
.tap-hint {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 15px;
}

/* Mobile Modi Carousel - REMOVED as we now use crossfade images */
@media (max-width: 600px) {
    /* modes-showcase is now visible on mobile with crossfade images */
    /* .iphone-mockup is hidden in the mobile mode images section */
}


.mobile-modi-carousel {
    display: none;
}

.mobile-modi-slide {
    text-align: center;
    padding: 20px;
}

.mobile-modi-slide .mode-image {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 20px;
}

.mobile-modi-slide .mode-image img {
    width: 100%;
    height: auto;
}

.mobile-modi-slide .mode-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.mobile-modi-slide .mode-desc {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 15px;
}

/* Mobile Kartenspiel */
@media (max-width: 600px) {
    .kartenspiel-container {
        flex-direction: column !important;
    }

    .kartenspiel-info {
        order: 1 !important;
        text-align: center;
        margin-bottom: 30px;
    }

    .kartenspiel-visual {
        order: 2 !important;
    }

    .product-slider {
        max-width: 100%;
    }
}

/* ===========================================
   MOBILE MODE IMAGES (Crossfade)
   =========================================== */

/* Hidden on desktop */
.mobile-mode-images,
.mobile-mode-pagination {
    display: none;
}

/* Show only on mobile */
@media (max-width: 600px) {

    /* Ensure mode-details is visible on mobile */
    .mode-details {
        display: block !important;
        position: relative;
        max-width: 100%;
        text-align: left;
        padding: 0 20px;
    }

    .mode-details-header {
        margin-bottom: 20px;
        text-align: left;
    }

    .mode-detail h3 {
        font-size: 1.8rem;
        text-align: left;
    }

    .mode-tagline {
        font-size: 1rem;
        color: var(--text-muted);
        text-align: left;
    }

    /* Override desktop absolute positioning for proper mobile flow */
    .mode-details-content {
        min-height: auto !important;
        position: relative;
    }

    .mode-detail {
        position: relative !important;
        opacity: 0;
        display: none;
    }

    .mode-detail.active {
        display: block;
        opacity: 1;
    }

    .mode-features {
        text-align: left;
        max-width: 100%;
        margin: 20px 0;
        padding-left: 0;
    }

    .mode-perfect {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-start;
        align-items: center;
        text-align: left;
        margin-bottom: 0;
    }

    .mode-perfect .label {
        margin-right: 5px;
    }

    /* Hide the desktop iPhone mockup on mobile */
    .iphone-mockup {
        display: none !important;
    }

    /* Mobile Mode Pagination Dots - BETWEEN text and image */
    .mobile-mode-pagination {
        display: flex !important;
        justify-content: center;
        gap: 12px;
        margin-top: 30px;
        margin-bottom: 20px;
        padding: 10px 0;
    }

    .mobile-mode-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        border: none;
        background: rgba(255, 255, 255, 0.3);
        cursor: pointer;
        transition: all 0.3s ease;
        padding: 0;
    }

    .mobile-mode-dot.active {
        background: var(--gold);
        transform: scale(1.2);
    }

    .mobile-mode-dot:hover {
        background: rgba(255, 255, 255, 0.6);
    }

    .mobile-mode-dot.active:hover {
        background: var(--gold);
    }

    /* Mobile Mode Images Container - aligned right for arm effect */
    .mobile-mode-images {
        display: block !important;
        position: relative;
        width: 110%;
        max-width: none;
        margin-left: auto;
        margin-right: -30px;
    }

    .mobile-mode-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
        pointer-events: none;
    }

    .mobile-mode-img.active {
        position: relative;
        opacity: 1;
        pointer-events: auto;
    }
}

/* ============================================
   TABLET STYLES (601px - 1024px)
   Comprehensive fixes for proper responsive layout
   ============================================ */
@media (min-width: 601px) and (max-width: 1024px) {

    /* ============================================
       TABLET HYBRID LAYOUT
       - Hero, Warum Onni, Spielmodi, Momente: Mobile-style (scaled)
       - So funktioniert's, Shop: Desktop-style
       ============================================ */

    /* ===== GLOBAL ===== */
    .container {
        max-width: 100%;
        padding: 0 40px;
        box-sizing: border-box;
    }

    /* ===== NAVIGATION ===== */
    .nav-links a {
        padding: 6px 10px;
        font-size: 0.85rem;
    }

    .nav-cta {
        padding: 8px 14px;
        font-size: 0.85rem;
    }

    /* ===== HERO - TABLET STYLE (structured like desktop, single column) ===== */
    .hero {
        min-height: auto !important;
        padding: 100px 0 60px !important;
    }

    .hero-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 0 !important;
        max-width: 100%;
        padding: 0 40px;
    }

    /* Flatten hero-text so ordering works */
    .hero-text {
        display: contents !important;
    }

    /* 1. Title first */
    .hero-text h1 {
        text-align: center !important;
        font-size: 2.2rem !important;
        margin-bottom: 20px;
        order: 1;
    }

    /* Hide desktop visual */
    .hero-visual {
        display: none !important;
    }

    /* 2. Flip card after title */
    .hero-flip-container {
        display: block !important;
        order: 2;
        margin: 0 0 24px;
        width: 240px !important;
        height: 300px !important;
    }

    /* 3. Stats row after card */
    .hero-stats {
        order: 3;
        margin-bottom: 16px;
    }

    /* 4. Trust bar after stats - SHOW on tablet */
    .trust-bar {
        display: flex !important;
        order: 4;
        margin-bottom: 24px;
        padding: 12px 20px;
        gap: 10px;
        font-size: 0.75rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .trust-bar span {
        white-space: nowrap;
    }

    /* 5. Buttons at the bottom */
    .hero-buttons {
        order: 5;
    }

    /* Hide scroll indicator arrow on tablet */
    .scroll-indicator {
        display: none !important;
    }

    /* ===== SO FUNKTIONIERT'S - DESKTOP STYLE ===== */
    /* Reduce gaps to give more space to text containers */
    .steps-container {
        gap: 8px;
        padding: 0 20px;
    }

    /* Shrink arrows to release space */
    .step-connector {
        width: 30px;
        min-width: 30px;
        flex-shrink: 0;
    }

    .connector-arrow {
        width: 24px;
    }

    .step {
        text-align: center;
        flex: 1;
        min-width: 180px;
        max-width: none !important;
        padding: 0 5px;
    }

    .step-number {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .step-title {
        font-size: 1.1rem;
        text-align: center;
        width: 100%;
        white-space: nowrap;
    }

    .step-desc {
        font-size: 0.95rem;
        text-align: center;
        width: 100%;
        margin: 0 auto;
    }

    /* ===== WARUM ONNI (FEATURES) - MOBILE CAROUSEL FOR TABLET ===== */
    .features-grid {
        display: none !important;
    }

    .mobile-features-carousel {
        display: block !important;
    }

    /* Swiper container - auto height to fit content */
    .features .mobile-swiper {
        padding: 30px 0 40px;
        height: auto !important;
    }

    /* Force slide height to match card height */
    .features .mobile-swiper .swiper-slide {
        height: 400px !important;
    }

    /* Pagination below cards */
    .features .mobile-swiper .swiper-pagination {
        position: relative !important;
        bottom: auto !important;
        margin-top: 20px;
    }

    /* Navigation arrows on tablet - position on sides */
    .features .mobile-swiper .swiper-button-prev,
    .features .mobile-swiper .swiper-button-next {
        display: flex !important;
        width: 44px;
        height: 44px;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 50%;
        top: 50%;
        transform: translateY(-50%);
    }

    .features .mobile-swiper .swiper-button-prev {
        left: 60px;
    }

    .features .mobile-swiper .swiper-button-next {
        right: 60px;
    }

    .features .mobile-swiper .swiper-button-prev::after,
    .features .mobile-swiper .swiper-button-next::after {
        font-size: 18px;
        color: var(--gold);
    }

    /* Flip card sizing for tablet */
    .mobile-flip-card {
        width: 280px !important;
        height: 400px !important;
    }

    .mobile-flip-card .flip-card-front,
    .mobile-flip-card .flip-card-back {
        width: 280px !important;
        height: 400px !important;
        border-radius: 20px;
    }

    .mobile-flip-card .flip-card-front img,
    .mobile-flip-card .flip-card-back img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 20px;
    }

    /* ===== SPIELMODI - MOBILE STYLE ===== */
    /* Hide desktop iPhone mockup */
    .iphone-mockup {
        display: none !important;
    }

    /* Show mobile mode elements */
    .mobile-mode-pagination {
        display: flex !important;
        justify-content: center;
        gap: 12px;
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .mobile-mode-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        border: none;
        background: rgba(255, 255, 255, 0.3);
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .mobile-mode-dot.active {
        background: var(--gold);
        transform: scale(1.2);
    }

    .mobile-mode-images {
        display: block !important;
        position: relative;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .mobile-mode-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
        pointer-events: none;
    }

    .mobile-mode-img.active {
        position: relative;
        opacity: 1;
        pointer-events: auto;
    }

    /* Mode details - full width for tablet */
    .modes-showcase {
        display: flex !important;
        /* CRITICAL: override desktop grid */
        flex-direction: column;
        align-items: flex-start;
        /* Left align like mobile */
        width: 100%;
        gap: 20px;
    }

    /* Hide inactive modes - show only active like mobile */
    .mode-detail {
        position: relative !important;
        opacity: 0;
        display: none;
    }

    .mode-detail.active {
        display: block;
        opacity: 1;
    }

    .mode-details {
        text-align: left;
        /* Left align like mobile */
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0 40px;
        box-sizing: border-box;
    }

    .mode-details-header {
        text-align: left;
    }

    .mode-details-header h3 {
        font-size: 2.2rem;
        text-align: left;
    }

    .mode-details-header p {
        font-size: 1.1rem;
        text-align: left;
    }

    /* Feature list - left align like mobile */
    .mode-features {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    /* Mobile mode images - position right at screen edge like mobile */
    .mobile-mode-images {
        width: 110% !important;
        max-width: none;
        margin-left: auto;
        margin-right: -30px;
        /* Push to right edge */
    }

    .mobile-mode-img {
        width: 100%;
        max-width: none;
    }

    /* Mode pagination - position below image */
    .mobile-mode-pagination {
        order: 10;
        /* Move after images */
        width: 100%;
        justify-content: center;
        margin-top: 20px;
        margin-bottom: 25px;
    }

    .mobile-mode-dot {
        width: 14px;
        height: 14px;
    }

    /* ===== MOMENTE - TABLET: DESKTOP LAYOUT ===== */
    /* Section container - ensure proper spacing */
    .moments-section {
        padding: 60px 0;
        position: relative;
    }

    .moments-section .container {
        position: relative;
    }

    /* Hide mobile carousel on tablet */
    .mobile-moments-carousel {
        display: none !important;
    }

    /* Show desktop moments layout */
    .moments-initial {
        display: none !important;
        /* Hide card draw state */
    }

    .moments-active {
        display: flex !important;
        /* Show active state directly */
        opacity: 1 !important;
        pointer-events: auto !important;
        /* Enable click interactions */
        gap: 40px;
        align-items: center;
        padding: 0;
        position: relative;
    }

    /* HIDE the card stack (3D box) on tablet */
    #cornerStack,
    .corner-stack {
        display: none !important;
    }

    /* Card display area - properly sized */
    .card-draw-area {
        flex-shrink: 0;
        width: 300px;
    }

    #cardsStackArea,
    .cards-stack-area {
        width: 300px;
        height: 450px;
        position: relative;
    }

    /* Scale card for tablet - center it like stacked cards */
    .moments-active .flip-card-moments,
    #defaultMomentCard {
        display: block !important;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 300px !important;
        height: 450px !important;
        flex-shrink: 0;
    }

    /* Fix moment-slide-card dimensions */
    .moment-slide-card {
        width: 300px !important;
        height: 450px !important;
        border-radius: 20px;
        overflow: hidden;
        border: 3px solid var(--gold);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    }

    .moment-slide-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Text area */
    .moment-text-area {
        flex: 1;
        text-align: left;
    }

    .moments-active .section-title {
        margin-bottom: 25px;
    }

    .moments-content {
        flex: 1;
        text-align: left;
    }

    /* Force all stacked cards to same position on tablet - centered like default card */
    .stacked-card {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) !important;
        width: 300px !important;
        height: 450px !important;
        border-radius: 20px;
        overflow: hidden;
        border: 3px solid var(--gold);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    }

    .stacked-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* ===== SHOP - MOBILE STYLE (centered, vertical) ===== */
    .store-layout {
        grid-template-columns: 1fr !important;
        gap: 40px;
        text-align: center;
    }

    .product-showcase {
        order: 1;
        align-items: center !important;
    }

    /* Show label above product image on tablet */
    .product-showcase .section-label {
        display: block !important;
    }

    .product-slider {
        width: 400px !important;
        height: 400px !important;
        margin: 0 auto;
    }

    .product-slider-dots {
        width: 400px;
        justify-content: center;
    }

    .product-info {
        order: 2;
        display: block !important;
        text-align: center;
        padding: 0 40px;
    }

    /* Hide label in product-info on tablet (it's shown in product-showcase) */
    .product-info .section-label {
        display: none !important;
    }

    .product-info .section-title-left {
        text-align: center;
        white-space: normal;
    }

    .product-tagline {
        font-size: 1.1rem;
        margin-bottom: 24px;
    }

    .product-features {
        display: inline-block;
        text-align: left;
        margin-bottom: 28px;
    }

    .product-features li {
        font-size: 1.05rem;
        padding: 10px 0;
    }

    .btn-order {
        width: 100%;
        max-width: 360px;
        padding: 18px 36px;
        font-size: 1.1rem;
    }

    /* ===== FAQ ===== */
    .faq-container {
        padding: 0 24px;
    }

    .faq-item {
        padding: 16px;
    }

    /* ===== HIDE SCROLL ARROWS ON TABLET ===== */
    .scroll-indicator,
    .scroll-arrow,
    .section-divider,
    .divider-arrow {
        display: none !important;
    }

    /* ===== SECTION SPACING FOR TABLET ===== */
    section {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .hero {
        padding-top: 120px;
        padding-bottom: 100px;
    }

    .how-it-works {
        padding: 80px 0;
    }

    .benefits {
        padding: 80px 0;
    }

    .modes {
        padding: 80px 0;
    }

    .situations {
        padding: 80px 0;
    }

    .store {
        padding: 80px 0;
    }

    .faq {
        padding: 80px 0 60px;
    }
}

/* End of tablet media query */