/* ========================================
   YaarWin – Premium CSS (SEO Page)
   Domain: dream99.online
   ======================================== */

/* CSS Variables */
:root {
    --primary: #00ff41;
    --primary-dark: #00cc33;
    --primary-glow: rgba(0, 255, 65, 0.3);
    --bg-dark: #0a0a0a;
    --bg-card: #111111;
    --bg-card-hover: #1a1a1a;
    --bg-section-alt: #0d0d0d;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #666666;
    --border-color: #222222;
    --border-glow: rgba(0, 255, 65, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-round: 50%;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(0, 255, 65, 0.15);
    --font-primary: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

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

ul { list-style: none; }

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

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary);
    color: var(--bg-dark);
    padding: 10px 20px;
    z-index: 10000;
    font-weight: 600;
}
.skip-link:focus { top: 0; }

/* ========== Announcement Bar ========== */
.announcement-bar {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--primary-dark));
    color: var(--bg-dark);
    text-align: center;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    position: relative;
    z-index: 1001;
}
.announcement-bar a {
    color: var(--bg-dark);
    text-decoration: underline;
    font-weight: 700;
}

/* ========== Header ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: all var(--transition);
    margin-top: 40px;
}
.header.sticky {
    margin-top: 0;
    background: rgba(10, 10, 10, 0.95);
    box-shadow: var(--shadow-md);
}
.header.sticky + .announcement-bar { display: none; }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.logo img {
    width: 45px;
    height: 45px;
    border-radius: var(--radius-round);
    border: 2px solid var(--primary);
}
.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}
.highlight { color: var(--primary); }

.nav-list {
    display: flex;
    gap: 30px;
}
.nav-list a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color var(--transition);
    position: relative;
}
.nav-list a:hover { color: var(--primary); }
.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition);
}
.nav-list a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 15px; }

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition);
}
.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
    display: none;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    padding: 20px;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 15px; }
.mobile-menu a {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
    padding: 8px 0;
}

/* ========== Buttons ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    text-decoration: none;
    white-space: nowrap;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--bg-dark);
    box-shadow: 0 4px 15px rgba(0, 255, 65, 0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 255, 65, 0.5);
    color: var(--bg-dark);
}
.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-outline:hover {
    background: rgba(0, 255, 65, 0.1);
    transform: translateY(-2px);
    color: var(--primary);
}
.btn-xl { padding: 16px 36px; font-size: 1.1rem; }
.btn-xxl { padding: 20px 48px; font-size: 1.25rem; border-radius: var(--radius-lg); }
.btn-glow {
    animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(0, 255, 65, 0.3); }
    50% { box-shadow: 0 4px 35px rgba(0, 255, 65, 0.6), 0 0 60px rgba(0, 255, 65, 0.2); }
}

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

.hero-bg-effects {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.hero-orb {
    position: absolute;
    border-radius: var(--radius-round);
    filter: blur(100px);
    opacity: 0.4;
}
.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow), transparent);
    top: -200px;
    right: -100px;
    animation: orb-float 8s ease-in-out infinite;
}
.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 200, 65, 0.2), transparent);
    bottom: -100px;
    left: -100px;
    animation: orb-float 10s ease-in-out infinite reverse;
}
.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 255, 100, 0.15), transparent);
    top: 50%;
    left: 50%;
    animation: orb-float 12s ease-in-out infinite;
}

@keyframes orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 255, 65, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 65, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(0, 255, 65, 0.1);
    border: 1px solid rgba(0, 255, 65, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
    animation: badge-shimmer 3s ease-in-out infinite;
}

@keyframes badge-shimmer {
    0%, 100% { border-color: rgba(0, 255, 65, 0.3); }
    50% { border-color: rgba(0, 255, 65, 0.7); box-shadow: 0 0 20px rgba(0, 255, 65, 0.1); }
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 35px;
}
.stat-item {
    display: flex;
    flex-direction: column;
}
.stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}
.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-logo-container {
    position: relative;
    width: 350px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-logo-img {
    width: 280px;
    height: 280px;
    border-radius: var(--radius-round);
    object-fit: cover;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 60px rgba(0, 255, 65, 0.3);
}
.hero-logo-ring {
    position: absolute;
    inset: -10px;
    border: 2px solid rgba(0, 255, 65, 0.3);
    border-radius: var(--radius-round);
    animation: ring-spin 20s linear infinite;
}
.hero-logo-ring-2 {
    inset: -25px;
    border-color: rgba(0, 255, 65, 0.15);
    animation-direction: reverse;
    animation-duration: 30s;
}
@keyframes ring-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.floating-card {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: var(--shadow-md);
    z-index: 3;
    animation: card-float 4s ease-in-out infinite;
}
.fc-1 { top: 10%; left: -10%; animation-delay: 0s; }
.fc-2 { top: 15%; right: -5%; animation-delay: 1s; }
.fc-3 { bottom: 15%; left: -5%; animation-delay: 2s; }
.fc-4 { bottom: 10%; right: -10%; animation-delay: 3s; color: var(--primary); }

@keyframes card-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ========== Live Wins Marquee ========== */
.live-wins {
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    overflow: hidden;
}
.marquee-track { overflow: hidden; white-space: nowrap; }
.marquee-content {
    display: inline-flex;
    gap: 50px;
    animation: marquee 30s linear infinite;
}
.win-item {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========== Section Common ========== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-badge {
    display: inline-block;
    background: rgba(0, 255, 65, 0.1);
    border: 1px solid rgba(0, 255, 65, 0.2);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
}
.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}
.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ========== Games Section ========== */
.games-section {
    padding: 100px 0;
    background: var(--bg-section-alt);
}
.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.game-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}
.game-card.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.game-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}
.game-card.animate-in:hover {
    transform: translateY(-5px);
}
.game-featured {
    border-color: rgba(0, 255, 65, 0.3);
    background: linear-gradient(135deg, var(--bg-card), rgba(0, 255, 65, 0.03));
}
.game-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}
.game-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: var(--bg-dark);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}
.badge-hot { background: #ff4444; color: white; }
.game-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.game-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.7;
}
.game-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}
.game-tag {
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}
.game-payout {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 20px;
}

