/* ============================================
   PASTEL DREAM - SOCIAL CASINO THEME
   Lucky Sevens British Heritage
   ============================================ */

/* CSS Variables */
:root {
    --primary: #a8d8ea;
    --primary-light: #c8e8f5;
    --primary-dark: #7bbdd4;
    --secondary: #aa96da;
    --secondary-light: #c4b8e8;
    --secondary-dark: #8b74c8;
    --accent: #fcbad3;
    --accent-light: #fdd5e4;
    --accent-dark: #f595b5;

    --pastel-green: #b5e8c3;
    --pastel-yellow: #fff1b5;
    --pastel-orange: #ffd4a8;
    --pastel-teal: #a8e6cf;
    --pastel-lavender: #d4b8f0;

    --bg-main: #f5f0ff;
    --bg-card: #ffffff;
    --bg-section-alt: #fef5f9;
    --bg-dark: #2d2640;

    --text-primary: #3d3250;
    --text-secondary: #6b5f80;
    --text-light: #9a90a8;
    --text-white: #ffffff;

    --shadow-soft: 0 4px 20px rgba(170, 150, 218, 0.15);
    --shadow-medium: 0 8px 32px rgba(170, 150, 218, 0.2);
    --shadow-large: 0 16px 48px rgba(170, 150, 218, 0.25);
    --shadow-glow-primary: 0 0 30px rgba(168, 216, 234, 0.4);
    --shadow-glow-accent: 0 0 30px rgba(252, 186, 211, 0.4);
    --shadow-glow-secondary: 0 0 30px rgba(170, 150, 218, 0.4);

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 40px;
    --radius-full: 9999px;

    --font-display: 'Baloo 2', cursive;
    --font-heading: 'Fredoka', sans-serif;
    --font-body: 'Quicksand', sans-serif;

    --transition-fast: 0.2s ease;
    --transition-medium: 0.35s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset & Base */
*,
*::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(--text-primary);
    background: var(--bg-main);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(168, 216, 234, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(252, 186, 211, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(170, 150, 218, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
}

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

a:hover {
    color: var(--accent-dark);
}

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

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

/* Selection Color */
::selection {
    background: var(--accent);
    color: var(--text-primary);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-main);
}

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

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

/* ============================================
   AGE GATE MODAL
   ============================================ */

.age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 38, 64, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    padding: 20px;
    animation: fadeIn 0.4s ease;
}

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

.age-gate-modal {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-large);
    animation: slideUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.age-gate-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

.lucky-seven-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: white;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(170, 150, 218, 0.4);
}

.age-gate-modal h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin: 20px 0 12px;
    color: var(--text-primary);
}

.age-gate-modal > p {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 28px;
    line-height: 1.6;
}

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

.btn-pastel-primary {
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-medium);
    box-shadow: 0 4px 16px rgba(170, 150, 218, 0.35);
}

.btn-pastel-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(170, 150, 218, 0.5);
}

.btn-pastel-secondary {
    padding: 14px 32px;
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid rgba(170, 150, 218, 0.3);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.btn-pastel-secondary:hover {
    border-color: var(--accent);
    color: var(--accent-dark);
}

.age-gate-disclaimer {
    margin-top: 20px;
    font-size: 12px;
    color: var(--text-light);
}

.age-gate-disclaimer a {
    color: var(--secondary);
}

/* ============================================
   COOKIE BANNER
   ============================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    box-shadow: 0 -4px 32px rgba(170, 150, 218, 0.2);
    z-index: 99999;
    padding: 20px 24px;
    border-top: 3px solid linear-gradient(90deg, var(--primary), var(--accent));
    animation: slideUpBanner 0.5s ease;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    flex: 1;
    min-width: 300px;
}

.cookie-icon {
    font-size: 28px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.cookie-text strong {
    font-family: var(--font-heading);
    display: block;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.cookie-text p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.cookie-text p a {
    color: var(--secondary);
    text-decoration: underline;
}

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

.btn-cookie-accept {
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.btn-cookie-accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(170, 150, 218, 0.4);
}

.btn-cookie-necessary {
    padding: 10px 24px;
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid rgba(170, 150, 218, 0.3);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all var(--transition-medium);
}

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

.btn-cookie-settings {
    padding: 10px 20px;
    background: transparent;
    color: var(--text-light);
    border: none;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    text-decoration: underline;
    transition: color var(--transition-fast);
}

.btn-cookie-settings:hover {
    color: var(--secondary);
}

.cookie-settings-panel {
    max-width: 1200px;
    margin: 16px auto 0;
    padding-top: 16px;
    border-top: 1px solid rgba(170, 150, 218, 0.15);
}

.cookie-setting-item {
    margin-bottom: 12px;
}

.cookie-setting-item label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.cookie-setting-item p {
    font-size: 12px;
    color: var(--text-light);
    margin-left: 26px;
    margin-top: 2px;
}

/* ============================================
   RESPONSIBLE GAMING NOTICE
   ============================================ */

.responsible-notice {
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    padding: 10px 24px;
    text-align: center;
}

.responsible-notice-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.responsible-notice i {
    color: white;
    font-size: 14px;
}

.responsible-notice span {
    color: white;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-heading);
}

