@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Outfit:wght@300;400;500;600;700&family=Barlow:wght@500;600;700;800;900&display=swap');

/* =============================================
   KAYDOS LUNAPARK - IMMERSIVE THEME PARK
   Not a website - an EXPERIENCE
   ============================================= */

:root {
    --font-heading: 'Barlow', sans-serif;
    --font-fun: 'Barlow', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --neon-cyan: #00e5ff;
    --neon-pink: #ff006e;
    --neon-purple: #7b1fa2;
    --neon-yellow: #ffd600;
    --dark-1: #050011;
    --dark-2: #0d0221;
    --dark-3: #1a0033;
    --text-light: #f0f0f5;
    --text-muted: rgba(255, 255, 255, 0.55);
    --transition: 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    --spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-light);
    background: var(--dark-1);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

::selection {
    background: var(--neon-cyan);
    color: #000;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--dark-2);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--neon-cyan), var(--neon-pink), var(--neon-purple));
    border-radius: 3px;
}

/* ========== FIREWORKS CANVAS ========== */

#fireworks-canvas {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* ========== TICKET STRIP ========== */

.ticket-strip {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 300;
    background: linear-gradient(90deg,
            var(--neon-pink),
            var(--neon-purple),
            var(--neon-cyan),
            var(--neon-yellow),
            var(--neon-pink));
    background-size: 200% 100%;
    animation: ticketGradient 4s linear infinite;
    padding: 4px 0;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(255, 0, 110, 0.4);
}

@keyframes ticketGradient {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

.ticket-track {
    display: flex;
    gap: 40px;
    animation: ticketScroll 20s linear infinite;
    white-space: nowrap;
}

.ticket {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

@keyframes ticketScroll {
    0% {
        transform: translateX(0);
    }

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

/* ========== HEADER ========== */

.lp-header {
    position: fixed;
    top: 22px;
    left: 0;
    width: 100%;
    z-index: 200;
    padding: 14px 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(5, 0, 17, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 229, 255, 0.15);
}

.lp-header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 229, 255, 0.08);
}

.lp-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--neon-cyan);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(0, 229, 255, 0.25);
    background: rgba(123, 31, 162, 0.12);
    transition: var(--spring);
    cursor: pointer;
}

.lp-back:hover {
    background: var(--neon-purple);
    color: #fff;
    border-color: var(--neon-purple);
    transform: translateX(-3px);
    box-shadow: 0 4px 20px rgba(123, 31, 162, 0.4);
}

.lp-header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.neon-ferris-mini {
    width: 32px;
    height: 32px;
}

.mini-wheel-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 6px var(--neon-cyan));
}

.lp-header-logo a {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--neon-cyan);
    text-shadow: 0 0 20px var(--neon-cyan), 0 0 40px var(--neon-purple);
}

.lp-header-logo a span {
    color: var(--neon-pink);
    text-shadow: 0 0 15px var(--neon-pink);
}

/* ========== HERO ========== */

.lp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(ellipse at 50% 0%, rgba(123, 31, 162, 0.15) 0%, var(--dark-1) 70%);
    padding-top: 80px;
}

.hero-stars {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero-star {
    position: absolute;
    border-radius: 50%;
    background: #fff;
    animation: starTwinkle infinite ease-in-out;
}

@keyframes starTwinkle {
    0%,
    100% {
        opacity: 0.2;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.3);
        box-shadow: 0 0 6px #fff, 0 0 12px var(--neon-cyan);
    }
}

/* Giant Ferris Wheel */
.giant-ferris {
    position: absolute;
    right: -5%;
    top: 5%;
    z-index: 2;
    width: 500px;
    height: 520px;
    opacity: 0.25;
    pointer-events: none;
    filter: drop-shadow(0 0 40px rgba(0, 229, 255, 0.2));
    transition: transform 0.1s linear;
}

.gf-svg {
    width: 100%;
    height: 100%;
}

.gf-spokes,
.gf-cabins {
    transform-origin: 200px 200px;
}

.cabin-group circle {
    animation: cabinPulse 2s infinite alternate ease-in-out;
}

@keyframes cabinPulse {
    0% {
        opacity: 0.5;
        filter: drop-shadow(0 0 4px currentColor);
    }

    100% {
        opacity: 1;
        filter: drop-shadow(0 0 12px currentColor);
    }
}