/* ========== Features Section ========== */
.features-section {
    padding: 100px 0;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 35px;
    text-align: center;
    transition: all var(--transition);
    opacity: 0;
    transform: translateY(30px);
}
.feature-card.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-card:hover {
    border-color: rgba(0, 255, 65, 0.3);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}
.feature-card.animate-in:hover {
    transform: translateY(-5px);
}
.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}
.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.feature-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ========== How To Play ========== */
.how-to-section {
    padding: 100px 0;
    background: var(--bg-section-alt);
}
.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}
.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    text-align: center;
    flex: 1;
    max-width: 320px;
    transition: all var(--transition);
    opacity: 0;
    transform: translateY(30px);
}
.step-card.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.step-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}
.step-number {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-round);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0 auto 20px;
}
.step-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.step-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}
.step-arrow {
    font-size: 2rem;
    color: var(--primary);
    font-weight: 700;
}
.cta-center { text-align: center; }

/* ========== Payment Section ========== */
.payment-section {
    padding: 80px 0;
}
.payment-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}
.payment-method {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 15px 25px;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all var(--transition);
}
.payment-method:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}
.payment-icon { font-size: 1.5rem; }

/* ========== Testimonials ========== */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg-section-alt);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: all var(--transition);
    opacity: 0;
    transform: translateY(30px);
}
.testimonial-card.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card:hover {
    border-color: rgba(0, 255, 65, 0.3);
    box-shadow: var(--shadow-glow);
}
.testimonial-stars {
    font-size: 1rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}
.testimonial-card blockquote p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: var(--radius-round);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}
.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
}
.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ========== About / SEO Content ========== */
.about-section {
    padding: 100px 0;
}
.about-content {
    max-width: 900px;
    margin: 0 auto;
}
.about-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}
.about-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 35px;
    margin-bottom: 12px;
    color: var(--primary);
}
.about-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.8;
}

