/* ============================================
   CSS VARIABLES & RESET
   ============================================ */
:root {
    /* Primary Candy Colors */
    --primary: #ff6b6b;
    --primary-dark: #e85555;
    --primary-light: #ff9a9a;
    --primary-glow: rgba(255, 107, 107, 0.3);

    --secondary: #4ecdc4;
    --secondary-dark: #3db8b0;
    --secondary-light: #7eddd7;
    --secondary-glow: rgba(78, 205, 196, 0.3);

    --accent: #ffe66d;
    --accent-dark: #f5d34a;
    --accent-light: #fff3a8;

    /* Extended Candy Palette */
    --candy-pink: #ff85a2;
    --candy-purple: #c792ea;
    --candy-blue: #82b1ff;
    --candy-green: #69f0ae;
    --candy-orange: #ffab40;
    --candy-mint: #a7ffeb;

    /* Neutrals */
    --white: #ffffff;
    --off-white: #fef9f5;
    --cream: #fff8f0;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #eeeeee;
    --gray-300: #e0e0e0;
    --gray-400: #bdbdbd;
    --gray-500: #9e9e9e;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #2d2d44;
    --dark: #1a1a2e;

    /* Typography */
    --font-display: 'Fredoka', 'Baloo 2', sans-serif;
    --font-heading: 'Baloo 2', 'Fredoka', sans-serif;
    --font-body: 'Quicksand', sans-serif;

    /* Sizes */
    --header-height: 80px;
    --container-max: 1280px;
    --container-padding: 24px;

    /* Borders */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 16px 60px rgba(0,0,0,0.16);
    --shadow-candy: 0 8px 30px rgba(255, 107, 107, 0.2);
    --shadow-candy-teal: 0 8px 30px rgba(78, 205, 196, 0.2);
    --shadow-candy-yellow: 0 8px 30px rgba(255, 230, 109, 0.3);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    background: var(--off-white);
    line-height: 1.7;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    font-size: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(2deg); }
    50% { transform: translateY(-8px) rotate(-1deg); }
    75% { transform: translateY(-20px) rotate(1deg); }
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(5deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 0 var(--primary-glow); }
    50% { box-shadow: 0 0 0 15px rgba(255, 107, 107, 0); }
}

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

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

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

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

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

@keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.3); }
    50% { transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

@keyframes confettiFall {
    0% { transform: translateY(-100vh) rotate(0deg); opacity: 1; }
    100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

@keyframes blobMove {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    25% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    50% { border-radius: 50% 60% 30% 70% / 40% 50% 60% 50%; }
    75% { border-radius: 40% 50% 60% 40% / 60% 40% 50% 60%; }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   AGE GATE
   ============================================ */
.age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.5s ease;
}

.age-gate-overlay.hidden {
    display: none;
}

.age-gate-modal {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    max-width: 520px;
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl), 0 0 100px rgba(255, 107, 107, 0.15);
    animation: bounceIn 0.6s ease;
}

.age-gate-bubble {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.age-gate-bubble-1 {
    width: 200px;
    height: 200px;
    background: var(--primary);
    top: -60px;
    right: -60px;
}

.age-gate-bubble-2 {
    width: 120px;
    height: 120px;
    background: var(--secondary);
    bottom: -30px;
    left: -30px;
}

.age-gate-bubble-3 {
    width: 80px;
    height: 80px;
    background: var(--accent);
    top: 50%;
    left: -20px;
}

.age-gate-icon {
    margin-bottom: 20px;
    display: inline-block;
    animation: pulse 2s infinite;
}

.age-gate-title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gray-900);
    margin-bottom: 12px;
    font-weight: 700;
}

.age-gate-text {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.6;
}

.age-gate-question {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 20px;
}

.age-gate-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.age-btn {
    padding: 14px 36px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-bounce);
    border: 3px solid transparent;
}

.age-btn-yes {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: var(--shadow-candy);
}

.age-btn-yes:hover {
    background: var(--primary-dark);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 40px rgba(255, 107, 107, 0.35);
}

.age-btn-no {
    background: var(--white);
    color: var(--gray-600);
    border-color: var(--gray-300);
}