/* Roller Coaster Track */
.rc-track-svg {
    position: absolute;
    bottom: 15%;
    left: 0;
    width: 100%;
    height: 200px;
    z-index: 3;
    pointer-events: none;
    opacity: 0.6;
}

.rc-cart {
    filter: drop-shadow(0 0 8px currentColor);
}

/* Hero Content */
.lp-hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 0 24px;
    max-width: 900px;
}

/* ========== FERRIS WHEEL (DÖNME DOLAP) ========== */

.ferris-wheel-wrapper {
    position: relative;
    width: 520px;
    height: 520px;
    margin: 0 auto 20px;
}

/* Support structure */
.fw-support {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 120px;
    z-index: 1;
}

.fw-leg {
    position: absolute;
    bottom: 0;
    width: 4px;
    height: 140px;
    background: linear-gradient(to bottom, var(--neon-cyan), rgba(0, 229, 255, 0.2));
    box-shadow: 0 0 8px rgba(0, 229, 255, 0.3);
}

.fw-leg-left {
    left: 60px;
    transform-origin: top center;
    transform: rotate(15deg);
}

.fw-leg-right {
    right: 60px;
    transform-origin: top center;
    transform: rotate(-15deg);
}

.fw-base {
    position: absolute;
    bottom: -4px;
    left: 30px;
    right: 30px;
    height: 6px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    border-radius: 3px;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
}

.fw-base-glow {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 20px;
    background: radial-gradient(ellipse, rgba(0, 229, 255, 0.25) 0%, transparent 70%);
    filter: blur(5px);
}

/* The Rotating Wheel */
.fw-wheel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: fwSpin 30s linear infinite;
}

@keyframes fwSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Outer ring */
.fw-ring {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-radius: 50%;
    border: 3px solid rgba(0, 229, 255, 0.35);
    box-shadow:
        0 0 15px rgba(0, 229, 255, 0.15),
        inset 0 0 15px rgba(0, 229, 255, 0.08),
        0 0 40px rgba(0, 229, 255, 0.08);
    animation: ringPulse 3s ease-in-out infinite alternate;
}

@keyframes ringPulse {
    0% { border-color: rgba(0, 229, 255, 0.35); box-shadow: 0 0 15px rgba(0, 229, 255, 0.15), inset 0 0 15px rgba(0, 229, 255, 0.08); }
    100% { border-color: rgba(255, 0, 110, 0.35); box-shadow: 0 0 20px rgba(255, 0, 110, 0.2), inset 0 0 20px rgba(255, 0, 110, 0.1); }
}

.fw-ring-inner {
    position: absolute;
    top: 25px;
    left: 25px;
    right: 25px;
    bottom: 25px;
    border-radius: 50%;
    border: 1px dashed rgba(0, 229, 255, 0.12);
}

/* Spokes */
.fw-spoke {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(0, 229, 255, 0.06) 10%,
        rgba(0, 229, 255, 0.2) 50%,
        rgba(0, 229, 255, 0.06) 90%,
        transparent 100%
    );
    transform-origin: center center;
    transform: translate(-50%, -50%) rotate(var(--spoke-angle));
}

/* Hub */
.fw-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 36px;
    height: 36px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, var(--neon-cyan) 0%, rgba(0, 229, 255, 0.4) 60%, transparent 100%);
    box-shadow: 0 0 20px var(--neon-cyan), 0 0 40px rgba(0, 229, 255, 0.3);
    z-index: 5;
}

.fw-hub-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* Gondolas */
.fw-gondola {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    transform-origin: 0 0;
    /* Position at the edge of the wheel:
       translate to center, then rotate to angle, then move outward */
}

/* Each gondola: positioned by rotating from center and translating outward */
.fw-gondola {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: rotate(var(--g-angle)) translateY(-230px);
}

.fw-gondola-arm {
    width: 2px;
    height: 28px;
    background: linear-gradient(to bottom, rgba(0, 229, 255, 0.3), var(--g-color));
    margin: 0 auto;
    box-shadow: 0 0 4px var(--g-color);
}

