/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF6B35;
    --secondary-color: #004E89;
    --accent-color: #FFD23F;
    --dark-bg: #1A1A2E;
    --light-bg: #F5F5F5;
    --text-dark: #2D2D2D;
    --text-light: #FFFFFF;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.header {
    background: var(--dark-bg);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.navbar {
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: var(--text-light);
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-large,
.btn-cta,
.btn-bonus {
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-2);
    color: var(--text-light);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--dark-bg);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.btn-large {
    background: var(--gradient-2);
    color: var(--text-light);
    padding: 18px 48px;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-cta {
    background: var(--accent-color);
    color: var(--dark-bg);
    padding: 18px 48px;
    font-size: 1.3rem;
    box-shadow: var(--shadow-lg);
}

.btn-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 210, 63, 0.4);
}

.btn-bonus {
    background: var(--gradient-1);
    color: var(--text-light);
    padding: 12px 24px;
    font-size: 1rem;
}

.btn-bonus:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Hero Section */
.hero {
    background: var(--gradient-1);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.1)"/><stop offset="100%" style="stop-color:rgba(255,255,255,0)"/></linearGradient></defs><path d="M0,300 Q300,150 600,300 T1200,300 L1200,600 L0,600 Z" fill="url(%23grad)"/></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.hero-content {
    text-align: center;
    color: var(--text-light);
    position: relative;
    z-index: 1;
    padding: 4rem 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.bonus-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.bonus-text {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.bonus-amount {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.indicator {
    text-align: center;
}

.indicator-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
}

.indicator-label {
    display: block;
    font-size: 1rem;
    opacity: 0.9;
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Section */
.features {
    background: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: #666;
    line-height: 1.8;
}

/* Sports Section */
.sports {
    background: white;
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.sport-item {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.sport-item:hover {
    background: var(--gradient-3);
    color: white;
    transform: scale(1.05);
}

.sport-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.sport-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Casino Section */
.casino {
    background: var(--dark-bg);
    color: var(--text-light);
}

.casino .section-title {
    color: var(--text-light);
}

.casino-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.casino-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.casino-features {
    list-style: none;
    margin-bottom: 2rem;
}

.casino-features li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}

.casino-placeholder {
    background: var(--gradient-2);
    height: 400px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.casino-emoji {
    font-size: 8rem;
}

/* Bonuses Section */
.bonuses {
    background: var(--light-bg);
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.bonus-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.bonus-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.bonus-tag {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--gradient-2);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.bonus-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.bonus-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.bonus-value {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.bonus-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.bonus-features {
    list-style: none;
    margin-bottom: 2rem;
}

.bonus-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

/* CTA Section */
.cta {
    background: var(--gradient-1);
    color: var(--text-light);
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-terms {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 1rem;
}

.affiliate-disclosure {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    border-left: 4px solid var(--accent-color);
    text-align: left;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.affiliate-disclosure strong {
    color: var(--accent-color);
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 4rem 0 2rem;
}

/* Review Section */
.review-section {
    background: var(--light-bg);
    padding: 5rem 0;
}

.review-content {
    max-width: 1000px;
    margin: 0 auto;
}

.review-intro {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
}

.review-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #444;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.pros-box,
.cons-box {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.pros-box {
    border-left: 5px solid #4CAF50;
}

.cons-box {
    border-left: 5px solid #f44336;
}

.pros-box h3,
.cons-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.pros-box ul,
.cons-box ul {
    list-style: none;
    padding: 0;
}

.pros-box li,
.cons-box li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    font-size: 1rem;
    line-height: 1.6;
}

.pros-box li:last-child,
.cons-box li:last-child {
    border-bottom: none;
}

.review-rating {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.review-rating h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.rating-breakdown {
    max-width: 600px;
    margin: 0 auto 2rem;
}

.rating-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.rating-label {
    font-weight: 600;
    color: #333;
}

.rating-stars {
    color: #FFD700;
    font-size: 0.95rem;
}

.overall-rating {
    text-align: center;
    font-size: 1.5rem;
    padding: 1.5rem;
    background: var(--gradient-1);
    color: white;
    border-radius: 10px;
    margin-top: 2rem;
}

/* Signup Guide Section */
.signup-guide {
    background: white;
    padding: 5rem 0;
}

.signup-steps {
    max-width: 900px;
    margin: 3rem auto;
}

.step {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 100px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.step-number {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: var(--gradient-2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    box-shadow: var(--shadow-md);
}

.step h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.step p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
}

.step ul {
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.step li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.signup-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Payment Section */
.payments-section {
    background: var(--light-bg);
    padding: 5rem 0;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.payment-category {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
}

.payment-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.payment-category h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.payment-category p {
    color: #666;
    margin-bottom: 1rem;
}

.payment-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--light-bg);
}

.payment-details span {
    font-size: 0.9rem;
    color: #777;
}

.payment-info {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    margin-top: 3rem;
}

.payment-info h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.info-table {
    max-width: 700px;
    margin: 0 auto;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.info-label {
    font-weight: 600;
    color: #333;
}

.info-value {
    color: #666;
}

.payment-note {
    margin-top: 2rem;
    padding: 1rem;
    background: #FFF3CD;
    border-left: 4px solid #FFC107;
    border-radius: 5px;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    background: white;
    padding: 5rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

/* Verdict Section */
.verdict-section {
    background: var(--gradient-1);
    color: white;
    padding: 5rem 0;
}

.verdict-section .section-title {
    color: white;
}

.verdict-content {
    max-width: 1000px;
    margin: 0 auto;
}

.verdict-intro {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.verdict-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.highlight-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.highlight-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.highlight-box ul {
    list-style: none;
    padding: 0;
}

.highlight-box li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.highlight-box li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.verdict-conclusion {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 15px;
    margin: 3rem 0;
}

.verdict-conclusion h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.verdict-conclusion p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.verdict-score {
    text-align: center;
    margin-top: 3rem;
}

.score-box {
    display: inline-block;
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem 4rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.score-number {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.score-label {
    display: block;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.score-stars {
    font-size: 2rem;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.footer-section p {
    line-height: 1.8;
    opacity: 0.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.payment-methods {
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .trust-indicators {
        gap: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .casino-content {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .bonus-card.featured {
        transform: scale(1);
    }

    /* Review Section Responsive */
    .pros-cons {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Signup Steps Responsive */
    .step {
        padding-left: 20px;
        padding-top: 80px;
    }

    .step-number {
        left: 50%;
        transform: translateX(-50%);
        top: 20px;
    }

    .step:hover {
        transform: translateY(-5px);
    }

    /* Payment Grid Responsive */
    .payment-grid {
        grid-template-columns: 1fr;
    }

    .info-row {
        flex-direction: column;
        gap: 0.5rem;
    }

    /* FAQ Responsive */
    .faq-grid {
        grid-template-columns: 1fr;
    }

    /* Verdict Responsive */
    .verdict-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .verdict-intro {
        font-size: 1.1rem;
    }

    .score-box {
        padding: 1.5rem 2.5rem;
    }

    .score-number {
        font-size: 3rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.feature-card,
.sport-item,
.bonus-card {
    animation: fadeInUp 0.8s ease-out;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: var(--accent-color);
    color: var(--dark-bg);
}