.age-btn-no:hover {
    border-color: var(--gray-500);
    color: var(--gray-800);
}

.age-gate-disclaimer {
    margin-top: 24px;
    font-size: 0.82rem;
    color: var(--gray-500);
    position: relative;
    z-index: 1;
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 -4px 30px rgba(0,0,0,0.12);
    z-index: 9000;
    border-top: 3px solid var(--accent);
    animation: slideUp 0.5s ease;
}

.cookie-content {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 20px var(--container-padding);
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-icon-wrap {
    flex-shrink: 0;
}

.cookie-text {
    flex: 1;
    min-width: 200px;
}

.cookie-text p {
    font-size: 0.92rem;
    color: var(--gray-700);
    line-height: 1.5;
}

.cookie-text a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.cookie-btn-accept {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.cookie-btn-accept:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.cookie-btn-necessary {
    background: var(--white);
    color: var(--gray-700);
    border-color: var(--gray-300);
}

.cookie-btn-necessary:hover {
    border-color: var(--secondary);
    color: var(--secondary-dark);
}

.cookie-btn-settings {
    background: transparent;
    color: var(--gray-600);
    border-color: transparent;
    text-decoration: underline;
}

.cookie-settings-panel {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding) 20px;
    border-top: 1px solid var(--gray-200);
}

.cookie-settings-panel h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin: 16px 0 12px;
    color: var(--gray-800);
}

.cookie-option {
    margin-bottom: 12px;
}

.cookie-option label {
    font-weight: 600;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.cookie-option p {
    font-size: 0.82rem;
    color: var(--gray-500);
    margin-left: 24px;
    margin-top: 2px;
}

/* ============================================
   HEADER
   ============================================ */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 5000;
    transition: all var(--transition-base);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    height: 68px;
}

.header-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.header-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
}

.shape-circle-1 {
    width: 120px;
    height: 120px;
    background: var(--primary);
    top: -40px;
    left: 10%;
}

.shape-circle-2 {
    width: 80px;
    height: 80px;
    background: var(--secondary);
    top: -20px;
    right: 20%;
}

.shape-circle-3 {
    width: 60px;
    height: 60px;
    background: var(--accent);
    bottom: -20px;
    right: 40%;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    position: relative;
    z-index: 1;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: transform var(--transition-bounce);
}

.logo:hover {
    transform: scale(1.05);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--gray-700);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: rgba(255, 107, 107, 0.08);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 5001;
}

.hamburger-line {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    z-index: 9500;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.mobile-menu-overlay.active {
    display: flex;
    opacity: 1;
}

.mobile-menu-content {
    text-align: center;
}

.mobile-close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 8px;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-nav-link {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    display: block;
}

.mobile-nav-link:hover {
    color: var(--primary);
    background: rgba(255, 107, 107, 0.1);
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    .mobile-menu-btn {
        display: flex;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 80px;
    overflow: hidden;
    background: linear-gradient(160deg, #fff5f5 0%, #f0fffe 30%, #fffdf0 60%, #fff5f5 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    animation: blobMove 20s ease-in-out infinite;
}

.hero-blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.12) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.hero-blob-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.1) 0%, transparent 70%);
    bottom: -50px;
    left: -100px;
    animation-delay: -7s;
}

.hero-blob-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 230, 109, 0.12) 0%, transparent 70%);
    top: 40%;
    left: 30%;
    animation-delay: -14s;
}

.hero-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255, 107, 107, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Floating Candy Shapes */
.floating-candy {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.candy-1 {
    width: 24px;
    height: 24px;
    background: var(--primary);
    top: 20%;
    left: 8%;
    animation: float 6s ease-in-out infinite;
}

.candy-2 {
    width: 16px;
    height: 16px;
    background: var(--secondary);
    top: 35%;
    right: 12%;
    animation: float 8s ease-in-out infinite;
    animation-delay: -2s;
}

.candy-3 {
    width: 20px;
    height: 20px;
    background: var(--accent);
    bottom: 25%;
    left: 15%;
    animation: floatSlow 10s ease-in-out infinite;
}

.candy-4 {
    width: 12px;
    height: 12px;
    background: var(--candy-purple);
    top: 60%;
    right: 25%;
    animation: float 7s ease-in-out infinite;
    animation-delay: -4s;
}

.candy-5 {
    width: 18px;
    height: 18px;
    background: var(--candy-orange);
    top: 15%;
    right: 35%;
    animation: floatSlow 9s ease-in-out infinite;
    animation-delay: -1s;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: slideInLeft 0.8s ease forwards;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    margin-bottom: 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--gray-700);
    border: 2px solid var(--accent-light);
    animation: slideDown 0.6s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-title-line-1 {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--gray-700);
}