.fw-gondola-pod {
    /* Counter-rotate so text stays upright */
    animation: fwCounterSpin 30s linear infinite;
    background: rgba(5, 0, 17, 0.85);
    backdrop-filter: blur(10px);
    border: 2px solid var(--g-color);
    border-radius: 12px;
    padding: 8px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    min-width: 80px;
    transform: translateX(-50%);
    margin-left: 1px;
    box-shadow:
        0 0 12px color-mix(in srgb, var(--g-color) 40%, transparent),
        0 4px 15px rgba(0, 0, 0, 0.5),
        inset 0 0 8px color-mix(in srgb, var(--g-color) 10%, transparent);
    transition: box-shadow 0.3s ease;
}

@keyframes fwCounterSpin {
    from { transform: translateX(-50%) rotate(0deg); }
    to { transform: translateX(-50%) rotate(-360deg); }
}

.fw-gondola-icon {
    font-size: 1.3rem;
    filter: drop-shadow(0 0 4px var(--g-color));
}

.fw-gondola-text {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--g-color);
    text-shadow: 0 0 8px var(--g-color);
    white-space: nowrap;
}

/* Center Title (stays fixed, doesn't rotate) */
.fw-center-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    pointer-events: none;
}

.fw-title {
    font-family: var(--font-fun);
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.4;  /* <-- NEFES ALDIRDIK */
    letter-spacing: 4px;
    color: #fff;
    text-shadow:
        0 0 10px var(--neon-cyan),
        0 0 30px var(--neon-cyan),
        0 0 60px var(--neon-purple),
        0 0 100px var(--neon-purple);
    animation: titlePulseGlow 3s ease-in-out infinite alternate;
}

@keyframes titlePulseGlow {
    0% {
        text-shadow:
            0 0 10px var(--neon-cyan),
            0 0 30px var(--neon-cyan),
            0 0 60px var(--neon-purple);
    }
    100% {
        text-shadow:
            0 0 15px var(--neon-pink),
            0 0 40px var(--neon-pink),
            0 0 80px var(--neon-cyan);
    }
}

.fw-subtitle {
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
    letter-spacing: 1px;
    animation: subtitleFloat 3s ease-in-out infinite;
}

@keyframes subtitleFloat {
    0%, 100% { transform: translateY(0); opacity: 0.7; }
    50% { transform: translateY(-4px); opacity: 1; }
}

/* Neon light dots around the ring */
.fw-ring::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: conic-gradient(
        var(--neon-cyan) 0deg,
        transparent 8deg,
        transparent 37deg,
        var(--neon-pink) 45deg,
        transparent 53deg,
        transparent 82deg,
        var(--neon-yellow) 90deg,
        transparent 98deg,
        transparent 127deg,
        var(--neon-purple) 135deg,
        transparent 143deg,
        transparent 172deg,
        var(--neon-cyan) 180deg,
        transparent 188deg,
        transparent 217deg,
        var(--neon-pink) 225deg,
        transparent 233deg,
        transparent 262deg,
        var(--neon-yellow) 270deg,
        transparent 278deg,
        transparent 307deg,
        var(--neon-purple) 315deg,
        transparent 323deg,
        transparent 352deg,
        var(--neon-cyan) 360deg
    );
    filter: blur(3px);
    opacity: 0.6;
    animation: ringDotsGlow 2s ease-in-out infinite alternate;
}

@keyframes ringDotsGlow {
    0% { opacity: 0.4; filter: blur(3px); }
    100% { opacity: 0.8; filter: blur(2px); }
}

