/* ============================================
   Casino Registration Guide - Premium Theme
   Fonts: Playfair Display + Nunito
   Colors: Deep burgundy + Gold
============================================ */

:root {
    /* Colors */
    --bg-primary: #1a0a0a;
    --bg-secondary: #2d1515;
    --bg-tertiary: #3d1f1f;
    --bg-card: #2a1212;
    
    --gold-light: #f4d03f;
    --gold: #c9a227;
    --gold-dark: #9a7b1a;
    
    --burgundy: #722f37;
    --burgundy-light: #8b3a44;
    --burgundy-dark: #5a252c;
    
    --text-primary: #f5f0e8;
    --text-secondary: #c4b8a8;
    --text-muted: #8a7e70;
    
    --accent: var(--gold);
    --accent-light: var(--gold-light);
    
    --success: #4ade80;
    --warning: #fbbf24;
    --error: #ef4444;
    
    /* Shadows */
    --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-gold: 0 4px 20px rgba(201, 162, 39, 0.3);
    --shadow-inset: inset 0 2px 10px rgba(0, 0, 0, 0.3);
    
    /* Neomorphism */
    --neo-light: rgba(255, 255, 255, 0.05);
    --neo-dark: rgba(0, 0, 0, 0.4);
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Nunito', -apple-system, sans-serif;
    
    /* Spacing */
    --section-gap: clamp(60px, 10vw, 100px);
    --container-padding: clamp(16px, 4vw, 32px);
    
    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html {
        scroll-behavior: auto;
    }
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.25rem); }

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Accent text */
.accent {
    color: var(--gold);
}

/* ============================================
   Buttons
============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    color: var(--bg-primary);
    box-shadow: var(--shadow-gold);
    position: relative;
    overflow: hidden;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: var(--transition-slow);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(201, 162, 39, 0.5);
}

.btn-gold:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--burgundy);
    color: var(--text-primary);
    border: 1px solid var(--burgundy-light);
}

.btn-primary:hover {
    background: var(--burgundy-light);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--bg-primary);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-xl {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* ============================================
   Header
============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 162, 39, 0.1);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
}

.logo-text .accent {
    color: var(--gold);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 20px;
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
}

.burger span {
    width: 100%;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: var(--transition);
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   Hero Section
============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, var(--burgundy-dark) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(201, 162, 39, 0.1) 0%, transparent 40%);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        transparent 0%, 
        var(--bg-primary) 100%
    );
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--bg-card);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.badge-icon {
    font-size: 1.1rem;
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--text-primary), var(--gold-light), var(--text-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.feature-icon {
    font-size: 1.2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

/* ============================================
   Section Header
============================================ */

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--bg-card);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-title {
    margin-bottom: 16px;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* ============================================
   Rating Section
============================================ */

.rating {
    padding: var(--section-gap) 0;
    background: var(--bg-secondary);
}

.rating-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.casino-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.casino-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--burgundy);
}

.casino-card--gold::before {
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.casino-card--gold {
    border-color: rgba(201, 162, 39, 0.3);
}

.casino-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.casino-rank {
    position: absolute;
    top: 20px;
    right: 20px;
    text-align: center;
}

.rank-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.rank-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.casino-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.casino-logo {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
    border-radius: var(--radius-md);
}

.casino-logo--cat {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
}

.casino-logo--r7 {
    background: linear-gradient(135deg, #059669, #047857);
}

.casino-logo-text {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 800;
    color: white;
}

.casino-name {
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.casino-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    color: var(--gold);
    font-size: 0.9rem;
}

.rating-value {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.casino-bonus {
    padding: 16px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    text-align: center;
    margin-bottom: 20px;
}

.bonus-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.bonus-value {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
}

.casino-features {
    margin-bottom: 20px;
}

.casino-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.casino-features li:last-child {
    border-bottom: none;
}

/* ============================================
   Registration Steps
============================================ */

.registration {
    padding: var(--section-gap) 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.step-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    border-color: rgba(201, 162, 39, 0.3);
    transform: translateY(-4px);
}

.step-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--burgundy);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.step-card--final .step-number {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-primary);
}

.step-content h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

/* ============================================
   Methods Section
============================================ */

.methods {
    padding: var(--section-gap) 0;
    background: var(--bg-secondary);
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.method-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    position: relative;
}

.method-card--featured {
    border-color: rgba(201, 162, 39, 0.3);
    box-shadow: var(--shadow-gold);
}

.method-badge {
    position: absolute;
    top: -10px;
    right: 24px;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-primary);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
}

.method-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.method-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.method-card p {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.method-pros {
    margin-bottom: 20px;
}

.method-pros li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--success);
}