.hero-title-line-2 {
    display: block;
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    color: var(--primary);
    text-shadow: 2px 2px 0 rgba(255, 107, 107, 0.15);
}

.hero-title-line-3 {
    display: block;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--secondary-dark);
}

.hero-description {
    font-size: 1.15rem;
    color: var(--gray-600);
    margin-bottom: 32px;
    max-width: 480px;
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-bounce);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: var(--shadow-candy);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(255, 107, 107, 0.35);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-candy);
}

.btn-ghost {
    background: transparent;
    color: var(--gray-600);
    border-color: var(--gray-300);
    padding: 10px 24px;
}

.btn-ghost:hover {
    border-color: var(--secondary);
    color: var(--secondary-dark);
    background: rgba(78, 205, 196, 0.05);
}

.hero-trust-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-600);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: slideInRight 0.8s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-frame {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--white);
    position: relative;
}

.hero-image-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, transparent 50%, rgba(78, 205, 196, 0.1) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 3/2;
}

.hero-float-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--gray-100);
    z-index: 3;
}

.hero-float-card-1 {
    top: -20px;
    right: -20px;
    animation: float 5s ease-in-out infinite;
}

.hero-float-card-2 {
    bottom: -20px;
    left: -20px;
    animation: float 6s ease-in-out infinite;
    animation-delay: -2s;
}

.float-card-icon {
    flex-shrink: 0;
}

.float-card-value {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gray-900);
    display: block;
    line-height: 1.1;
}

.float-card-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 600;
}

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: 3;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .hero-description {
        margin: 0 auto 32px;
    }
    .hero-cta-group {
        justify-content: center;
    }
    .hero-trust-badges {
        justify-content: center;
    }
    .hero-float-card-1 {
        right: 10px;
        top: -10px;
    }
    .hero-float-card-2 {
        left: 10px;
        bottom: -10px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding-top: calc(var(--header-height) + 20px);
    }
    .hero-float-card {
        display: none;
    }
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
    background: var(--white);
    padding: 40px 0;
    position: relative;
    z-index: 4;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.04), rgba(78, 205, 196, 0.04));
    transition: transform var(--transition-bounce);
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 4px;
}

.stat-item:nth-child(2) .stat-number { color: var(--secondary-dark); }
.stat-item:nth-child(3) .stat-number { color: var(--candy-purple); }
.stat-item:nth-child(4) .stat-number { color: var(--accent-dark); }

.stat-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray-600);
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    .stat-number {
        font-size: 2rem;
    }
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    background: rgba(255, 107, 107, 0.08);
    padding: 6px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 14px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================
   CASINO SECTION
   ============================================ */
.casinos-section {
    padding: 80px 0;
    position: relative;
    background: var(--white);
}

.section-bg-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.decor-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.04;
}

.decor-circle-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    right: -100px;
}

.decor-circle-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary);
    bottom: -50px;
    left: -80px;
}

/* Casino Filters */
.casino-filters {
    margin-bottom: 36px;
    display: flex;
    justify-content: center;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-label {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--gray-600);
    font-size: 0.9rem;
}

.filter-buttons {
    display: flex;
    gap: 8px;
    background: var(--gray-100);
    padding: 4px;
    border-radius: var(--radius-full);
}

.filter-btn {
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--gray-600);
    cursor: pointer;
    transition: all var(--transition-base);
    border: none;
    background: transparent;
}

.filter-btn.active {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-candy);
}

.filter-btn:hover:not(.active) {
    color: var(--primary);
    background: var(--white);
}