/* Hero Buttons */
.hero-actions {
    margin-top: 36px;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: actionsPop 0.5s 2.3s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes actionsPop {
    0% {
        opacity: 0;
        transform: scale(0.6) translateY(30px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.btn-ticket {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--neon-cyan), #00b8d4);
    color: #000;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 36px;
    border-radius: 50px;
    transition: var(--spring);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 0 20px rgba(0, 229, 255, 0.3),
        0 8px 25px rgba(0, 229, 255, 0.2);
    animation: ticketPulse 2s infinite ease-in-out;
}

@keyframes ticketPulse {
    0%,
    100% {
        box-shadow: 0 0 20px rgba(0, 229, 255, 0.3), 0 8px 25px rgba(0, 229, 255, 0.2);
    }

    50% {
        box-shadow: 0 0 35px rgba(0, 229, 255, 0.5), 0 8px 35px rgba(0, 229, 255, 0.3);
    }
}

.btn-ticket-shine {
    position: absolute;
    top: -50%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shineSlide 3s infinite;
    pointer-events: none;
}

@keyframes shineSlide {
    0% {
        transform: translateX(-100%);
    }

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

.btn-ticket:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 0 50px rgba(0, 229, 255, 0.5);
}

.btn-ticket-icon,
.btn-balloon-icon {
    font-size: 1.3rem;
}

.btn-balloon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 36px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    transition: var(--spring);
    cursor: pointer;
}

.btn-balloon:hover {
    background: rgba(255, 0, 110, 0.15);
    border-color: var(--neon-pink);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255, 0, 110, 0.15);
}

/* Scroll bounce */
.scroll-bounce {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    animation: scrollFade 0.8s 3s ease both;
}

@keyframes scrollFade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.bounce-ball {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--neon-cyan);
    box-shadow: 0 0 12px var(--neon-cyan);
    animation: ballBounce 1.5s infinite ease-in-out;
}

@keyframes ballBounce {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(15px);
    }
}

.scroll-bounce span {
    font-size: 0.7rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ========== TENT DIVIDER ========== */

.tent-divider {
    position: relative;
    z-index: 10;
    margin-top: -1px;
    line-height: 0;
}

.tent-divider svg {
    width: 100%;
    height: 60px;
    display: block;
}

.tent-divider.flip {
    margin-top: 0;
    margin-bottom: -1px;
}

/* ========== SHARED ========== */

section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

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

.eyebrow-ribbon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--neon-cyan);
    margin-bottom: 12px;
    padding: 6px 18px;
    border-radius: 50px;
    border: 1px solid rgba(0, 229, 255, 0.2);
    background: rgba(0, 229, 255, 0.05);
}

.eyebrow-ribbon.center {
    display: flex;
    justify-content: center;
    margin: 0 auto 12px;
    width: fit-content;
}

.eyebrow-ribbon span {
    font-size: 1.1rem;
}

.section-heading {
    font-family: var(--font-fun);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.15;
    color: #fff;
    letter-spacing: 1px;
    text-shadow: 0 0 30px var(--neon-purple), 0 0 60px rgba(0, 229, 255, 0.15);
}

.section-heading.center {
    text-align: center;
}

.section-body {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 560px;
}

.section-header-fun {
    margin-bottom: 50px;
}

.section-coaster {
    display: block;
    margin: 15px auto 0;
    width: 300px;
    height: 40px;
}

/* ========== COUNTERS (slide in) ========== */

.lp-counters {
    background: var(--dark-2);
    padding: 60px 0;
    position: relative;
    z-index: 10;
}

.counter-track {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.counter-slide-item {
    text-align: center;
    padding: 32px 16px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
    transition: var(--spring);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.counter-slide-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.6;
}

.counter-slide-item:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: color-mix(in srgb, var(--accent) 40%, transparent);
    box-shadow: 0 15px 40px color-mix(in srgb, var(--accent) 15%, transparent);
}

.counter-slide-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 2px solid color-mix(in srgb, var(--accent) 30%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent);
    animation: iconBounce 3s infinite ease-in-out;
}

@keyframes iconBounce {
    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    25% {
        transform: translateY(-3px) rotate(5deg);
    }

    75% {
        transform: translateY(3px) rotate(-5deg);
    }
}

.counter-num {
    font-family: var(--font-fun);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    text-shadow: 0 0 20px color-mix(in srgb, var(--accent) 40%, transparent);
}

.counter-label {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}

/* ========== INTRO ========== */

.lp-intro {
    background: linear-gradient(180deg, var(--dark-1), var(--dark-2));
    position: relative;
    z-index: 10;
}

.lp-intro-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Scroll Animations */
.anim-slide-left {
    transform: translateX(-100px) rotate(-3deg);
    opacity: 0;
    transition: transform 0.9s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.6s ease;
}

.anim-slide-right {
    transform: translateX(100px) rotate(3deg);
    opacity: 0;
    transition: transform 0.9s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.6s ease;
}