.method-time {
    display: inline-block;
    padding: 8px 16px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================================
   SEO Article
============================================ */

.article {
    padding: var(--section-gap) 0;
}

.seo-article {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 48px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.article-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.article-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--burgundy);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.article-header h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
}

.article-content .lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-primary);
}

.article-content h3 {
    margin: 40px 0 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.article-content ul {
    margin-bottom: 24px;
}

.article-content ul li {
    padding: 8px 0 8px 24px;
    position: relative;
    color: var(--text-secondary);
}

.article-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.article-note, .article-tip {
    display: flex;
    gap: 16px;
    padding: 20px 24px;
    border-radius: var(--radius-md);
    margin: 24px 0;
}

.article-note {
    background: rgba(201, 162, 39, 0.1);
    border-left: 4px solid var(--gold);
}

.article-tip {
    background: rgba(239, 68, 68, 0.1);
    border-left: 4px solid var(--error);
}

.note-icon, .tip-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.article-note p, .article-tip p {
    margin: 0;
    font-size: 0.95rem;
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.data-item {
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    padding: 20px;
}

.data-item h4 {
    font-size: 1rem;
    margin-bottom: 12px;
}

.data-item ul {
    margin: 0;
}

.data-item li {
    padding: 4px 0 4px 16px !important;
    font-size: 0.9rem;
}

.article-cta {
    text-align: center;
    padding: 40px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-lg);
    margin-top: 40px;
}

.article-cta h4 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.article-cta p {
    margin-bottom: 20px;
}

/* ============================================
   Slots Section
============================================ */

.slots {
    padding: var(--section-gap) 0;
    background: var(--bg-secondary);
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.slot-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.slot-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.slot-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.slot-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.slot-card:hover .slot-image img {
    transform: scale(1.1);
}

.slot-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 12px;
    background: var(--error);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
    z-index: 2;
}

.slot-badge--top {
    background: var(--gold);
    color: var(--bg-primary);
}

.slot-badge--new {
    background: var(--success);
}

.slot-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 10, 10, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: var(--transition);
}

.slot-card:hover .slot-overlay {
    opacity: 1;
}

.slot-info {
    padding: 16px;
}

.slot-info h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.slot-provider {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.slot-rtp {
    font-size: 0.8rem;
    color: var(--gold);
}

.slots-cta {
    text-align: center;
}

/* ============================================
   Bonuses Section
============================================ */

.bonuses {
    padding: var(--section-gap) 0;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.bonus-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.bonus-card:hover {
    transform: translateY(-8px);
}

.bonus-card--featured {
    border-color: rgba(201, 162, 39, 0.3);
    grid-row: span 2;
}

.bonus-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-primary);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
}

.bonus-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.bonus-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.bonus-value {
    margin-bottom: 16px;
}

