/* ===================================================
   CasinoScope — Style Sheet
   =================================================== */

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #FFD700;
    --gold-dark: #C5A200;
    --accent: #FF6B35;
    --accent2: #E91E63;
    --bg-dark: #0A0E1A;
    --bg-card: #121829;
    --bg-card2: #1A2240;
    --text: #E0E0E0;
    --text-muted: #8892B0;
    --green: #00E676;
    --red: #FF1744;
    --purple: #7C4DFF;
    --blue: #448AFF;
    --gradient1: linear-gradient(135deg, #FFD700, #FF6B35);
    --gradient2: linear-gradient(135deg, #7C4DFF, #E91E63);
    --gradient3: linear-gradient(135deg, #00E676, #448AFF);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===== ANIMATED BACKGROUND PARTICLES ===== */
.bg-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bg-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    animation: floatUp linear infinite;
    opacity: 0;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-10vh) scale(1);
        opacity: 0;
    }
}

.bg-particles span:nth-child(1)  { left: 5%;  animation-duration: 8s;  animation-delay: 0s; }
.bg-particles span:nth-child(2)  { left: 15%; animation-duration: 12s; animation-delay: 1s;   width: 3px; height: 3px; }
.bg-particles span:nth-child(3)  { left: 25%; animation-duration: 10s; animation-delay: 2s; }
.bg-particles span:nth-child(4)  { left: 35%; animation-duration: 14s; animation-delay: 0.5s; width: 5px; height: 5px; }
.bg-particles span:nth-child(5)  { left: 45%; animation-duration: 9s;  animation-delay: 3s; }
.bg-particles span:nth-child(6)  { left: 55%; animation-duration: 11s; animation-delay: 1.5s; width: 3px; height: 3px; }
.bg-particles span:nth-child(7)  { left: 65%; animation-duration: 13s; animation-delay: 4s; }
.bg-particles span:nth-child(8)  { left: 75%; animation-duration: 7s;  animation-delay: 2.5s; width: 6px; height: 6px; }
.bg-particles span:nth-child(9)  { left: 85%; animation-duration: 15s; animation-delay: 0.8s; }
.bg-particles span:nth-child(10) { left: 95%; animation-duration: 10s; animation-delay: 3.5s; width: 4px; height: 4px; }

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.4s ease;
    background: transparent;
}

.header.scrolled {
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    padding: 10px 0;
}

.header-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50%      { transform: rotate(5deg) scale(1.05); }
}

.logo-text span {
    color: var(--gold);
}

/* Navigation */
.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: all 0.3s ease;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient1);
    transition: width 0.3s ease;
}

.nav a:hover {
    color: var(--gold);
}

.nav a:hover::after {
    width: 100%;
}

.nav-btn {
    background: var(--gradient1);
    color: #000 !important;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.nav-btn::after {
    display: none !important;
}

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.burger span {
    width: 28px;
    height: 3px;
    background: var(--gold);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 30px 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(124, 77, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(255, 215, 0, 0.08) 0%, transparent 40%);
    animation: bgMove 20s ease-in-out infinite;
}

