/* =========================================
   DRAGONMONEY CASINO - Main Stylesheet
   ========================================= */

/* CSS Variables */
:root {
    --bg-primary: #0a0a1a;
    --bg-secondary: #12122a;
    --bg-card: #1a1a35;
    --color-gold: #ffd700;
    --color-orange: #ff6b00;
    --color-red: #cc0000;
    --color-text: #ffffff;
    --color-text-muted: #aaaacc;
    --border-radius: 12px;
    --transition: 0.3s ease;
    --shadow-gold: 0 0 20px rgba(255, 215, 0, 0.3);
    --shadow-orange: 0 0 20px rgba(255, 107, 0, 0.4);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--color-text);
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-orange);
}

/* =========================================
   TYPOGRAPHY
   ========================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

a {
    color: var(--color-gold);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover {
    color: var(--color-orange);
}

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7); }
    50% { box-shadow: 0 0 0 12px rgba(255, 107, 0, 0); }
}

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

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

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

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

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

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 10px var(--color-gold), 0 0 20px var(--color-gold); }
    50% { box-shadow: 0 0 20px var(--color-gold), 0 0 40px var(--color-gold), 0 0 60px var(--color-gold); }
}

@keyframes borderGlow {
    0%, 100% { border-color: var(--color-gold); }
    50% { border-color: var(--color-orange); }
}

/* =========================================
   LAYOUT UTILITIES
   ========================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: var(--color-gold);
    animation: fadeInUp 0.6s ease both;
}

.section-title span {
    color: var(--color-orange);
}

/* =========================================
   HEADER
   ========================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 26, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    padding: 0 20px;
}

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

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

.logo-emoji {
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--color-gold), var(--color-orange), var(--color-gold));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

/* Navigation */
.site-nav {
    display: flex;
    align-items: center;
    gap: 5px;
}

.site-nav a {
    color: var(--color-text);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all var(--transition);
    white-space: nowrap;
}

.site-nav a:hover {
    color: var(--color-gold);
    background: rgba(255, 215, 0, 0.1);
}

/* CTA Button */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-orange), #ff9500);
    color: #fff;
    animation: pulse 2s infinite;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
    color: #fff;
}

.btn-secondary {
    background: transparent;
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
}

.btn-secondary:hover {
    background: var(--color-gold);
    color: var(--bg-primary);
    transform: translateY(-2px);
    color: #0a0a1a;
}

.btn-gold {
    background: linear-gradient(135deg, var(--color-gold), #ffb800);
    color: var(--bg-primary);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    color: var(--bg-primary);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

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

/* Hamburger Menu */
.hamburger-toggle {
    display: none;
}

.hamburger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}

.hamburger-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--color-gold);
    border-radius: 3px;
    transition: all var(--transition);
}

/* Mobile Nav Overlay */
.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 26, 0.98);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    backdrop-filter: blur(10px);
}

.hamburger-toggle:checked ~ .mobile-nav {
    display: flex;
}

.mobile-nav a {
    color: var(--color-text);
    font-size: 1.3rem;
    font-weight: 600;
    padding: 12px 30px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    width: 100%;
    text-align: center;
    transition: color var(--transition);
}

.mobile-nav a:hover {
    color: var(--color-gold);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a1a, #1a0a2e, #0d1a3a, #0a0a1a);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(106, 13, 173, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(255, 107, 0, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

/* Particle effects */
.hero::after {
    content: '✦ ✦ ✦ ✦ ✦ ✦ ✦ ✦ ✦ ✦ ✦ ✦';
    position: absolute;
    top: 0; left: 0; right: 0;
    font-size: 0.8rem;
    color: rgba(255, 215, 0, 0.2);
    letter-spacing: 80px;
    animation: particleFloat 15s linear infinite;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    margin-bottom: 20px;
    color: var(--color-text);
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    animation: fadeInUp 0.8s ease both;
}

.hero h1 span {
    background: linear-gradient(90deg, var(--color-gold), var(--color-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-text-muted);
    margin-bottom: 40px;
    animation: fadeInUp 0.8s 0.2s ease both;
}

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

.stats-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s 0.6s ease both;
}

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

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-gold);
    font-family: 'Montserrat', sans-serif;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* =========================================
   ADVANTAGES SECTION
   ========================================= */