.anim-coaster {
    transform: translateY(80px) rotate(-2deg) scale(0.9);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s ease;
}

.anim-coaster:nth-child(even) {
    transform: translateY(80px) rotate(2deg) scale(0.9);
}

.anim-drop {
    transform: translateY(-80px);
    opacity: 0;
    transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s ease;
}

.anim-swing {
    transform: translateY(60px) rotate(8deg);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s ease;
    transition-delay: var(--swing-delay, 0s);
}

.anim-zoom {
    transform: scale(0.7) rotate(-2deg);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s ease;
}

.anim-visible {
    transform: none !important;
    opacity: 1 !important;
}

/* Fun pills */
.fun-pills {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 24px 0 32px;
}

.fun-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid;
    transition: var(--spring);
    cursor: default;
}

.fun-pill:hover {
    transform: translateY(-3px) rotate(2deg) scale(1.05);
}

.fp-cyan {
    background: rgba(0, 229, 255, 0.08);
    border-color: rgba(0, 229, 255, 0.25);
    color: var(--neon-cyan);
}

.fp-pink {
    background: rgba(255, 0, 110, 0.08);
    border-color: rgba(255, 0, 110, 0.25);
    color: var(--neon-pink);
}

.fp-yellow {
    background: rgba(255, 214, 0, 0.08);
    border-color: rgba(255, 214, 0, 0.25);
    color: var(--neon-yellow);
}

.btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--neon-cyan);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 30px;
    border-radius: 50px;
    border: 1px solid var(--neon-cyan);
    background: transparent;
    transition: var(--spring);
    cursor: pointer;
}

.btn-explore:hover {
    background: var(--neon-cyan);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 229, 255, 0.3);
}

/* Intro Image */
.lp-intro-image {
    position: relative;
}

.polaroid-frame {
    background: #fff;
    padding: 10px 10px 40px;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 229, 255, 0.06);
    transform: rotate(2deg);
    transition: var(--spring);
}

.polaroid-frame:hover {
    transform: rotate(-1deg) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(0, 229, 255, 0.1);
}

.polaroid-frame img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 2px;
}

.polaroid-caption {
    text-align: center;
    margin-top: 12px;
    font-family: var(--font-fun);
    font-size: 0.9rem;
    color: #333;
    letter-spacing: 1px;
}

/* Floating balloons */
.floating-balloon {
    position: absolute;
    font-size: 2rem;
    animation: balloonFloat 4s infinite ease-in-out;
    pointer-events: none;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.balloon-1 {
    top: -20px;
    right: 20px;
    animation-delay: 0s;
}

.balloon-2 {
    top: 10px;
    right: -15px;
    animation-delay: 0.5s;
    font-size: 1.5rem;
}

.balloon-3 {
    top: -10px;
    left: -10px;
    animation-delay: 1s;
    font-size: 1.8rem;
}

@keyframes balloonFloat {
    0%,
    100% {
        transform: translateY(0) rotate(-5deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.rides-badge {
    position: absolute;
    bottom: 10px;
    right: -15px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.3);
    border: 3px solid var(--dark-1);
    animation: badgeSpin 6s infinite linear;
    z-index: 3;
}

@keyframes badgeSpin {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

.rb-num {
    font-family: var(--font-fun);
    font-weight: 900;
    font-size: 1.4rem;
    line-height: 1;
    animation: badgeSpinReverse 6s infinite linear;
}

.rb-lbl {
    font-size: 0.55rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: badgeSpinReverse 6s infinite linear;
}

@keyframes badgeSpinReverse {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(-360deg);
    }
}

/* ========== RIDE CARDS ========== */

.lp-rides {
    background: var(--dark-1);
    position: relative;
    z-index: 10;
}

.rides-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ride-card-3d {
    perspective: 600px;
}

.ride-card-inner {
    background: rgba(13, 2, 33, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--spring);
    cursor: pointer;
    transform-style: preserve-3d;
}

.ride-card-inner:hover {
    transform: translateY(-10px) rotateX(2deg) rotateY(-2deg) scale(1.02);
}

[data-color="cyan"] .ride-card-inner:hover {
    border-color: rgba(0, 229, 255, 0.35);
    box-shadow: 0 25px 50px rgba(0, 229, 255, 0.12), 0 0 30px rgba(0, 229, 255, 0.05);
}

[data-color="pink"] .ride-card-inner:hover {
    border-color: rgba(255, 0, 110, 0.35);
    box-shadow: 0 25px 50px rgba(255, 0, 110, 0.12), 0 0 30px rgba(255, 0, 110, 0.05);
}

[data-color="yellow"] .ride-card-inner:hover {
    border-color: rgba(255, 214, 0, 0.35);
    box-shadow: 0 25px 50px rgba(255, 214, 0, 0.12), 0 0 30px rgba(255, 214, 0, 0.05);
}

[data-color="purple"] .ride-card-inner:hover {
    border-color: rgba(123, 31, 162, 0.45);
    box-shadow: 0 25px 50px rgba(123, 31, 162, 0.15), 0 0 30px rgba(123, 31, 162, 0.05);
}

.ride-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.ride-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--spring);
}

.ride-card-inner:hover .ride-card-img img {
    transform: scale(1.12) rotate(1deg);
}

.ride-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 50%);
}