/* Casino Cards Grid */
.casino-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 28px;
    position: relative;
    z-index: 1;
}

/* Casino Card */
.casino-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--gray-200);
    transition: all var(--transition-bounce);
    position: relative;
    display: flex;
    flex-direction: column;
}

.casino-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.casino-card-featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-candy);
}

.casino-card-featured:hover {
    box-shadow: 0 12px 50px rgba(255, 107, 107, 0.25);
}

.casino-card-ribbon {
    position: absolute;
    top: 16px;
    right: -8px;
    background: linear-gradient(135deg, var(--primary), var(--candy-pink));
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 16px 6px 12px;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    z-index: 2;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.casino-card-ribbon::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -8px;
    width: 0;
    height: 0;
    border-left: 8px solid var(--primary-dark);
    border-bottom: 8px solid transparent;
}

.casino-card-header {
    padding: 24px 24px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.casino-card-rank {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    min-width: 40px;
    text-align: center;
}

.casino-card-logo-area {
    flex-shrink: 0;
}

.casino-logo-placeholder {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid rgba(255,255,255,0.3);
}

.casino-logo-placeholder span {
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.75rem;
    text-align: center;
    line-height: 1.2;
}

.casino-card-rating-area {
    margin-left: auto;
    text-align: right;
}

.rating-stars {
    display: flex;
    gap: 2px;
    justify-content: flex-end;
    margin-bottom: 4px;
}

.rating-number {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--gray-700);
}

.casino-card-body {
    padding: 0 24px 20px;
    flex: 1;
}

.casino-card-name {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.casino-card-description {
    font-size: 0.92rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 16px;
}

.casino-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(78, 205, 196, 0.08);
    padding: 5px 12px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--secondary-dark);
}

.casino-card-license {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--gray-500);
    font-weight: 600;
}

.casino-card-footer {
    padding: 16px 24px 24px;
    display: flex;
    gap: 12px;
    align-items: center;
    border-top: 1px solid var(--gray-100);
    margin-top: auto;
}

.btn-casino {
    flex: 1;
}

.btn-details {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .casino-cards-grid {
        grid-template-columns: 1fr;
    }
    .casino-card-header {
        flex-wrap: wrap;
    }
}

/* Comparison Table */
.comparison-table-wrapper {
    margin-top: 60px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--gray-200);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.comparison-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    padding: 28px 28px 0;
    text-align: center;
}

.table-scroll {
    overflow-x: auto;
    padding: 20px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.comparison-table th {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 16px;
    text-align: center;
    border-bottom: 2px solid var(--gray-200);
    background: var(--gray-50);
}

.comparison-table th:first-child {
    text-align: left;
    border-radius: var(--radius-md) 0 0 0;
}

.comparison-table th:last-child {
    border-radius: 0 var(--radius-md) 0 0;
}

.comparison-table td {
    padding: 14px 16px;
    text-align: center;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.92rem;
    color: var(--gray-700);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover td {
    background: rgba(255, 107, 107, 0.03);
}

.td-name {
    text-align: left;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--gray-900);
}

.td-rating {
    font-weight: 700;
}

.table-rating {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--gray-900);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
}

.td-check {
    color: var(--secondary);
}

.td-dash {
    color: var(--gray-400);
    font-weight: 600;
}

.table-link {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    transition: all var(--transition-base);
}

.table-link:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-candy);
}

/* Affiliate Disclosure */
.affiliate-disclosure {
    margin-top: 30px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255, 107, 107, 0.05);
    padding: 18px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 107, 107, 0.15);
    position: relative;
    z-index: 1;
}

.affiliate-disclosure svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.affiliate-disclosure p {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

.step-card {
    text-align: center;
    padding: 36px 28px;
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--gray-100);
    transition: all var(--transition-bounce);
    position: relative;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-light);
}

.step-number-bubble {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.step-card[data-step="1"] .step-number-bubble {
    background: linear-gradient(135deg, var(--primary), var(--candy-pink));
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.3);
}

.step-card[data-step="2"] .step-number-bubble {
    background: linear-gradient(135deg, var(--secondary), var(--candy-mint));
    box-shadow: 0 6px 20px rgba(78, 205, 196, 0.3);
}

