/* ===== CSS Variables & Reset ===== */
:root {
    --bg-primary: #0a0a1a;
    --bg-secondary: #111127;
    --bg-card: #161636;
    --bg-card-hover: #1c1c42;
    --text-primary: #ffffff;
    --text-secondary: #a0a0c0;
    --text-muted: #6b6b8a;
    --accent-purple: #8b5cf6;
    --accent-blue: #3b82f6;
    --accent-cyan: #06b6d4;
    --accent-green: #10b981;
    --accent-orange: #f59e0b;
    --accent-pink: #ec4899;
    --accent-teal: #14b8a6;
    --gradient-primary: linear-gradient(135deg, #8b5cf6, #06b6d4);
    --gradient-hero: linear-gradient(135deg, #1a0533 0%, #0a0a1a 40%, #0a1628 100%);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 40px rgba(139, 92, 246, 0.15);
    --border-subtle: rgba(255, 255, 255, 0.06);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul { list-style: none; }

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

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

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: inherit;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.45);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: rgba(139, 92, 246, 0.5);
    background: rgba(139, 92, 246, 0.1);
}

.btn-white {
    background: white;
    color: var(--bg-primary);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

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

.btn-nav {
    background: var(--gradient-primary);
    color: white;
    padding: 10px 24px;
    font-size: 14px;
}

.btn-nav:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 26, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 10px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
}

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

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
}

.nav-links a:hover {
    color: white;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-links a:hover::after {
    width: 100%;
}

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

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

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

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-purple);
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero p {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 520px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.stat strong {
    display: block;
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat span {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-subtle);
}

/* Hero Gallery */
.hero-visual {
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.hero-gallery {
    position: relative;
    width: min(100%, 540px);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotateY(-5deg); }
    50% { transform: translateY(-20px) rotateY(5deg); }
}

.gallery-window {
    overflow: hidden;
    border-radius: 36px;
    padding: 24px 18px;
    background:
        radial-gradient(circle at top left, rgba(236, 72, 153, 0.12), transparent 38%),
        radial-gradient(circle at bottom right, rgba(6, 182, 212, 0.18), transparent 40%),
        rgba(9, 14, 36, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-lg), 0 0 90px rgba(99, 102, 241, 0.14);
    position: relative;
}

.gallery-track {
    display: flex;
    gap: 18px;
    transition: transform 0.45s ease;
}

.slot-card {
    min-width: calc(50% - 9px);
    aspect-ratio: 0.7;
    border-radius: 20px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.25);
}

.gallery-image-card {
    background: linear-gradient(180deg, #5320a8 0%, #2a0a5f 100%);
    padding: 0;
}

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

.slot-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 18%, transparent 82%, rgba(0, 0, 0, 0.22));
    pointer-events: none;
}

.gallery-image-card::before {
    display: none;
}

.slot-card-fortune {
    background: linear-gradient(180deg, #9227ff 0%, #e85b00 28%, #ffdb5a 62%, #7111cc 100%);
}

.slot-card-gold {
    background: linear-gradient(180deg, #9429ff 0%, #ffc93c 24%, #f7931a 58%, #7a23df 100%);
}

.slot-card-piggy {
    background: linear-gradient(180deg, #8d1dff 0%, #ffbe0b 26%, #ff6d00 58%, #6b18cb 100%);
}

.slot-card-rapid {
    background: linear-gradient(180deg, #9f2bff 0%, #ff2d95 26%, #ffb703 58%, #6610d4 100%);
}

.slot-topbar,
.slot-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.slot-topbar span,
.slot-footer span {
    font-size: 10px;
    font-weight: 800;
    color: white;
    letter-spacing: 0.04em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.slot-spin {
    background: linear-gradient(180deg, #72ff7b, #0aa83d);
    color: #0b3d18 !important;
    padding: 5px 12px;
    border-radius: 999px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.slot-reels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    position: absolute;
    top: 56px;
    left: 12px;
    right: 12px;
    z-index: 1;
}

.slot-reel {
    aspect-ratio: 1;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 10px 18px rgba(98, 0, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    color: #fff7d6;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

.slot-title {
    position: relative;
    z-index: 1;
    margin-top: 140px;
    text-align: center;
    font-size: clamp(22px, 3vw, 30px);
    line-height: 0.95;
    font-weight: 900;
    color: #fff1a9;
    text-shadow: 0 3px 10px rgba(125, 15, 0, 0.45);
}

.slot-payout {
    position: relative;
    z-index: 1;
    text-align: center;
    font-size: 14px;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.88);
    color: #445;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 18px 26px rgba(15, 23, 42, 0.18);
    transition: var(--transition);
    z-index: 2;
}

.gallery-arrow:hover {
    background: white;
    color: #111827;
    transform: translateY(-50%) scale(1.06);
}

.gallery-arrow:disabled {
    opacity: 0.45;
    cursor: default;
    transform: translateY(-50%);
}

.gallery-arrow svg {
    width: 24px;
    height: 24px;
}

.gallery-arrow-prev {
    left: -20px;
}

.gallery-arrow-next {
    right: -20px;
}

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

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

/* ===== Section Styles ===== */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-purple);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 17px;
    line-height: 1.7;
}

/* ===== Features Section ===== */
.features {
    padding: 100px 0;
    background: var(--bg-primary);
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

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

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
}

.icon-purple { background: rgba(139, 92, 246, 0.15); color: var(--accent-purple); }
.icon-blue { background: rgba(59, 130, 246, 0.15); color: var(--accent-blue); }
.icon-green { background: rgba(16, 185, 129, 0.15); color: var(--accent-green); }
.icon-orange { background: rgba(245, 158, 11, 0.15); color: var(--accent-orange); }
.icon-pink { background: rgba(236, 72, 153, 0.15); color: var(--accent-pink); }
.icon-teal { background: rgba(20, 184, 166, 0.15); color: var(--accent-teal); }

.feature-card h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
}

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

/* ===== Showcase Section ===== */
.showcase {
    padding: 100px 0;
    background: var(--bg-secondary);
}

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

.showcase-text .section-tag { margin-bottom: 16px; }

.showcase-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}

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

.showcase-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.showcase-list li {
    display: flex;
    gap: 16px;
}

.check-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.check-icon svg {
    width: 16px;
    height: 16px;
    color: var(--accent-green);
}

.showcase-list strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

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

.showcase-visual {
    display: flex;
    justify-content: center;
}

.showcase-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 400px;
}

.showcase-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    transition: var(--transition);
}

.showcase-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.card-1 { border-top: 2px solid var(--accent-purple); }
.card-2 { border-top: 2px solid var(--accent-cyan); }
.card-3 { border-top: 2px solid var(--accent-orange); }
.card-4 { border-top: 2px solid var(--accent-green); }

.sc-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.showcase-card h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.showcase-card p {
    font-size: 12px;
    color: var(--text-muted);
}

/* ===== How to Play ===== */
.how-to-play {
    padding: 100px 0;
    background: var(--bg-primary);
}

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

.step-card {
    flex: 0 0 280px;
    text-align: center;
    padding: 40px 24px;
    position: relative;
}

.step-number {
    font-size: 64px;
    font-weight: 900;
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.2) 0%, transparent 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 20px;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-purple);
}