.advantages {
    background: var(--bg-secondary);
    padding: 80px 0;
}

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

.advantage-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all var(--transition);
    animation: fadeInUp 0.6s ease both;
}

.advantage-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-gold);
}

.advantage-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 16px;
}

.advantage-card h3 {
    color: var(--color-gold);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.advantage-card p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* =========================================
   BONUSES SECTION
   ========================================= */
.bonuses {
    padding: 80px 0;
    background: var(--bg-primary);
}

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

.bonus-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 32px;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    background-clip: padding-box;
    transition: all var(--transition);
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: var(--border-radius);
    padding: 1px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-orange), var(--color-gold));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
}

.bonus-badge {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--color-orange), #ff9500);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.bonus-card h3 {
    font-size: 1.4rem;
    color: var(--color-gold);
    margin-bottom: 12px;
}

.bonus-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

.bonus-details {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
    list-style: none;
}

.bonus-details li {
    padding: 4px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bonus-details li::before {
    content: '✓ ';
    color: var(--color-gold);
}

/* =========================================
   SLOTS SECTION
   ========================================= */
.slots {
    background: var(--bg-secondary);
    padding: 80px 0;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.slot-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all var(--transition);
    animation: fadeInUp 0.5s ease both;
    position: relative;
}

.slot-card:hover {
    transform: scale(1.04);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.slot-card-bg {
    padding: 30px 15px 20px;
    text-align: center;
    position: relative;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.slot-emoji {
    font-size: 4.5rem;
    display: block;
    margin-bottom: 10px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5));
    line-height: 1;
}

.slot-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 4px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8);
    font-family: 'Montserrat', sans-serif;
}

.slot-provider {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 8px;
}

.rtp-badge {
    display: inline-block;
    padding: 2px 10px;
    background: rgba(0,0,0,0.5);
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--color-gold);
    border: 1px solid rgba(255, 215, 0, 0.4);
    margin-bottom: 12px;
}

.slot-buttons {
    display: flex;
    gap: 6px;
    width: 100%;
    padding: 0 10px 15px;
    justify-content: center;
}

.slot-buttons .btn {
    flex: 1;
    padding: 7px 10px;
    font-size: 0.8rem;
    text-align: center;
    justify-content: center;
}

.btn-play {
    background: linear-gradient(135deg, var(--color-orange), #ff9500);
    color: #fff;
}

.btn-demo {
    background: transparent;
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
}

.btn-demo:hover {
    background: rgba(255, 215, 0, 0.1);
    color: var(--color-gold);
}

.slots-more {
    text-align: center;
    margin-top: 20px;
}

.slots-more a {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-gold);
    padding: 14px 32px;
    border: 2px solid var(--color-gold);
    border-radius: var(--border-radius);
    display: inline-block;
    transition: all var(--transition);
}

.slots-more a:hover {
    background: var(--color-gold);
    color: var(--bg-primary);
}

/* =========================================
   LIVE CASINO SECTION
   ========================================= */
.live-casino {
    background: var(--bg-primary);
    padding: 80px 0;
}

.live-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.live-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 30px 20px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.15);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.live-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,215,0,0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition);
}

.live-card:hover::after {
    opacity: 1;
}

.live-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-gold);
}

.live-icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 15px;
}

.live-card h3 {
    color: var(--color-gold);
    margin-bottom: 8px;
}

.live-card p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.live-available {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(0, 200, 100, 0.2);
    color: #00c864;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-top: 10px;
    border: 1px solid rgba(0, 200, 100, 0.4);
}

