/* CSS Variables */
:root {
    --primary: #E31837;
    --primary-dark: #C41230;
    --primary-light: #FF4D6A;
    --secondary: #1A1A2E;
    --accent: #FFD700;
    --text: #1A1A2E;
    --text-light: #6B7280;
    --bg: #FFFFFF;
    --bg-alt: #F8F9FC;
    --bg-dark: #0F0F1A;
    --border: #E5E7EB;
    --success: #10B981;
    --warning: #F59E0B;
    --gradient: linear-gradient(135deg, #E31837 0%, #FF4D6A 100%);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --radius: 12px;
    --radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: 1.25rem; }

.highlight {
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 14px rgba(227, 24, 55, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 24, 55, 0.5);
}

.btn-secondary {
    background: var(--bg-alt);
    color: var(--text);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
}

.logo-icon {
    font-size: 1.75rem;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

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

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 160px 0 100px;
    background: linear-gradient(180deg, #FFF5F5 0%, #FFFFFF 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23E3183720' d='M44.5,-76.3C57.3,-69.1,67.2,-56.1,74.3,-41.9C81.4,-27.7,85.7,-12.2,84.3,2.5C82.9,17.2,75.8,31.1,66.5,43.2C57.2,55.3,45.7,65.6,32.4,72.6C19.1,79.6,4,83.3,-11.8,82.8C-27.6,82.3,-44.1,77.6,-56.4,68.1C-68.7,58.6,-76.8,44.3,-81.3,28.9C-85.8,13.5,-86.7,-3,-82.5,-17.8C-78.3,-32.6,-69,-45.7,-57,-55.4C-45,-65.1,-30.3,-71.4,-15.1,-74.9C0.1,-78.4,15.7,-79.1,31.7,-83.5C47.7,-87.9,64.1,-96,44.5,-76.3Z' transform='translate(100 100)'/%3E%3C/svg%3E") no-repeat center;
    background-size: cover;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(227, 24, 55, 0.1);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero h1 {
    margin-bottom: 24px;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-bottom: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

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

/* Trust Section */
.trust-section {
    padding: 32px 0;
    background: var(--secondary);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-weight: 500;
}

.badge-icon {
    font-size: 1.25rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

.section-header p {
    color: var(--text-light);
    margin-top: 12px;
}

/* Casinos Section */
.casinos-section {
    padding: 80px 0;
}

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

.casino-card {
    display: grid;
    grid-template-columns: 60px 100px 1fr 180px 200px;
    align-items: center;
    gap: 24px;
    padding: 24px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

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

.casino-card.featured {
    border: 2px solid var(--primary);
    background: linear-gradient(135deg, rgba(227, 24, 55, 0.02) 0%, rgba(255, 255, 255, 1) 100%);
}

.casino-rank {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.rank-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.rank-badge {
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    color: white;
    background: var(--accent);
    padding: 2px 8px;
    border-radius: 4px;
    white-space: nowrap;
}

.casino-logo {
    display: flex;
    justify-content: center;
}

.logo-placeholder {
    width: 80px;
    height: 80px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.casino-info h3 {
    margin-bottom: 8px;
}

.casino-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.stars {
    color: var(--accent);
    font-size: 1rem;
    letter-spacing: 2px;
}

.rating-text {
    font-size: 0.875rem;
    color: var(--text-light);
}

.casino-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    font-size: 0.875rem;
    color: var(--text-light);
}

.casino-bonus {
    text-align: center;
    padding: 16px;
    background: var(--bg-alt);
    border-radius: var(--radius);
}

.bonus-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 4px;
}

.bonus-amount {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--success);
}

.bonus-terms {
    display: block;
    font-size: 0.875rem;
    color: var(--text-light);
}

.casino-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.casino-actions .btn {
    padding: 12px 20px;
    font-size: 0.875rem;
    width: 100%;
}

.section-cta {
    text-align: center;
    margin-top: 48px;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: var(--bg-alt);
}

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

.feature-card {
    text-align: center;
    padding: 32px 24px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.feature-card h3 {
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Games Section */
.games-section {
    padding: 80px 0;
}

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

.game-card {
    text-align: center;
    padding: 32px 16px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s ease;
}

.game-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.game-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.game-card h3 {
    margin-bottom: 8px;
}

.game-count {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Payments Section */
.payments-section {
    padding: 60px 0;
    background: var(--bg-alt);
}

.payments-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.payment-badge {
    padding: 12px 24px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-weight: 600;
    color: var(--text);
}

/* Intro Section */
.intro-section {
    padding: 40px 0;
}

.intro-content .lead {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.8;
}

/* Content Section */
.content-section {
    padding: 80px 0;
}

.content-section.alt-bg {
    background: var(--bg-alt);
}

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

.content-block h2 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.content-block p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

/* Bonuses Section */
.bonuses-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, #2D2D4A 100%);
}

.bonuses-section .section-header h2,
.bonuses-section .section-header p {
    color: white;
}

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

.bonus-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.bonus-type {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 8px;
}

.bonus-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
}

.bonus-card p {
    color: var(--text-light);
    margin-bottom: 24px;
    font-size: 0.9375rem;
}

/* Guide Section */
.guide-section {
    padding: 80px 0;
}

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

.guide-block {
    margin-bottom: 40px;
}

.guide-block h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--text);
}

.guide-block p {
    color: var(--text-light);
    line-height: 1.8;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--bg-alt);
}

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

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

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

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding-bottom: 20px;
    color: var(--text-light);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-brand .logo {
    color: white;
}

.footer-links h4 {
    margin-bottom: 20px;
    font-size: 1rem;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
    margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .bonuses-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .casino-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .casino-rank {
        flex-direction: row;
        justify-content: center;
    }
    
    .casino-features {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    
    .casino-actions {
        flex-direction: row;
        justify-content: center;
    }
    
    .casino-actions .btn {
        width: auto;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-stats {
        gap: 24px;
    }
    
    .trust-badges {
        gap: 24px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .game-card {
        padding: 20px 12px;
    }
}