.step-card[data-step="3"] .step-number-bubble {
    background: linear-gradient(135deg, var(--accent-dark), var(--candy-orange));
    box-shadow: 0 6px 20px rgba(255, 230, 109, 0.3);
}

.step-image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.step-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.step-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

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

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
}

/* ============================================
   TRUST SECTION
   ============================================ */
.trust-section {
    padding: 80px 0;
    background: var(--white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.trust-card {
    text-align: center;
    padding: 36px 24px;
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, var(--gray-50), var(--white));
    border: 2px solid var(--gray-100);
    transition: all var(--transition-bounce);
}

.trust-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-light);
}

.trust-card-icon {
    margin-bottom: 20px;
}

.trust-card-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.trust-card-text {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

@media (max-width: 968px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
    padding: 80px 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: all var(--transition-bounce);
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.gallery-item-large {
    grid-column: 1 / -1;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 200px;
    transition: transform var(--transition-slow);
}

.gallery-item-large .gallery-img {
    min-height: 300px;
    max-height: 400px;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 28px 28px;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.85), transparent);
    color: var(--white);
    transform: translateY(20px);
    opacity: 0;
    transition: all var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gallery-overlay h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.gallery-overlay p {
    font-size: 0.88rem;
    opacity: 0.85;
    line-height: 1.5;
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item-large {
        grid-column: 1;
    }
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--gray-100);
    transition: all var(--transition-base);
}

.contact-info-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 107, 0.06);
    border-radius: var(--radius-md);
}

.contact-info-card h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.contact-info-card p {
    font-size: 0.88rem;
    color: var(--gray-600);
    line-height: 1.5;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--gray-100);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 1rem;
    color: var(--gray-800);
    background: var(--gray-50);
    transition: all var(--transition-base);
    outline: none;
}

.form-group input:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.1);
}

.form-group input.error {
    border-color: #e74c3c;
}

.form-error {
    display: block;
    font-size: 0.8rem;
    color: #e74c3c;
    margin-top: 4px;
    min-height: 18px;
}

.form-group-consent {
    margin-bottom: 24px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.88rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-custom {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border: 2px solid var(--gray-300);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    margin-top: 1px;
    background: var(--white);
}

.checkbox-label input:checked + .checkbox-custom {
    background: var(--primary);
    border-color: var(--primary);
}

.checkbox-label input:checked + .checkbox-custom::after {
    content: '';
    display: block;
    width: 6px;
    height: 10px;
    border: solid var(--white);
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
    margin-top: -2px;
}

.checkbox-label a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
}

.btn-loader .spinner {
    animation: spin 1s linear infinite;
}

.form-message {
    margin-top: 16px;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    font-size: 0.92rem;
    font-weight: 600;
    text-align: center;
}

.form-message.success {
    background: rgba(78, 205, 196, 0.1);
    color: var(--secondary-dark);
    border: 1px solid rgba(78, 205, 196, 0.3);
}

.form-message.error {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   RESPONSIBLE GAMING BANNER
   ============================================ */
.responsible-gaming-banner {
    background: linear-gradient(135deg, var(--gray-900), var(--dark));
    padding: 40px 0;
}

.rg-content {
    display: flex;
    align-items: center;
    gap: 24px;
}

.rg-icon {
    flex-shrink: 0;
}

.rg-text h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.rg-text p {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

@media (max-width: 600px) {
    .rg-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    position: relative;
    background: var(--gray-900);
}

.footer-wave {
    position: relative;
    top: -2px;
    margin-bottom: -2px;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 60px;
}

.footer-body {
    padding: 60px 0 30px;
    color: rgba(255,255,255,0.7);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    transition: transform var(--transition-base);
}

.footer-logo:hover {
    transform: scale(1.03);
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
}

.footer-brand-text {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-address p {
    font-size: 0.85rem;
    line-height: 1.5;
}

.footer-col-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    transition: all var(--transition-base);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.footer-contacts li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contacts span {
    font-size: 0.85rem;
}

.footer-responsible {
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 24px;
    text-align: center;
}

.footer-responsible h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.footer-rg-links {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.footer-rg-links a {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color var(--transition-base);
}

.footer-rg-links a:hover {
    color: var(--secondary-light);
}

.footer-divider {
    color: rgba(255,255,255,0.3);
}

.footer-responsible p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

.footer-disclaimer {
    margin-top: 8px;
    font-style: italic;
}

@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(8px);
    z-index: 8000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius-xl);
    max-width: 600px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    animation: scaleIn 0.3s ease;
    box-shadow: var(--shadow-xl);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--gray-600);
    transition: all var(--transition-base);
    z-index: 2;
}

.modal-close:hover {
    background: var(--primary);
    color: var(--white);
}

.modal-body {
    padding: 36px;
}

.modal-body h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.modal-body .modal-rating {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--accent-dark);
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.modal-body .modal-desc {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
}

.modal-body .modal-license {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--secondary-dark);
    font-weight: 600;
    margin-bottom: 24px;
}