@keyframes bgMove {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33%      { transform: translate(2%, -2%) rotate(1deg); }
    66%      { transform: translate(-1%, 1%) rotate(-1deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.3; }
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero h1 .highlight {
    background: var(--gradient1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h1 .highlight2 {
    background: var(--gradient2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 40px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

/* Buttons */
.btn {
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: var(--gradient1);
    color: #000;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 70px;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 5px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* ===== SECTION COMMON ===== */
.section {
    padding: 100px 30px;
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: var(--gradient2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== TOP CASINOS TABLE ===== */
.casino-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.casino-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 30px;
    display: grid;
    grid-template-columns: auto 1fr auto auto auto;
    align-items: center;
    gap: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.casino-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.casino-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.casino-card:hover::before {
    opacity: 1;
}

/* Rank */
.casino-rank {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
}

.casino-card:nth-child(1) .casino-rank {
    background: linear-gradient(135deg, #FFD700, #FFA000);
    color: #000;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.casino-card:nth-child(2) .casino-rank {
    background: linear-gradient(135deg, #B0BEC5, #78909C);
    color: #000;
}

.casino-card:nth-child(3) .casino-rank {
    background: linear-gradient(135deg, #FF8A65, #D84315);
    color: #000;
}

.casino-card:nth-child(n+4) .casino-rank {
    background: var(--bg-card2);
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Casino Info */
.casino-info {
    position: relative;
    z-index: 1;
}

.casino-name {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.casino-verified {
    background: var(--green);
    color: #000;
    font-size: 0.65rem;
    padding: 3px 8px;
    border-radius: 20px;
    font-weight: 700;
}

.casino-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.casino-tag {
    background: rgba(124, 77, 255, 0.15);
    color: var(--purple);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Bonus */
.casino-bonus {
    text-align: center;
    position: relative;
    z-index: 1;
}

.casino-bonus-amount {
    font-size: 1.5rem;
    font-weight: 900;
    background: var(--gradient1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.casino-bonus-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Rating */
.casino-rating {
    text-align: center;
    position: relative;
    z-index: 1;
}

.rating-circle {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 900;
    position: relative;
}

.rating-circle svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.rating-circle circle {
    fill: none;
    stroke-width: 3;
}

.rating-circle .bg {
    stroke: rgba(255, 255, 255, 0.1);
}

.rating-circle .fill {
    stroke: var(--gold);
    stroke-dasharray: 188;
    stroke-linecap: round;
    transition: stroke-dashoffset 1.5s ease;
}

.rating-stars {
    display: flex;
    gap: 2px;
    margin-top: 5px;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--gold);
}

/* Action */
.casino-action {
    position: relative;
    z-index: 1;
}

.btn-play {
    background: var(--gradient1);
    color: #000;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-play:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.btn-review {
    display: block;
    text-align: center;
    margin-top: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: color 0.3s;
}

.btn-review:hover {
    color: var(--gold);
}

/* ===== FEATURES ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.feature-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.15);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::after {
    transform: scaleX(1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
}

.feature-card:nth-child(1) .feature-icon { background: rgba(255, 215, 0, 0.1); }
.feature-card:nth-child(2) .feature-icon { background: rgba(124, 77, 255, 0.1); }
.feature-card:nth-child(3) .feature-icon { background: rgba(0, 230, 118, 0.1); }
.feature-card:nth-child(4) .feature-icon { background: rgba(255, 107, 53, 0.1); }

.feature-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.feature-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== GAME CATEGORIES ===== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.category-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
}

.category-card:nth-child(1)::before { background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), transparent); }
.category-card:nth-child(2)::before { background: linear-gradient(135deg, rgba(124, 77, 255, 0.1), transparent); }
.category-card:nth-child(3)::before { background: linear-gradient(135deg, rgba(233, 30, 99, 0.1), transparent); }
.category-card:nth-child(4)::before { background: linear-gradient(135deg, rgba(0, 230, 118, 0.1), transparent); }
.category-card:nth-child(5)::before { background: linear-gradient(135deg, rgba(68, 138, 255, 0.1), transparent); }
.category-card:nth-child(6)::before { background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), transparent); }

.category-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 215, 0, 0.2);
}

.category-card:hover::before {
    opacity: 1;
}

.category-emoji {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.category-card:hover .category-emoji {
    transform: scale(1.2) rotate(5deg);
}

.category-name {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 5px;
    position: relative;
    z-index: 1;
}

.category-count {
    font-size: 0.85rem;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

/* ===== BONUS SECTION ===== */
.bonus-section {
    background: linear-gradient(180deg, rgba(124, 77, 255, 0.05) 0%, transparent 100%);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.bonus-card {
    background: var(--bg-card);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.bonus-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.15);
}

.bonus-card-header {
    padding: 30px 30px 20px;
    position: relative;
}

.bonus-card:nth-child(1) .bonus-card-header { background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(255, 107, 53, 0.08)); }
.bonus-card:nth-child(2) .bonus-card-header { background: linear-gradient(135deg, rgba(124, 77, 255, 0.08), rgba(233, 30, 99, 0.08)); }
.bonus-card:nth-child(3) .bonus-card-header { background: linear-gradient(135deg, rgba(0, 230, 118, 0.08), rgba(68, 138, 255, 0.08)); }

.bonus-type {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 10px;
}

.bonus-value {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.2;
}

.bonus-casino-name {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 8px;
}

.bonus-hot {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent2);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.05); }
}

.bonus-card-body {
    padding: 20px 30px 30px;
}

.bonus-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.bonus-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.bonus-feature .check {
    color: var(--green);
    font-weight: bold;
}

.bonus-btn {
    width: 100%;
    padding: 14px;
    border-radius: 14px;
    border: none;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bonus-card:nth-child(1) .bonus-btn { background: var(--gradient1); color: #000; }
.bonus-card:nth-child(2) .bonus-btn { background: var(--gradient2); color: #fff; }
.bonus-card:nth-child(3) .bonus-btn { background: var(--gradient3); color: #000; }

.bonus-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ===== REVIEWS ===== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.review-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    position: relative;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.15);
}

.review-quote {
    font-size: 3rem;
    background: var(--gradient1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 15px;
}

.review-text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
}

.review-card:nth-child(1) .review-avatar { background: rgba(255, 215, 0, 0.15); color: var(--gold); }
.review-card:nth-child(2) .review-avatar { background: rgba(124, 77, 255, 0.15); color: var(--purple); }
.review-card:nth-child(3) .review-avatar { background: rgba(0, 230, 118, 0.15); color: var(--green); }

.review-name {
    font-weight: 700;
    font-size: 1rem;
}

.review-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.review-rating {
    position: absolute;
    top: 25px;
    right: 25px;
    color: var(--gold);
    font-size: 0.85rem;
}

/* ===== HOW IT WORKS / STEPS ===== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 15%;
    width: 70%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid rgba(255, 215, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    margin: 0 auto 25px;
    background: var(--gradient1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.step-title {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.step-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 215, 0, 0.15);
}

.faq-question {
    padding: 22px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.05rem;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-toggle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--bg-card2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    background: var(--gradient1);
    color: #000;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer-inner {
    padding: 0 30px 22px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ===== CTA ===== */
.cta-section {
    padding: 100px 30px;
    position: relative;
    z-index: 1;
}

.cta-box {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.05) 0%, transparent 60%);
}

.cta-box h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.cta-highlight {
    background: var(--gradient1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-box p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.cta-box .btn {
    position: relative;
    z-index: 1;
}

/* ===== FOOTER ===== */
.footer {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 30px 30px;
    position: relative;
    z-index: 1;
}

.footer-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 15px;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-title {
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--gold);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-social {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--bg-card2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1.1rem;
}

.footer-social:hover {
    background: var(--gradient1);
    transform: translateY(-3px);
}

.age-warning {
    max-width: 1300px;
    margin: 20px auto 0;
    padding: 20px;
    background: rgba(255, 23, 68, 0.08);
    border: 1px solid rgba(255, 23, 68, 0.2);
    border-radius: 12px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.7;
}

.age-badge {
    display: inline-block;
    background: var(--red);
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    line-height: 35px;
    font-weight: 900;
    font-size: 0.9rem;
    margin-right: 10px;
    vertical-align: middle;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient1);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-3px) scale(1.1);
}

/* ===== GLOWING LINE SEPARATOR ===== */
.glow-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), var(--gold), rgba(255, 215, 0, 0.3), transparent);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== RIPPLE (injected via JS) ===== */
@keyframes rippleAnim {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .casino-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .casino-name {
        justify-content: center;
    }

    .casino-tags {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .burger {
        display: flex;
    }

    .nav.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 14, 26, 0.98);
        backdrop-filter: blur(20px);
        justify-content: center;
        align-items: center;
        gap: 25px;
        z-index: 1000;
    }

    .nav.open a {
        font-size: 1.3rem;
    }

    .hero-stats {
        gap: 30px;
        flex-wrap: wrap;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .steps-grid::before {
        display: none;
    }

    .bonus-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 40px 25px;
    }

    .cta-box h2 {
        font-size: 1.8rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}