.value-big {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.value-sub {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.bonus-desc {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.bonus-terms {
    margin-bottom: 24px;
    text-align: left;
}

.bonus-terms li {
    padding: 6px 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.bonus-terms li:last-child {
    border-bottom: none;
}

/* ============================================
   Reviews Section
============================================ */

.reviews {
    padding: var(--section-gap) 0;
    background: var(--bg-secondary);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--burgundy);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.review-author {
    flex: 1;
}

.author-name {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
}

.review-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.review-rating {
    color: var(--gold);
}

.review-text {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.review-casino {
    display: inline-block;
    padding: 4px 12px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================
   Payments Section
============================================ */

.payments {
    padding: var(--section-gap) 0;
}

.payments-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.payment-block {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.payment-block h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.payment-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.payment-list li:last-child {
    border-bottom: none;
}

.payment-name {
    font-weight: 500;
    color: var(--text-primary);
}

.payment-method {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ============================================
   About Section
============================================ */

.about {
    padding: var(--section-gap) 0;
    background: var(--bg-secondary);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 48px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-content .section-title {
    text-align: left;
}

.about-content p {
    margin-bottom: 16px;
}

.about-stats {
    display: flex;
    gap: 32px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about-stats .stat-item {
    text-align: center;
}

.about-stats .stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
}

.about-stats .stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.about-badges {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    color: var(--text-primary);
}

.badge-item .badge-icon {
    font-size: 1.5rem;
}

/* ============================================
   FAQ Section
============================================ */

.faq {
    padding: var(--section-gap) 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--gold);
    transition: var(--transition);
}

.faq-icon::before {
    width: 12px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 2px;
    height: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item[open] .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

/* ============================================
   CTA Section
============================================ */

.cta {
    padding: var(--section-gap) 0;
    background: var(--bg-secondary);
}

.cta-wrapper {
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
    border-radius: var(--radius-xl);
    padding: 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 16px;
}

.cta-desc {
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.cta-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* ============================================
   Footer
============================================ */

.footer {
    background: var(--bg-primary);
    padding: 64px 0 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-disclaimer {
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
}

.age-badge {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--error);
    border-radius: 50%;
    font-weight: 700;
    font-size: 1rem;
    color: white;
    margin-bottom: 12px;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* ============================================
   Responsive
============================================ */

@media (max-width: 1200px) {
    .rating-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .rating-grid .casino-card:last-child {
        grid-column: span 2;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .bonuses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bonus-card--featured {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        background: var(--bg-secondary);
        padding: 32px;
        gap: 24px;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-cta {
        display: none;
    }
    
    .burger {
        display: flex;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
    }
    
    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .about-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .rating-grid {
        grid-template-columns: 1fr;
    }
    
    .rating-grid .casino-card:last-child {
        grid-column: span 1;
        max-width: none;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .data-grid {
        grid-template-columns: 1fr;
    }
    
    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bonuses-grid {
        grid-template-columns: 1fr;
    }
    
    .bonus-card--featured {
        grid-column: span 1;
    }
    
    .payments-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        flex-wrap: wrap;
        gap: 24px;
    }
    
    .cta-wrapper {
        padding: 40px 24px;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .seo-article {
        padding: 32px 20px;
    }
}

@media (max-width: 480px) {
    .slots-grid {
        grid-template-columns: 1fr;
    }
    
    .casino-rank {
        position: static;
        margin-bottom: 16px;
        text-align: left;
    }
}

/* ============================================
   Review Pages Additional Styles
============================================ */

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.breadcrumb a {
    color: var(--gold);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Review Badge */
.review-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    background: var(--bg-card);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 50px;
    margin-bottom: 20px;
}

.review-badge .stars {
    color: var(--gold);
    font-size: 1rem;
}

.review-badge .score {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
}

/* Hero Stats Inline */
.hero-stats-inline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin: 32px 0;
    padding: 24px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-stats-inline .stat {
    text-align: center;
}

.hero-stats-inline .stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.2;
}

.hero-stats-inline .stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Quick Info Section */
.quick-info {
    padding: 60px 0;
    background: var(--bg-secondary);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.info-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.info-card:hover {
    border-color: rgba(201, 162, 39, 0.3);
    transform: translateY(-4px);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.info-card h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.info-value {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 4px;
}

.info-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* Methods List in Article */
.methods-list {
    display: grid;
    gap: 16px;
    margin: 24px 0;
}

.method-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
}

.method-item .method-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.method-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.method-item p {
    font-size: 0.95rem;
    margin: 0;
}

/* Steps List */
.steps-list {
    counter-reset: step;
    margin: 24px 0;
    padding-left: 0;
}

.steps-list li {
    counter-increment: step;
    padding: 12px 0 12px 48px;
    position: relative;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.steps-list li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 12px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--burgundy);
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-primary);
}

/* Article CTA Inline */
.article-cta-inline {
    text-align: center;
    margin: 32px 0;
}

/* Bonus Table */
.bonus-table {
    margin: 24px 0;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.bonus-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 16px 20px;
    background: var(--bg-tertiary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bonus-row:nth-child(odd) {
    background: var(--bg-card);
}

.bonus-deposit {
    font-weight: 600;
    color: var(--text-primary);
}

.bonus-percent {
    color: var(--gold);
    font-weight: 600;
    text-align: center;
}

.bonus-max {
    color: var(--text-muted);
    text-align: right;
}

/* Providers List */
.providers-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 24px 0;
}

.provider {
    padding: 8px 16px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Pros Cons Grid */
.pros-cons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 24px 0;
}

.pros-block, .cons-block {
    padding: 24px;
    border-radius: var(--radius-md);
}

.pros-block {
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.3);
}

.cons-block {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.pros-block h4, .cons-block h4 {
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.pros-block ul li {
    color: var(--success);
}

.cons-block ul li {
    color: var(--error);
}

.pros-block ul li::before {
    color: var(--success);
}

.cons-block ul li::before {
    color: var(--error);
}

/* Responsive for Review Pages */
@media (max-width: 992px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pros-cons-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-stats-inline {
        gap: 24px;
        padding: 20px;
    }
    
    .hero-stats-inline .stat-value {
        font-size: 1.5rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .bonus-row {
        grid-template-columns: 1fr;
        gap: 8px;
        text-align: center;
    }
    
    .bonus-max {
        text-align: center;
    }
    
    .bonus-percent {
        text-align: center;
    }
}