.step-icon svg {
    width: 40px;
    height: 40px;
}

.step-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

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

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

.step-connector svg {
    width: 60px;
    height: 20px;
}

.steps-cta {
    text-align: center;
}

/* ===== Reviews Section ===== */
.reviews {
    padding: 100px 0;
    background: var(--bg-secondary);
}

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

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.review-stars {
    font-size: 18px;
    color: var(--accent-orange);
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.review-card > p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

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

.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: white;
}

.reviewer strong {
    display: block;
    font-size: 15px;
}

.reviewer span {
    font-size: 12px;
    color: var(--text-muted);
}

/* ===== FAQ Section ===== */
.faq {
    padding: 100px 0;
    background: var(--bg-primary);
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

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

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

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

.faq-arrow {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: var(--transition);
    color: var(--text-muted);
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--accent-purple);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding: 0 0 22px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

.faq-answer a {
    color: var(--accent-purple);
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #2d1b69, #1a0a3e, #0d2847);
}

.cta-bg::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-bg::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

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

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

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-content > p {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 36px;
}

.cta-note {
    display: block;
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-muted);
}

/* ===== Footer ===== */
.footer {
    padding: 80px 0 32px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
}

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

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand > p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 300px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: rgba(139, 92, 246, 0.2);
    transform: translateY(-2px);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    color: var(--text-secondary);
}

.footer-links h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-secondary);
}

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

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

.footer-bottom > p:first-child {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.footer-disclaimer {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero h1 { font-size: 44px; }
    .hero-content { gap: 40px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .showcase-grid { gap: 48px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

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

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 26, 0.98);
        backdrop-filter: blur(20px);
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border-subtle);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero h1 { font-size: 38px; }
    .hero p { margin: 0 auto 36px; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { order: 2; margin-top: 20px; }

    .hero-gallery {
        width: min(100%, 480px);
    }

    .gallery-arrow {
        width: 48px;
        height: 48px;
    }

    .gallery-arrow-prev {
        left: -10px;
    }

    .gallery-arrow-next {
        right: -10px;
    }

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

    .showcase-grid { grid-template-columns: 1fr; }
    .section-header h2 { font-size: 32px; }

    .steps-grid { flex-direction: column; align-items: center; }
    .step-connector { padding-top: 0; transform: rotate(90deg); }

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

    .cta-content h2 { font-size: 36px; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 30px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .btn-lg { padding: 14px 28px; font-size: 15px; }
    .hero-stats { flex-wrap: wrap; gap: 20px; }
    .section-header h2 { font-size: 28px; }
    .cta-content h2 { font-size: 28px; }
    .gallery-window { padding: 18px 14px; }
    .gallery-track { gap: 14px; }
    .slot-card { min-width: calc(50% - 7px); border-radius: 18px; padding: 10px; }
    .slot-title { margin-top: 108px; font-size: 18px; }
    .slot-payout { font-size: 11px; }
    .slot-topbar span,
    .slot-footer span { font-size: 8px; }
    .slot-spin { padding: 4px 9px; }
    .gallery-arrow {
        width: 42px;
        height: 42px;
    }
    .gallery-arrow-prev {
        left: -6px;
    }
    .gallery-arrow-next {
        right: -6px;
    }
}

/* ===== Particles ===== */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(139, 92, 246, 0.3);
    border-radius: 50%;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}