/* ============================================
   NAVIGATION
   ============================================ */

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 0;
    transition: all var(--transition-medium);
    background: rgba(245, 240, 255, 0.0);
}

.main-nav.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 2px 20px rgba(170, 150, 218, 0.12);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-seven {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: white;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 12px rgba(170, 150, 218, 0.3);
    transition: transform var(--transition-bounce);
}

.nav-logo:hover .logo-seven {
    transform: rotate(12deg) scale(1.1);
}

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

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

.nav-link {
    padding: 8px 18px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-full);
    transition: all var(--transition-medium);
    text-decoration: none;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-dark);
    background: rgba(170, 150, 218, 0.1);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2.5px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-medium);
}

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

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

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

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

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 24px 80px;
    background: linear-gradient(160deg, #f5f0ff 0%, #e8f4fd 30%, #fef5f9 60%, #f0e8ff 100%);
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-seven {
    position: absolute;
    font-family: var(--font-display);
    font-weight: 800;
    opacity: 0.06;
    color: var(--secondary);
    animation: floatSeven 20s ease-in-out infinite;
}

.f7-1 { font-size: 180px; top: 5%; left: 5%; animation-delay: 0s; }
.f7-2 { font-size: 120px; top: 15%; right: 10%; animation-delay: -3s; color: var(--accent); }
.f7-3 { font-size: 200px; bottom: 10%; left: 15%; animation-delay: -6s; }
.f7-4 { font-size: 90px; top: 40%; left: 80%; animation-delay: -9s; color: var(--primary); }
.f7-5 { font-size: 150px; bottom: 20%; right: 5%; animation-delay: -12s; color: var(--accent); }
.f7-6 { font-size: 100px; top: 60%; left: 3%; animation-delay: -15s; }
.f7-7 { font-size: 220px; top: -5%; left: 45%; animation-delay: -18s; color: var(--primary); opacity: 0.04; }

@keyframes floatSeven {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(-10px) rotate(-3deg); }
    75% { transform: translateY(-25px) rotate(2deg); }
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -10%;
    right: -10%;
    animation: blobMove1 15s ease-in-out infinite;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    bottom: -5%;
    left: -5%;
    animation: blobMove2 18s ease-in-out infinite;
}

.blob-3 {
    width: 350px;
    height: 350px;
    background: var(--secondary);
    top: 30%;
    left: 40%;
    animation: blobMove3 12s ease-in-out infinite;
}

@keyframes blobMove1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-40px, 30px) scale(1.1); }
}

@keyframes blobMove2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -20px) scale(1.05); }
}

@keyframes blobMove3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, -30px) scale(0.95); }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 24px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-dark);
    margin-bottom: 24px;
    box-shadow: var(--shadow-soft);
    animation: fadeInDown 0.8s ease both;
}

.hero-badge i {
    color: var(--accent);
    font-size: 12px;
}

.hero-title {
    font-family: var(--font-display);
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease 0.15s both;
}