.live-description {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

/* =========================================
   MOBILE APP SECTION
   ========================================= */
.mobile-app {
    background: var(--bg-secondary);
    padding: 80px 0;
}

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

/* Phone Mockup */
.phone-mockup {
    display: flex;
    justify-content: center;
}

.phone-frame {
    width: 240px;
    height: 480px;
    background: linear-gradient(180deg, #1a1a35, #0a0a1a);
    border-radius: 36px;
    border: 4px solid var(--color-gold);
    position: relative;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.3), inset 0 0 20px rgba(0,0,0,0.5);
    overflow: hidden;
    animation: float 4s ease-in-out infinite;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 20px;
    background: var(--color-gold);
    border-radius: 0 0 12px 12px;
}

.phone-screen {
    position: absolute;
    top: 25px;
    left: 6px;
    right: 6px;
    bottom: 10px;
    background: linear-gradient(180deg, #0d0d2a, #1a0a2e);
    border-radius: 30px;
    padding: 15px 10px;
    overflow: hidden;
}

.phone-header {
    text-align: center;
    margin-bottom: 10px;
}

.phone-logo {
    font-size: 1.2rem;
    color: var(--color-gold);
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.phone-balance {
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    padding: 8px;
    text-align: center;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.phone-balance-label {
    font-size: 0.6rem;
    color: var(--color-text-muted);
}

.phone-balance-amount {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-gold);
    font-family: 'Montserrat', sans-serif;
}

.phone-games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}

.phone-game-thumb {
    aspect-ratio: 1;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.phone-cta {
    position: absolute;
    bottom: 15px;
    left: 10px;
    right: 10px;
    background: linear-gradient(135deg, var(--color-orange), #ff9500);
    border-radius: 8px;
    padding: 8px;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

/* App advantages */
.app-advantages {
    list-style: none;
    margin-bottom: 30px;
}

.app-advantages li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-text-muted);
}

.app-advantages li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(0, 200, 100, 0.2);
    color: #00c864;
    border-radius: 50%;
    font-size: 0.85rem;
    flex-shrink: 0;
    border: 1px solid rgba(0, 200, 100, 0.4);
}

.download-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--bg-card);
    border: 2px solid var(--color-gold);
    border-radius: var(--border-radius);
    color: var(--color-text);
    font-weight: 600;
    transition: all var(--transition);
}

.download-btn:hover {
    background: var(--color-gold);
    color: var(--bg-primary);
    transform: translateY(-2px);
}

.download-btn-icon {
    font-size: 1.5rem;
}

.browser-note {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-style: italic;
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about {
    background: var(--bg-primary);
    padding: 80px 0;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content p {
    color: var(--color-text-muted);
    margin-bottom: 20px;
    line-height: 1.9;
    font-size: 0.97rem;
}

.about-content h3 {
    color: var(--color-gold);
    margin-top: 40px;
    margin-bottom: 15px;
    padding-left: 16px;
    border-left: 4px solid var(--color-orange);
}

/* =========================================
   REVIEWS SECTION
   ========================================= */
.reviews {
    background: var(--bg-secondary);
    padding: 80px 0;
}

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

.review-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 28px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all var(--transition);
    animation: fadeInUp 0.5s ease both;
}

.review-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-4px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    flex-shrink: 0;
    font-family: 'Montserrat', sans-serif;
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 2px;
}