.ride-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 16px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    z-index: 2;
    backdrop-filter: blur(4px);
}

.rc-cyan {
    background: rgba(0, 229, 255, 0.8);
    color: #000;
    box-shadow: 0 4px 12px rgba(0, 229, 255, 0.3);
}

.rc-pink {
    background: rgba(255, 0, 110, 0.8);
    box-shadow: 0 4px 12px rgba(255, 0, 110, 0.3);
}

.rc-yellow {
    background: rgba(255, 214, 0, 0.8);
    color: #000;
    box-shadow: 0 4px 12px rgba(255, 214, 0, 0.3);
}

.rc-purple {
    background: rgba(123, 31, 162, 0.8);
    box-shadow: 0 4px 12px rgba(123, 31, 162, 0.3);
}

.ride-card-body {
    padding: 24px;
}

.ride-card-body h3 {
    font-family: var(--font-fun);
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 8px;
}

[data-color="cyan"] .ride-card-body h3 {
    color: var(--neon-cyan);
    text-shadow: 0 0 12px rgba(0, 229, 255, 0.25);
}

[data-color="pink"] .ride-card-body h3 {
    color: var(--neon-pink);
    text-shadow: 0 0 12px rgba(255, 0, 110, 0.25);
}

[data-color="yellow"] .ride-card-body h3 {
    color: var(--neon-yellow);
    text-shadow: 0 0 12px rgba(255, 214, 0, 0.25);
}

[data-color="purple"] .ride-card-body h3 {
    color: #e0b0ff;
    text-shadow: 0 0 12px rgba(123, 31, 162, 0.3);
}

.ride-card-body p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 14px;
}

.ride-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--neon-cyan);
    transition: var(--transition);
}

.ride-card-link:hover {
    gap: 12px;
}

[data-color="pink"] .ride-card-link {
    color: var(--neon-pink);
}

[data-color="yellow"] .ride-card-link {
    color: var(--neon-yellow);
}

[data-color="purple"] .ride-card-link {
    color: #e0b0ff;
}

/* ========== SAFETY ========== */

.lp-safety {
    background: var(--dark-2);
    position: relative;
    z-index: 10;
}

.safety-carousel-card {
    display: flex;
    gap: 30px;
    align-items: stretch;
    border: 2px solid rgba(0, 229, 255, 0.15);
    background: linear-gradient(135deg, rgba(123, 31, 162, 0.06), rgba(0, 229, 255, 0.03));
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.06);
    transition: var(--spring);
    overflow: hidden;
}

.safety-carousel-card:hover {
    border-color: rgba(0, 229, 255, 0.35);
    box-shadow: 0 0 60px rgba(0, 229, 255, 0.1);
}

.safety-pole {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}

.pole-top {
    font-size: 2.5rem;
    animation: poleBob 2s infinite ease-in-out;
}

@keyframes poleBob {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.pole-line {
    width: 3px;
    flex: 1;
    min-height: 40px;
    background: linear-gradient(to bottom,
            var(--neon-cyan),
            var(--neon-pink),
            var(--neon-cyan));
    border-radius: 3px;
    animation: poleShimmer 2s infinite ease-in-out;
}

@keyframes poleShimmer {
    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}

.safety-content h4 {
    font-family: var(--font-fun);
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.25);
    margin-bottom: 12px;
}