.title-line-1 {
    display: block;
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 800;
    background: linear-gradient(135deg, var(--secondary-dark), var(--accent-dark), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
}

.title-line-2 {
    display: block;
    font-size: clamp(24px, 4vw, 38px);
    font-weight: 600;
    color: var(--text-secondary);
    margin-top: 4px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 580px;
    margin: 0 auto 36px;
    line-height: 1.7;
    animation: fadeInDown 0.8s ease 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeInDown 0.8s ease 0.45s both;
}

.btn-hero-play {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: white;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(170, 150, 218, 0.4);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.btn-hero-play::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.btn-hero-play:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(170, 150, 218, 0.55);
    color: white;
}

.btn-hero-play:hover::before {
    opacity: 1;
}

.btn-hero-learn {
    display: inline-flex;
    align-items: center;
    padding: 16px 36px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-decoration: none;
    border: 2px solid rgba(170, 150, 218, 0.2);
    transition: all var(--transition-medium);
}

.btn-hero-learn:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--secondary);
    color: var(--secondary-dark);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary-dark);
    line-height: 1.2;
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--text-light);
    font-family: var(--font-heading);
    font-size: 12px;
    animation: bounceDown 2s ease infinite;
}

@keyframes bounceDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   SECTION COMMON STYLES
   ============================================ */

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

.section-tag {
    display: inline-block;
    padding: 6px 20px;
    background: linear-gradient(135deg, rgba(168, 216, 234, 0.2), rgba(252, 186, 211, 0.2));
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary-dark);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.section-title.left-aligned {
    text-align: left;
}

.section-desc {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features-section {
    padding: 100px 0;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow-soft);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon-wrap {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-bottom: 20px;
    transition: transform var(--transition-bounce);
}

.feature-card:hover .feature-icon-wrap {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon-wrap.icon-purple {
    background: linear-gradient(135deg, var(--secondary-light), var(--secondary));
}

.feature-icon-wrap.icon-pink {
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
}

.feature-icon-wrap.icon-green {
    background: linear-gradient(135deg, #c8f0d0, var(--pastel-green));
}

.feature-icon-wrap.icon-orange {
    background: linear-gradient(135deg, #ffe4cc, var(--pastel-orange));
}

.feature-icon-wrap.icon-teal {
    background: linear-gradient(135deg, #c0f0e0, var(--pastel-teal));
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

/* ============================================
   GAME SECTION
   ============================================ */

.game-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-section-alt) 0%, var(--bg-main) 100%);
    position: relative;
}

.game-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary-light), transparent);
}

/* Cultural Fact Banner */
.cultural-fact-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary);
    margin-bottom: 32px;
    box-shadow: var(--shadow-soft);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    transition: all var(--transition-medium);
}

.cultural-fact-banner i {
    color: var(--primary-dark);
    font-size: 20px;
    flex-shrink: 0;
}

.cultural-fact-banner span {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    font-style: italic;
}

/* Slot Machine Wrapper */
.slot-machine-wrapper {
    max-width: 800px;
    margin: 0 auto 48px;
}

.slot-machine {
    background: linear-gradient(145deg, #ffffff, #f8f4ff);
    border-radius: var(--radius-xl);
    padding: 0;
    box-shadow: var(--shadow-large), inset 0 1px 0 rgba(255,255,255,0.8);
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(170, 150, 218, 0.15);
}

/* Slot Top Display */
.slot-top-display {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    padding: 16px 24px;
    position: relative;
    overflow: hidden;
}

.slot-top-display::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 20px,
        rgba(255,255,255,0.05) 20px,
        rgba(255,255,255,0.05) 40px
    );
}

.slot-title-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
}

.slot-game-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 8px rgba(0,0,0,0.15);
    letter-spacing: -0.5px;
}

.lucky-lights {
    display: flex;
    gap: 6px;
}

.light {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: lightBlink 2s ease infinite;
}