.reviewer-city {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.review-stars {
    color: var(--color-gold);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.review-date {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 10px;
}

.review-text {
    color: var(--color-text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* =========================================
   TAG CLOUD SECTION
   ========================================= */
.tag-cloud-section {
    background: var(--bg-primary);
    padding: 60px 0;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.tag-link {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 25px;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    transition: all var(--transition);
    background: var(--bg-card);
}

.tag-link:hover {
    background: var(--color-gold);
    color: var(--bg-primary);
    border-color: var(--color-gold);
    transform: scale(1.05);
}

.tag-link.tag-lg {
    font-size: 1.1rem;
    padding: 10px 22px;
    color: var(--color-gold);
    border-color: var(--color-gold);
}

.tag-link.tag-md {
    font-size: 1rem;
    color: rgba(255, 215, 0, 0.8);
    border-color: rgba(255, 215, 0, 0.5);
}

.tag-link.tag-sm {
    font-size: 0.8rem;
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    padding: 60px 0 30px;
}

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

.footer-brand .logo {
    margin-bottom: 15px;
    display: inline-flex;
}

.footer-desc {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-col h4 {
    color: var(--color-gold);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-col ul li a:hover {
    color: var(--color-gold);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-contact-item a {
    color: var(--color-text-muted);
}

.footer-contact-item a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
}

.footer-payments {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    align-items: center;
}

.payment-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-orange);
    color: #fff;
    font-weight: 800;
    font-size: 0.85rem;
    border-radius: 50%;
    flex-shrink: 0;
    font-family: 'Montserrat', sans-serif;
}

.legal-text {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* =========================================
   BONUS PAGE STYLES
   ========================================= */
.page-hero {
    background: linear-gradient(135deg, #0a0a1a, #1a0a2e, #0d1a3a);
    padding: 80px 0 60px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.page-hero h1 {
    margin-bottom: 16px;
    color: var(--color-gold);
}

.page-hero p {
    color: var(--color-text-muted);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* Bonus Table */
.bonus-table-wrapper {
    overflow-x: auto;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 215, 0, 0.2);
    margin-bottom: 40px;
}

.bonus-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
}

.bonus-table th {
    background: linear-gradient(135deg, #1a1a35, #12122a);
    color: var(--color-gold);
    padding: 14px 16px;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    white-space: nowrap;
}

.bonus-table td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.bonus-table tr:hover td {
    background: rgba(255, 215, 0, 0.03);
}

.bonus-table td:first-child {
    color: var(--color-text);
    font-weight: 600;
}

/* Steps */
.steps {
    counter-reset: step;
    list-style: none;
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.step-num {
    counter-increment: step;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-orange), #ff9500);
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: 'Montserrat', sans-serif;
}

.step-content h4 {
    color: var(--color-gold);
    margin-bottom: 5px;
}

.step-content p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* Promo code */
.promo-code-box {
    background: var(--bg-card);
    border: 2px dashed var(--color-gold);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    margin-bottom: 30px;
}

.promo-code {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-gold);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 6px;
    margin: 12px 0;
    animation: glowPulse 2s ease infinite;
}

/* Calendar */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 20px;
    border: 1px solid rgba(255, 215, 0, 0.15);
}

.cal-header {
    text-align: center;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--color-gold);
    padding: 8px 4px;
    font-family: 'Montserrat', sans-serif;
}

.cal-day {
    text-align: center;
    padding: 8px 4px;
    border-radius: 6px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.cal-day.bonus-day {
    background: rgba(255, 107, 0, 0.2);
    color: var(--color-orange);
    font-weight: 700;
    border: 1px solid rgba(255, 107, 0, 0.4);
}

/* FAQ */
.faq-list {
    list-style: none;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    margin-bottom: 12px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 20px 24px;
    font-weight: 700;
    color: var(--color-gold);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
}

.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--color-orange);
    flex-shrink: 0;
}

.faq-answer {
    padding: 0 24px 20px;
    color: var(--color-text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* =========================================
   SLOTS PAGE STYLES
   ========================================= */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    justify-content: center;
}

.filter-btn {
    padding: 10px 20px;
    border-radius: 25px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    background: var(--bg-card);
    color: var(--color-text-muted);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition);
    font-family: 'Roboto', sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-gold);
    color: var(--bg-primary);
    border-color: var(--color-gold);
    font-weight: 700;
}

/* Pagination */
.pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--color-text-muted);
    background: var(--bg-card);
    transition: all var(--transition);
    font-size: 0.9rem;
}

.page-link:hover,
.page-link.active {
    background: var(--color-gold);
    color: var(--bg-primary);
    border-color: var(--color-gold);
    font-weight: 700;
}

.page-link.page-next {
    width: auto;
    padding: 0 16px;
}

/* Provider sidebar */
.slots-page-layout {
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 40px;
    align-items: start;
}

.provider-sidebar {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 20px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    position: sticky;
    top: 90px;
}

.provider-sidebar h3 {
    color: var(--color-gold);
    margin-bottom: 15px;
    font-size: 1rem;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.provider-list {
    list-style: none;
}

.provider-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.provider-list li a {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.provider-list li a:hover {
    color: var(--color-gold);
}

.provider-count {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 8px;
    border-radius: 10px;
}

/* =========================================
   MOBILE APP PAGE STYLES
   ========================================= */
.qr-section {
    text-align: center;
    padding: 60px 0;
}

.qr-code-box {
    display: inline-block;
    width: 180px;
    height: 180px;
    border: 4px solid var(--color-gold);
    border-radius: 16px;
    background: #fff;
    position: relative;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.qr-pattern {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    padding: 10px;
}

.qr-pixel {
    width: 18px;
    height: 18px;
    border-radius: 2px;
}

.qr-code-text {
    font-size: 0.7rem;
    color: #333;
    font-weight: 700;
    text-align: center;
    padding: 0 8px;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.screenshot-mockup {
    background: var(--bg-card);
    border-radius: 16px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    aspect-ratio: 9/16;
    max-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    text-align: center;
    transition: all var(--transition);
}

.screenshot-mockup:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
}

.screenshot-icon {
    font-size: 3rem;
}

.screenshot-label {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.system-req {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 30px 0;
}

.sys-req-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 24px;
    border: 1px solid rgba(255, 215, 0, 0.15);
}

.sys-req-card h4 {
    color: var(--color-gold);
    margin-bottom: 12px;
    font-size: 1rem;
}

.sys-req-card ul {
    list-style: none;
}

.sys-req-card ul li {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sys-req-card ul li::before {
    content: '• ';
    color: var(--color-gold);
}

/* =========================================
   RESPONSIVE - 768px
   ========================================= */
@media (max-width: 768px) {
    .site-nav {
        display: none;
    }

    .hamburger-btn {
        display: flex;
    }

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

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

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

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

    .mobile-app-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .footer-brand {
        grid-column: 1 / -1;
    }

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

    .system-req {
        grid-template-columns: 1fr;
    }

    .slots-page-layout {
        grid-template-columns: 1fr;
    }

    .provider-sidebar {
        position: static;
    }

    .calendar-grid {
        gap: 2px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .stats-bar {
        gap: 20px;
    }

    .stat-number {
        font-size: 1.4rem;
    }
}

/* =========================================
   RESPONSIVE - 480px
   ========================================= */
@media (max-width: 480px) {
    .advantages-grid {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .header-inner {
        height: 60px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .btn-lg {
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    .stats-bar {
        flex-direction: column;
        gap: 15px;
    }

    .bonus-card {
        padding: 20px;
    }

    .bonus-amount {
        font-size: 1.6rem;
    }

    .footer-payments {
        justify-content: center;
    }

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

/* =========================================
   UTILITY CLASSES
   ========================================= */
.text-gold { color: var(--color-gold); }
.text-orange { color: var(--color-orange); }
.text-muted { color: var(--color-text-muted); }
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }

.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.badge-gold {
    background: rgba(255, 215, 0, 0.15);
    color: var(--color-gold);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.highlight-box {
    background: var(--bg-card);
    border-left: 4px solid var(--color-gold);
    padding: 20px 24px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    margin: 20px 0;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

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