.safety-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.safety-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.sb {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.15);
    color: var(--neon-cyan);
}

/* ========== GALLERY CAROUSEL ========== */

.lp-gallery {
    background: var(--dark-1);
    position: relative;
    z-index: 10;
}

.carousel-gallery {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    padding: 20px 0;
}

.cg-track {
    display: flex;
    gap: 20px;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding: 10px;
}

.cg-item {
    flex-shrink: 0;
    width: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: var(--spring);
    border: 2px solid rgba(255, 255, 255, 0.06);
}

.cg-item:hover {
    transform: translateY(-10px) scale(1.03) rotate(1deg);
    border-color: var(--neon-cyan);
    box-shadow: 0 20px 50px rgba(0, 229, 255, 0.15);
}

.cg-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform var(--spring);
}

.cg-item:hover img {
    transform: scale(1.1);
}

.cg-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

.cg-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 229, 255, 0.15);
    border: 1px solid rgba(0, 229, 255, 0.3);
    color: var(--neon-cyan);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--spring);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.cg-arrow:hover {
    background: var(--neon-cyan);
    color: #000;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}

.cg-left {
    left: 10px;
}

.cg-right {
    right: 10px;
}

/* ========== REVIEWS (Swing Ride) ========== */

.lp-reviews {
    background: var(--dark-2);
    position: relative;
    z-index: 10;
}

.reviews-swing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.rev-swing-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rev-chain {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, var(--neon-cyan), rgba(0, 229, 255, 0.2));
    border-radius: 2px;
}

.rev-seat {
    background: rgba(13, 2, 33, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 32px;
    backdrop-filter: blur(10px);
    transition: var(--spring);
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.rev-swing-card:hover .rev-seat {
    transform: translateY(-6px) rotate(1deg);
    border-color: rgba(0, 229, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 229, 255, 0.08);
}

.rev-swing-card:hover .rev-chain {
    height: 20px;
    transition: height var(--spring);
}

.rev-stars {
    display: flex;
    gap: 3px;
    color: var(--neon-yellow);
    font-size: 0.85rem;
    filter: drop-shadow(0 0 4px var(--neon-yellow));
}

.rev-text {
    font-size: 0.98rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    flex-grow: 1;
}

.rev-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.rev-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.av-cyan {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
}

.av-pink {
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
}

.av-yellow {
    background: linear-gradient(135deg, var(--neon-yellow), #ff9800);
}

.rev-author strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 700;
    color: #fff;
}

.rev-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ========== CTA (Confetti) ========== */

.lp-cta {
    padding: 80px 0;
    background: var(--dark-1);
    position: relative;
    z-index: 10;
}

.cta-funbox {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px;
    background: linear-gradient(135deg, var(--neon-purple), #4a0072, #1a0033);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow:
        0 20px 50px rgba(123, 31, 162, 0.2),
        0 0 60px rgba(0, 229, 255, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.12);
    overflow: hidden;
    position: relative;
}

.confetti-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.confetti-piece {
    position: absolute;
    top: -20px;
    animation: confettiFall linear forwards;
    opacity: 0.8;
}

@keyframes confettiFall {
    0% {
        transform: translateY(-20px) rotate(0) scale(1);
        opacity: 0.8;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateY(500px) rotate(720deg) scale(0.5);
        opacity: 0;
    }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-family: var(--font-fun);
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(0, 229, 255, 0.15);
}

.cta-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* ========== FOOTER ========== */

.lp-footer {
    background: var(--dark-1);
    padding: 60px 8% 40px;
    border-top: 1px solid rgba(0, 229, 255, 0.08);
    position: relative;
    z-index: 10;
}

.lp-footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.lp-footer-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lp-flogo {
    font-family: var(--font-fun);
    font-size: 1.4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--neon-cyan);
    text-shadow: 0 0 20px var(--neon-cyan);
}

.lp-flogo span {
    color: var(--neon-pink);
    text-shadow: 0 0 15px var(--neon-pink);
}

.lp-footer-info p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.lp-ftitle {
    font-family: var(--font-fun);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--neon-cyan);
    letter-spacing: 1px;
    margin-bottom: 16px;
    position: relative;
}

.lp-ftitle::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 25px;
    height: 2px;
    background: var(--neon-cyan);
}