.l1 { background: #ff9999; animation-delay: 0s; }
.l2 { background: #ffcc99; animation-delay: 0.2s; }
.l3 { background: #ffff99; animation-delay: 0.4s; }
.l4 { background: #99ff99; animation-delay: 0.6s; }
.l5 { background: #99ccff; animation-delay: 0.8s; }

@keyframes lightBlink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

/* Info Bar */
.slot-info-bar {
    display: flex;
    justify-content: space-around;
    padding: 16px 24px;
    background: rgba(245, 240, 255, 0.5);
    border-bottom: 1px solid rgba(170, 150, 218, 0.1);
}

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

.info-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.info-value {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
}

.win-value {
    color: var(--secondary-dark);
}

/* Paylines Bar */
.paylines-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 8px 24px;
    font-family: var(--font-heading);
    font-size: 12px;
    color: var(--text-light);
    background: rgba(168, 216, 234, 0.08);
}

.separator-dot {
    width: 4px;
    height: 4px;
    background: var(--text-light);
    border-radius: 50%;
}

/* Reels */
.reels-frame {
    padding: 20px;
    position: relative;
    background: linear-gradient(180deg, rgba(170, 150, 218, 0.05), transparent);
}

.reels-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
    background: rgba(45, 38, 64, 0.04);
    border-radius: var(--radius-md);
    padding: 8px;
    position: relative;
}

.reel {
    height: 320px;
    overflow: hidden;
    position: relative;
    border-radius: var(--radius-sm);
    background: white;
    box-shadow: inset 0 2px 8px rgba(170, 150, 218, 0.1);
}

.reel-strip {
    display: flex;
    flex-direction: column;
    transition: transform 0.1s linear;
    will-change: transform;
}

.reel-symbol {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 36px;
    position: relative;
    transition: background var(--transition-fast);
}

.reel-symbol .symbol-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-medium);
}

.reel-symbol.winning .symbol-inner {
    animation: winPulse 0.6s ease infinite;
    box-shadow: 0 0 20px rgba(252, 186, 211, 0.6);
}

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

/* Win Line Overlay */
.win-line-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 10;
}

.win-line {
    position: absolute;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--secondary));
    border-radius: 2px;
    box-shadow: 0 0 10px var(--accent);
    animation: winLinePulse 1s ease infinite;
}

@keyframes winLinePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Slot Controls */
.slot-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 24px;
    background: linear-gradient(0deg, rgba(245, 240, 255, 0.8), transparent);
    flex-wrap: wrap;
}

.control-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-slot-control {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    border: 2px solid rgba(170, 150, 218, 0.2);
    background: white;
    color: var(--text-secondary);
    font-size: 16px;
    cursor: pointer;
    transition: all var(--transition-medium);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    font-family: var(--font-heading);
}

.btn-slot-control:hover {
    border-color: var(--secondary);
    color: var(--secondary-dark);
    background: rgba(170, 150, 218, 0.05);
    transform: translateY(-2px);
}

.btn-slot-control:active {
    transform: translateY(0);
}