/* ========== FAQ Section ========== */
.faq-section {
    padding: 100px 0;
    background: var(--bg-section-alt);
}
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition);
    opacity: 0;
    transform: translateY(20px);
}
.faq-item.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item[open] {
    border-color: rgba(0, 255, 65, 0.3);
}
.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    cursor: pointer;
    list-style: none;
    user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}
.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform var(--transition);
    font-weight: 300;
}
.faq-item[open] .faq-toggle {
    transform: rotate(45deg);
}
.faq-answer {
    padding: 0 25px 20px;
}
.faq-answer p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ========== Final CTA ========== */
.final-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.03), rgba(0, 255, 65, 0.08), rgba(0, 255, 65, 0.03));
    border-top: 1px solid var(--border-glow);
    border-bottom: 1px solid var(--border-glow);
}
.final-cta-content {
    text-align: center;
}
.final-cta-content h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 15px;
}
.final-cta-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 35px;
}
.final-trust-badges {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 30px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ========== Footer ========== */
.footer {
    padding: 60px 0 30px;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}
.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-round);
}
.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}
.footer-links h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--primary); }
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}
.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 5px;
}
.footer-disclaimer {
    font-size: 0.8rem !important;
    color: var(--text-muted) !important;
}

/* ========== Floating CTA (Mobile) ========== */
.floating-cta {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--bg-dark);
    padding: 14px 24px;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 0.95rem;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0, 255, 65, 0.4);
    animation: glow-pulse 2s ease-in-out infinite;
    text-decoration: none;
}
.floating-cta:hover { color: var(--bg-dark); }

/* ========== Scroll Animations ========== */
.game-card, .feature-card, .step-card, .testimonial-card, .faq-item {
    transition-delay: calc(var(--i, 0) * 0.1s);
}
.game-card:nth-child(1) { --i: 0; }
.game-card:nth-child(2) { --i: 1; }
.game-card:nth-child(3) { --i: 2; }
.game-card:nth-child(4) { --i: 3; }
.game-card:nth-child(5) { --i: 4; }
.game-card:nth-child(6) { --i: 5; }
.feature-card:nth-child(1) { --i: 0; }
.feature-card:nth-child(2) { --i: 1; }
.feature-card:nth-child(3) { --i: 2; }
.feature-card:nth-child(4) { --i: 3; }
.feature-card:nth-child(5) { --i: 4; }
.feature-card:nth-child(6) { --i: 5; }

/* ========== Responsive ========== */
@media (max-width: 1024px) {
    .hero h1 { font-size: 2.8rem; }
    .hero-inner { gap: 40px; }
    .games-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .announcement-bar { font-size: 0.8rem; padding: 8px 15px; }
    .header { margin-top: 36px; }
    .nav { display: none; }
    .mobile-menu-btn { display: flex; }
    .header-actions .btn { display: none; }
    .floating-cta { display: block; }

    .hero {
        padding: 130px 0 60px;
        min-height: auto;
    }
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero h1 { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-stats {
        justify-content: center;
        gap: 20px;
    }
    .stat-value { font-size: 1.4rem; }
    .hero-cta { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-visual { order: -1; }
    .hero-logo-container { width: 250px; height: 250px; }
    .hero-logo-img { width: 200px; height: 200px; }
    .floating-card { display: none; }

    .section-header h2 { font-size: 1.8rem; }
    .games-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .steps-grid { flex-direction: column; }
    .step-arrow { transform: rotate(90deg); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .final-cta-content h2 { font-size: 2rem; }
    .btn-xxl { padding: 16px 32px; font-size: 1.05rem; }
    .payment-grid { gap: 12px; }
    .payment-method { padding: 12px 18px; font-size: 0.9rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.8rem; }
    .hero-stats { flex-direction: column; gap: 12px; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; }
    .section-header h2 { font-size: 1.5rem; }
    .final-cta-content h2 { font-size: 1.6rem; }
    .final-trust-badges { flex-direction: column; gap: 10px; }
}

/* ========== Print Styles ========== */
@media print {
    .header, .announcement-bar, .floating-cta, .hero-bg-effects { display: none; }
    body { background: white; color: black; }
    a { color: black; text-decoration: underline; }
}