.lp-flinks {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lp-flinks a {
    color: var(--text-muted);
    font-size: 0.92rem;
    transition: color var(--transition);
}

.lp-flinks a:hover {
    color: var(--neon-cyan);
}

.lp-fcontact {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.lp-fcontact li {
    display: flex;
    gap: 12px;
    font-size: 0.92rem;
    color: var(--text-muted);
}

.lp-fcontact i {
    color: var(--neon-yellow);
    font-size: 0.9rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.lp-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.lp-footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.3);
}

.lp-social {
    display: flex;
    gap: 12px;
}

.lp-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    transition: var(--spring);
    cursor: pointer;
}

.lp-social a:nth-child(1):hover {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
    border-color: transparent;
    transform: translateY(-4px) rotate(-5deg);
    box-shadow: 0 8px 20px rgba(225, 48, 108, 0.3);
}

.lp-social a:nth-child(2):hover {
    background: #1877f2;
    color: #fff;
    border-color: transparent;
    transform: translateY(-4px) rotate(5deg);
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.3);
}

.lp-social a:nth-child(3):hover {
    background: #ff0000;
    color: #fff;
    border-color: transparent;
    transform: translateY(-4px) rotate(-3deg);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3);
}

/* ========== RESPONSIVE ========== */

@media (max-width: 1024px) {
    .rides-carousel {
        grid-template-columns: 1fr 1fr;
    }

    .reviews-swing {
        grid-template-columns: 1fr 1fr;
    }

    .reviews-swing .rev-swing-card:last-child {
        grid-column: span 2;
    }

    .giant-ferris {
        width: 350px;
        height: 370px;
        right: -10%;
    }
}

@media (max-width: 991px) {
    .lp-intro-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .cta-funbox {
        flex-direction: column;
        text-align: center;
        padding: 40px 24px;
    }

    .cta-actions {
        justify-content: center;
    }

    .lp-footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .safety-carousel-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .safety-pole {
        flex-direction: row;
        gap: 12px;
    }

    .pole-line {
        width: 40px;
        height: 3px;
        min-height: auto;
    }

    .giant-ferris {
        display: none;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .rides-carousel {
        grid-template-columns: 1fr;
    }

    .reviews-swing {
        grid-template-columns: 1fr;
    }

    .reviews-swing .rev-swing-card:last-child {
        grid-column: auto;
    }

    .counter-track {
        grid-template-columns: 1fr 1fr;
    }

    .cg-item {
        width: 250px;
    }

    .ferris-wheel-wrapper {
        width: 380px;
        height: 380px;
    }

    .fw-gondola {
        transform: rotate(var(--g-angle)) translateY(-170px);
    }

    .fw-gondola-pod {
        padding: 6px 10px;
        min-width: 65px;
    }

    .fw-gondola-text {
        font-size: 0.55rem;
        letter-spacing: 1px;
    }

    .fw-gondola-icon {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .lp-header {
        padding: 12px 4%;
    }

    .lp-hero {
        min-height: 100svh;
    }

    .ferris-wheel-wrapper {
        width: 300px;
        height: 300px;
    }

    .fw-gondola {
        transform: rotate(var(--g-angle)) translateY(-130px);
    }

    .fw-gondola-pod {
        padding: 4px 8px;
        min-width: 55px;
        border-radius: 8px;
    }

    .fw-gondola-text {
        font-size: 0.5rem;
        letter-spacing: 1px;
    }

    .fw-gondola-icon {
        font-size: 0.85rem;
    }

    .fw-gondola-arm {
        height: 18px;
    }

    .fw-title {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }

    .fw-subtitle {
        font-size: 0.7rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .cg-item {
        width: 220px;
    }

    .cta-content h2 {
        font-size: 1.6rem;
    }

    .counter-track {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .counter-num {
        font-size: 2rem;
    }

    .ticket-strip {
        display: none;
    }

    .lp-header {
        top: 0;
    }

    .polaroid-frame {
        transform: none;
    }

    .fw-title {
        font-size: 1.2rem;
    }
}