.auto-label,
.max-label {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bet-amount-display {
    text-align: center;
    min-width: 70px;
}

.bet-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bet-amount {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
}

.btn-spin {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    box-shadow: 0 8px 32px rgba(170, 150, 218, 0.45);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.btn-spin::before {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-spin:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 40px rgba(170, 150, 218, 0.6);
}

.btn-spin:active {
    transform: scale(0.95);
}

.btn-spin.spinning {
    animation: spinBtnPulse 0.5s ease infinite;
}

@keyframes spinBtnPulse {
    0%, 100% { box-shadow: 0 8px 32px rgba(170, 150, 218, 0.45); }
    50% { box-shadow: 0 8px 40px rgba(252, 186, 211, 0.6); }
}

.spin-text {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
}

.spin-icon {
    font-size: 14px;
    opacity: 0.8;
}

.btn-spin.spinning .spin-icon i {
    animation: spinRotate 0.5s linear infinite;
}

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

/* Auto Spin Active */
.btn-slot-control.auto-active {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: white;
    border-color: transparent;
}

/* Win Overlay */
.win-overlay {
    position: absolute;
    inset: 0;
    background: rgba(45, 38, 64, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    border-radius: var(--radius-xl);
    animation: fadeIn 0.3s ease;
}

.win-message {
    text-align: center;
    animation: winBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.win-amount-big {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 800;
    color: white;
    text-shadow: 0 4px 20px rgba(252, 186, 211, 0.8);
}

.win-label-big {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-light);
    letter-spacing: 2px;
}

@keyframes winBounce {
    0% { transform: scale(0.3); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* Paytable Toggle */
.btn-paytable-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: white;
    border: 2px solid rgba(170, 150, 218, 0.2);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    margin-top: 20px;
    transition: all var(--transition-medium);
}

.btn-paytable-toggle:hover {
    border-color: var(--secondary);
    color: var(--secondary-dark);
    transform: translateY(-2px);
}

/* Paytable */
.paytable {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-top: 20px;
    box-shadow: var(--shadow-medium);
    animation: slideDown 0.4s ease;
}

.paytable-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.paytable-header h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--text-primary);
}

.btn-close-paytable {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(170, 150, 218, 0.1);
    color: var(--text-secondary);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.btn-close-paytable:hover {
    background: rgba(252, 186, 211, 0.2);
    color: var(--accent-dark);
}

.paytable-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}

.paytable-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 12px;
    background: rgba(245, 240, 255, 0.5);
    border-radius: var(--radius-md);
    gap: 8px;
    transition: transform var(--transition-medium);
}

.paytable-item:hover {
    transform: translateY(-4px);
}

.paytable-symbol {
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
}

.paytable-name {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
}

.paytable-values {
    font-size: 11px;
    color: var(--text-light);
    text-align: center;
    line-height: 1.4;
}

.paytable-info {
    border-top: 1px solid rgba(170, 150, 218, 0.1);
    padding-top: 20px;
}

.paytable-info h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.paytable-feature {
    padding: 10px 16px;
    background: rgba(168, 216, 234, 0.1);
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.paytable-feature strong {
    color: var(--text-primary);
}

/* Achievements Panel */
.achievements-panel {
    max-width: 800px;
    margin: 0 auto 32px;
}

.achievements-title,
.collection-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.achievements-title i {
    color: var(--accent);
}

.collection-title i {
    color: var(--secondary);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.achievement-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: all var(--transition-medium);
    border: 2px solid transparent;
}

.achievement-card.unlocked {
    border-color: var(--pastel-green);
    background: rgba(181, 232, 195, 0.08);
}

.achievement-card.locked {
    opacity: 0.6;
}

.achievement-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.achievement-card.unlocked .achievement-icon {
    background: linear-gradient(135deg, var(--pastel-green), #8cd4a0);
    color: white;
}

.achievement-card.locked .achievement-icon {
    background: rgba(170, 150, 218, 0.1);
    color: var(--text-light);
}

.achievement-info {
    flex: 1;
    min-width: 0;
}

.achievement-name {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

.achievement-desc {
    font-size: 11px;
    color: var(--text-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Collection Panel */
.collection-panel {
    max-width: 800px;
    margin: 0 auto;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.collection-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 8px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: all var(--transition-medium);
    cursor: default;
}

.collection-item.collected {
    border: 2px solid var(--pastel-green);
}

.collection-item.not-collected {
    opacity: 0.4;
    filter: grayscale(0.8);
}

.collection-item:hover {
    transform: translateY(-4px);
}

.collection-symbol {
    font-size: 28px;
}

.collection-name {
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
}

.collection-progress {
    display: flex;
    align-items: center;
    gap: 12px;
}

.progress-bar-wrap {
    flex: 1;
    height: 8px;
    background: rgba(170, 150, 218, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    border-radius: var(--radius-full);
    transition: width 0.8s ease;
}

#collection-count {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
    padding: 100px 0;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-shape-composition {
    position: relative;
    width: 350px;
    height: 350px;
}

.about-circle {
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-medium);
    transition: transform var(--transition-bounce);
}

.about-circle:hover {
    transform: scale(1.08);
}

.about-circle.c1 {
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    top: 0;
    left: 0;
    font-size: 48px;
    animation: floatAbout1 6s ease-in-out infinite;
}

.about-circle.c2 {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    top: 10px;
    right: 0;
    font-size: 60px;
    animation: floatAbout2 7s ease-in-out infinite;
}

.big-seven {
    font-family: var(--font-display);
    font-weight: 800;
}

.about-circle.c3 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    bottom: 20px;
    left: 20px;
    font-size: 40px;
    animation: floatAbout3 8s ease-in-out infinite;
}

.about-diamond {
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--pastel-yellow), var(--pastel-orange));
    bottom: 0;
    right: 30px;
    border-radius: var(--radius-md);
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    box-shadow: var(--shadow-medium);
    animation: floatAbout4 5s ease-in-out infinite;
}

.about-diamond i {
    transform: rotate(-45deg);
}

@keyframes floatAbout1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes floatAbout2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
}

@keyframes floatAbout3 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes floatAbout4 {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(-14px); }
}

.about-content p {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.highlight-item i {
    color: var(--pastel-green);
    font-size: 16px;
}

/* ============================================
   TRUST SECTION
   ============================================ */

.trust-section {
    padding: 100px 0;
    background: var(--bg-section-alt);
    position: relative;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.trust-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow-soft);
    transition: all var(--transition-medium);
    text-align: center;
}

.trust-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
}

.trust-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: white;
    box-shadow: 0 4px 16px rgba(168, 216, 234, 0.3);
}