.modal-body .modal-cta {
    display: block;
    text-align: center;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-candy);
    z-index: 7000;
    transition: all var(--transition-bounce);
    opacity: 0;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 30px rgba(255, 107, 107, 0.4);
}

/* ============================================
   CONFETTI
   ============================================ */
.confetti-piece {
    position: fixed;
    width: 10px;
    height: 10px;
    top: -20px;
    z-index: 9999;
    pointer-events: none;
    animation: confettiFall 3s linear forwards;
}

/* ============================================
   LEGAL PAGES SHARED STYLES
   ============================================ */
.legal-page-hero {
    padding: calc(var(--header-height) + 60px) 0 60px;
    background: linear-gradient(160deg, #fff5f5 0%, #f0fffe 50%, #fffdf0 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.legal-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255, 107, 107, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.legal-page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
    position: relative;
}

.legal-page-hero p {
    font-size: 1.05rem;
    color: var(--gray-600);
    position: relative;
}

.legal-content {
    padding: 60px 0 80px;
    background: var(--white);
}

.legal-content .container {
    max-width: 860px;
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-top: 40px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--primary-light);
}

.legal-content h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-top: 28px;
    margin-bottom: 12px;
}

.legal-content p {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul, .legal-content ol {
    margin-bottom: 16px;
    padding-left: 28px;
}

.legal-content li {
    font-size: 0.98rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 8px;
    list-style: disc;
}

.legal-content ol li {
    list-style: decimal;
}

.legal-content a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--primary-dark);
}

.legal-content strong {
    font-weight: 700;
    color: var(--gray-800);
}

.legal-content .highlight-box {
    background: rgba(78, 205, 196, 0.06);
    border: 2px solid rgba(78, 205, 196, 0.2);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin: 24px 0;
}

.legal-content .highlight-box p {
    margin-bottom: 0;
}

.legal-content .warning-box {
    background: rgba(255, 107, 107, 0.06);
    border: 2px solid rgba(255, 107, 107, 0.2);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin: 24px 0;
}

.legal-last-updated {
    font-size: 0.88rem;
    color: var(--gray-500);
    font-style: italic;
    margin-bottom: 30px;
}

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */
@media (max-width: 480px) {
    :root {
        --container-padding: 16px;
    }
    .section-header {
        margin-bottom: 36px;
    }
    .age-gate-modal {
        padding: 32px 24px;
    }
    .age-gate-title {
        font-size: 1.6rem;
    }
    .age-gate-buttons {
        flex-direction: column;
    }
    .age-btn {
        width: 100%;
    }
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-actions {
        justify-content: center;
        width: 100%;
    }
    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }
    .contact-form-wrapper {
        padding: 24px 20px;
    }
}

/* ============================================
   SCROLLBAR CUSTOM
   ============================================ */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-light), var(--secondary-light));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary), var(--secondary));
}

/* Selection */
::selection {
    background: rgba(255, 107, 107, 0.2);
    color: var(--gray-900);
}

/* Focus visible for accessibility */
:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Print styles */
@media print {
    .main-header,
    .cookie-banner,
    .age-gate-overlay,
    .back-to-top,
    .responsible-gaming-banner,
    .mobile-menu-overlay {
        display: none !important;
    }
}