.trust-icon-purple {
    background: linear-gradient(135deg, var(--secondary-light), var(--secondary));
    box-shadow: 0 4px 16px rgba(170, 150, 218, 0.3);
}

.trust-icon-pink {
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    box-shadow: 0 4px 16px rgba(252, 186, 211, 0.3);
}

.trust-icon-green {
    background: linear-gradient(135deg, #c8f0d0, var(--pastel-green));
    box-shadow: 0 4px 16px rgba(181, 232, 195, 0.3);
}

.trust-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.trust-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.trust-card p a {
    color: var(--secondary-dark);
    text-decoration: underline;
}

.trust-address {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 28px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    max-width: 700px;
    margin: 0 auto;
}

.trust-address i {
    color: var(--accent);
    font-size: 20px;
    flex-shrink: 0;
}

.trust-address p {
    font-size: 14px;
    color: var(--text-secondary);
}

.trust-address strong {
    color: var(--text-primary);
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    padding: 100px 0;
    position: relative;
}

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

.contact-info p {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 28px;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
}

.method-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
}

.method-icon-purple {
    background: linear-gradient(135deg, var(--secondary-light), var(--secondary));
}

.method-icon-pink {
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
}

.contact-method strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--text-primary);
}

.contact-method p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

/* Contact Form */
.contact-form-wrap {
    background: white;
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-medium);
}

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

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(170, 150, 218, 0.15);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-primary);
    background: rgba(245, 240, 255, 0.3);
    transition: all var(--transition-medium);
    outline: none;
}

.form-group input:focus {
    border-color: var(--secondary);
    background: white;
    box-shadow: 0 0 0 4px rgba(170, 150, 218, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--secondary);
}

.checkbox-label a {
    color: var(--secondary);
    text-decoration: underline;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-medium);
    box-shadow: 0 4px 16px rgba(170, 150, 218, 0.3);
    width: 100%;
    justify-content: center;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(170, 150, 218, 0.45);
}

.btn-submit:active {
    transform: translateY(0);
}

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

.form-message.success {
    background: rgba(181, 232, 195, 0.2);
    color: #2d8a4e;
    border: 1px solid rgba(181, 232, 195, 0.5);
}

.form-message.error {
    background: rgba(252, 186, 211, 0.2);
    color: #c44569;
    border: 1px solid rgba(252, 186, 211, 0.5);
}

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

.main-footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 0;
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-brand .logo-seven {
    width: 36px;
    height: 36px;
    font-size: 20px;
}

.footer-brand .logo-text {
    color: white;
    font-size: 20px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
    max-width: 320px;
}

.footer-links-group h4 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.footer-links-group ul {
    list-style: none;
}

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

.footer-links-group a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: color var(--transition-fast);
    text-decoration: none;
}

.footer-links-group a:hover {
    color: var(--accent-light);
}

.footer-bottom {
    padding: 28px 0;
    text-align: center;
}

.footer-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
}

.footer-badge i {
    color: var(--accent);
    font-size: 14px;
}

.footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 8px;
}

.footer-disclaimer {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

/* ============================================
   PARTICLE CANVAS
   ============================================ */

#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 99998;
}

/* ============================================
   BACK TO TOP
   ============================================ */

.btn-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: white;
    border: none;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(170, 150, 218, 0.4);
    transition: all var(--transition-medium);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 9990;
}

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

.btn-back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(170, 150, 218, 0.6);
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

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

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(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 slideUpBanner {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

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

@media (max-width: 1024px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-visual {
        order: -1;
    }

    .about-shape-composition {
        width: 280px;
        height: 280px;
    }

    .about-circle.c1 { width: 130px; height: 130px; font-size: 40px; }
    .about-circle.c2 { width: 110px; height: 110px; font-size: 48px; }
    .about-circle.c3 { width: 100px; height: 100px; font-size: 32px; }
    .about-diamond { width: 80px; height: 80px; font-size: 26px; }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

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

    .about-content {
        text-align: center;
    }

    .about-highlights {
        justify-items: center;
    }

    .contact-info {
        text-align: center;
    }

    .contact-methods {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-medium);
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 24px 60px;
        min-height: auto;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-number {
        font-size: 24px;
    }

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

    .slot-machine {
        border-radius: var(--radius-lg);
    }

    .slot-game-title {
        font-size: 20px;
    }

    .reels-container {
        gap: 3px;
        padding: 6px;
    }

    .reel {
        height: 240px;
    }

    .reel-symbol {
        height: 60px;
        font-size: 28px;
    }

    .reel-symbol .symbol-inner {
        width: 48px;
        height: 48px;
    }

    .slot-controls {
        gap: 12px;
        padding: 16px;
    }

    .btn-spin {
        width: 80px;
        height: 80px;
    }

    .spin-text {
        font-size: 14px;
    }

    .info-value {
        font-size: 18px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        max-width: none;
    }

    .footer-brand .footer-logo {
        justify-content: center;
    }

    .trust-address {
        flex-direction: column;
        text-align: center;
    }

    .achievements-grid {
        grid-template-columns: 1fr;
    }

    .collection-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-text {
        flex-direction: column;
        align-items: center;
        min-width: auto;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .age-gate-modal {
        padding: 36px 24px;
    }

    .win-amount-big {
        font-size: 48px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero-play,
    .btn-hero-learn {
        width: 100%;
        justify-content: center;
    }

    .slot-info-bar {
        flex-wrap: wrap;
        gap: 8px;
    }

    .info-item {
        flex: 1;
        min-width: 60px;
    }

    .reel {
        height: 200px;
    }

    .reel-symbol {
        height: 50px;
        font-size: 22px;
    }

    .reel-symbol .symbol-inner {
        width: 40px;
        height: 40px;
    }

    .btn-spin {
        width: 70px;
        height: 70px;
    }

    .control-group {
        gap: 6px;
    }

    .btn-slot-control {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .collection-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .paytable-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   SYMBOL SPECIFIC STYLES (for CSS-drawn symbols)
   ============================================ */

.sym-crown { color: #FFD700; }
.sym-bigben { color: #8B7355; }
.sym-bus { color: #E74C3C; }
.sym-seven { color: var(--accent-dark); }
.sym-phone { color: #E74C3C; }
.sym-tea { color: #A0522D; }
.sym-guard { color: #2C3E50; }
.sym-tower { color: #7F8C8D; }
.sym-lion { color: #DAA520; }
.sym-rose { color: #E91E63; }
.sym-a { color: var(--secondary); }
.sym-k { color: var(--primary-dark); }
.sym-q { color: var(--accent); }
.sym-j { color: var(--pastel-green); }

/* Lucky Seven special glow */
.sym-seven .symbol-inner {
    background: linear-gradient(135deg, rgba(252, 186, 211, 0.15), rgba(170, 150, 218, 0.15));
    border-radius: var(--radius-sm);
}

/* ============================================
   NOTIFICATION TOAST
   ============================================ */
.toast-container {
    position: fixed;
    top: 80px;
    right: 24px;
    z-index: 99997;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    padding: 14px 24px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-medium);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: toastIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-left: 4px solid var(--pastel-green);
    max-width: 360px;
}

.toast.toast-exit {
    animation: toastOut 0.3s ease forwards;
}

.toast i {
    font-size: 18px;
    color: var(--pastel-green);
}

.toast.toast-achievement {
    border-left-color: var(--accent);
}

.toast.toast-achievement i {
    color: var(--accent);
}

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

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

/* ============================================
   LEGAL PAGE STYLES (shared)
   ============================================ */

.legal-page {
    min-height: 100vh;
    padding-top: 80px;
}

.legal-hero {
    padding: 60px 24px;
    text-align: center;
    background: linear-gradient(160deg, #f5f0ff 0%, #e8f4fd 30%, #fef5f9 60%, #f0e8ff 100%);
    position: relative;
}

.legal-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary-light), transparent);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px 24px 80px;
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 40px 0 16px;
    padding-top: 20px;
    border-top: 1px solid rgba(170, 150, 218, 0.1);
}

.legal-content h2:first-of-type {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.legal-content h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 24px 0 12px;
}

.legal-content p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 14px;
}

.legal-content ul,
.legal-content ol {
    margin: 12px 0 20px 24px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--secondary-dark);
    text-decoration: underline;
}

.legal-content strong {
    color: var(--text-primary);
}

.legal-last-updated {
    font-size: 13px;
    color: var(--text-light);
    font-style: italic;
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .main-nav,
    .age-gate-overlay,
    .cookie-banner,
    .btn-back-to-top,
    #particle-canvas,
    .toast-container {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }
}
