/* Font Awesome Icons & Fonts */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html, body {
    overflow-x: hidden;
}

:root {
    --bg-main: #050814;
    --bg-alt: #090d1d;
    --bg-card: rgba(13, 17, 32, 0.96);
    --bg-card-soft: rgba(18, 24, 48, 0.96);
    --gold: #d4af37;
    --gold-soft: #f1c40f;
    --text-main: #e5ecff;
    --text-muted: #9aa4c6;
    --border-subtle: rgba(148, 163, 184, 0.35);
    --radius-lg: 18px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background:
        radial-gradient(circle at top, rgba(212, 175, 55, 0.18) 0, transparent 55%),
        radial-gradient(circle at bottom, rgba(37, 99, 235, 0.16) 0, transparent 60%),
        var(--bg-main);
}

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

/* Age Verification Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.age-modal.hidden {
    display: none;
}

.age-modal-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.age-modal h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 24px;
}

.age-modal p {
    margin-bottom: 15px;
    color: #666;
}

.age-warning {
    color: #e74c3c;
    font-weight: 600;
    margin: 20px 0;
}

.age-accept-btn {
    background: #d4af37;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.age-accept-btn:hover {
    background: #b68a2c;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: white;
    padding: 20px 0;
    z-index: 1000;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    margin-right: 20px;
}

.cookie-content a {
    color: #f1c40f;
    text-decoration: none;
}

.cookie-content a:hover {
    text-decoration: underline;
}

.cookie-accept-btn {
    background: #d4af37;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.3s ease;
}

.cookie-accept-btn:hover {
    background: #b68a2c;
}

/* Header */
.header {
    background: rgba(5, 8, 20, 0.96);
    backdrop-filter: blur(18px);
    box-shadow: 0 1px 0 rgba(148, 163, 184, 0.18);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
}

/* Navigation */
.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

.nav-link:hover {
    color: var(--gold-soft);
}

/* Burger Menu */
.burger-checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.burger-label {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 25px;
    height: 20px;
    position: relative;
}

.burger-line {
    width: 100%;
    height: 3px;
    background: #333;
    position: absolute;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.burger-line:nth-child(1) {
    top: 0;
}

.burger-line:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.burger-line:nth-child(3) {
    bottom: 0;
}

.burger-checkbox:checked ~ .burger-label .burger-line:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
}

.burger-checkbox:checked ~ .burger-label .burger-line:nth-child(2) {
    transform: scale(0);
}

.burger-checkbox:checked ~ .burger-label .burger-line:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 50%;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background:
        radial-gradient(circle at top left, rgba(212, 175, 55, 0.3) 0, transparent 55%),
        linear-gradient(135deg, #050814 0%, #090f26 45%, #050814 100%);
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-main {
    flex: 1.4;
}

.hero-side-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-side-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #f9fafb;
    margin-bottom: 10px;
    text-align: left;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    text-align: left;
    margin-bottom: 40px;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
    gap: 24px 30px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(15, 23, 42, 0.96);
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.85);
}

.feature-item i {
    color: #d4af37;
    font-size: 20px;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: justify;
    color: var(--text-muted);
}

/* Section Titles */
.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #f9fafb;
    text-align: center;
    margin-bottom: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    border-radius: 999px;
    background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.15), transparent 60%);
    border: 1px solid rgba(148, 163, 184, 0.35);
}

/* Offers Section */
.offers {
    padding: 80px 0;
    background: var(--bg-alt);
    position: relative;
    overflow: hidden;
}

.offers::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('images/Casino-Ranking-_-Comparison-Image.webp') no-repeat center / cover;
    opacity: 0.28;
    pointer-events: none;
    mix-blend-mode: soft-light;
}

.top-offers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.additional-offers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.offer-card {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top, #252845 0%, #17192d 45%, #0c0e1a 100%);
    border-radius: 18px;
    padding: 30px 26px 26px 26px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(212, 175, 55, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.6);
    border-color: rgba(241, 196, 15, 0.9);
}

.offer-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(241, 196, 15, 0.16), transparent 45%, rgba(241, 196, 15, 0.24));
    opacity: 0.9;
    pointer-events: none;
    mix-blend-mode: soft-light;
}

.offer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.rating {
    color: #f1c40f;
}

.offer-logo {
    display: flex;
    align-items: center;
    margin-right: auto;
}

.offer-logo img {
    max-height: 72px;
    max-width: 220px;
    width: auto;
    object-fit: contain;
}

.offer-bonus {
    text-align: center;
    margin-bottom: 20px;
}

.bonus-amount {
    display: block;
    font-size: 34px;
    font-weight: 700;
    color: #d4af37;
    letter-spacing: 0.04em;
}

.bonus-type {
    color: #f5f5f5;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.offer-features ul {
    list-style: none;
    margin-bottom: 20px;
}

.offer-features li {
    padding: 5px 0;
    color: #ecf0f1;
    font-size: 14px;
}

.offer-features li:before {
    content: "✓";
    color: #d4af37;
    font-weight: bold;
    margin-right: 10px;
}

.payment-methods {
    display: flex;
    gap: 15px;
    font-size: 22px;
    color: #ecf0f1;
    opacity: 0.9;
}

/* Checklist Section */
.checklist {
    padding: 80px 0;
    background: radial-gradient(circle at top, rgba(212, 175, 55, 0.2) 0, transparent 60%), var(--bg-alt);
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.9);
    border: 1px solid var(--border-subtle);
}

.checklist-item i {
    color: #d4af37;
    font-size: 20px;
    min-width: 20px;
}

/* Criteria Section */
.criteria {
    padding: 80px 0;
    background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.22) 0, transparent 60%), var(--bg-main);
    position: relative;
    overflow: hidden;
}

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

.criteria::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('images/Casino-Platform-Card-Image.webp') no-repeat center / cover;
    opacity: 0.18;
    pointer-events: none;
    mix-blend-mode: soft-light;
}

.criteria-card {
    text-align: center;
    padding: 30px;
    background: var(--bg-card-soft);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.criteria-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.95);
    border-color: rgba(212, 175, 55, 0.8);
}

.criteria-card i {
    font-size: 48px;
    color: #d4af37;
    margin-bottom: 20px;
}

.criteria-card h3 {
    color: #f9fafb;
    margin-bottom: 15px;
}

.criteria-card p {
    color: var(--text-muted);
}

/* Bonuses Section */
.bonuses {
    padding: 80px 0;
    background: radial-gradient(circle at top, rgba(212, 175, 55, 0.18) 0, transparent 55%), var(--bg-alt);
}

.bonuses-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.bonus-info h3,
.bonus-warnings h3 {
    color: #f9fafb;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bonus-info h3 i,
.bonus-warnings h3 i {
    color: #d4af37;
}

.bonus-info ul,
.bonus-warnings ul {
    list-style: none;
}

.bonus-info li,
.bonus-warnings li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    color: var(--text-muted);
}

.bonus-info li:before {
    content: "•";
    color: var(--gold);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.bonus-warnings li:before {
    content: "⚠";
    color: #e74c3c;
    position: absolute;
    left: 0;
}

/* Protection Section */
.protection {
    padding: 80px 0;
    background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.18) 0, transparent 55%), var(--bg-main);
}

.protection-layout {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.protection-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    flex: 2;
}

.protection-card {
    text-align: center;
    padding: 30px;
    background: var(--bg-card-soft);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.protection-side-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.protection-side-image img {
    max-width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.protection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.95);
    border-color: rgba(212, 175, 55, 0.8);
}

.protection-card i {
    font-size: 48px;
    color: #e74c3c;
    margin-bottom: 20px;
}

.protection-card h3 {
    color: #f9fafb;
    margin-bottom: 15px;
}

.protection-card p {
    color: var(--text-muted);
}

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

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

.faq-item {
    background: var(--bg-card);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.9);
    border: 1px solid var(--border-subtle);
}

.faq-item h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item h3 i {
    color: #d4af37;
}

.faq-item p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Disclaimer Section */
.disclaimer {
    padding: 60px 0;
    background: radial-gradient(circle at top, rgba(15, 23, 42, 0.8) 0, #020617 60%);
    color: white;
}

.disclaimer p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* Help banners / logos */
.banner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.banner-item {
    position: relative;
    width: 180px;
    aspect-ratio: 16 / 9;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.banner-item img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.banner-item.over18 img {
    filter: none;
}

.banner-item:hover {
    background: rgba(0, 0, 0, 0.85);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Footer */
.footer {
    background: #020617;
    color: var(--text-muted);
    padding: 40px 0 20px;
}

.footer-section {
    text-align: center;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 15px;
    color: #f9fafb;
}

.footer-links {
    text-align: center;
    margin-bottom: 30px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(148, 163, 184, 0.35);
    padding-top: 20px;
    color: #6b7280;
}

.footer-bottom p {
    margin-bottom: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Mobile Navigation */
    .burger-label {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 70px;
        right: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(5, 8, 20, 0.98);
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        overflow-y: auto;
        box-shadow: -5px 0 15px rgba(15, 23, 42, 0.8);
        z-index: 200;
    }
    
    .burger-checkbox:checked ~ .nav {
        transform: translateX(0);
    }
    
    .nav-list {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }
    
    .nav-link {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid #eee;
    }
    
    /* Mobile Hero */
    .hero-content {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .hero-title {
        font-size: 32px;
    }
    
    .hero-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px 12px;
    }
    
    .feature-item {
        flex-shrink: 0;
        padding: 8px 10px;
        font-size: 12px;
    }
    
    /* Mobile Offers */
    .top-offers {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .additional-offers {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Mobile Sections */
    .checklist-grid {
        grid-template-columns: 1fr;
    }
    
    .criteria-grid {
        grid-template-columns: 1fr;
    }
    
    .criteria::before {
        display: none;
    }
    
    .bonuses-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .protection-grid {
        grid-template-columns: 1fr;
    }
    
    .banner-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        justify-content: center;
    }

    .banner-item {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .banner-item:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        justify-self: center;
    }

    .offer-logo img {
        max-height: 44px;
        max-width: 170px;
    }

    .protection-layout {
        flex-direction: column;
    }
    
    /* Mobile Footer */
    .footer-links ul {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Remove section padding on mobile */
    .hero,
    .offers,
    .checklist,
    .criteria,
    .bonuses,
    .protection,
    .faq {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    /* Cookie banner mobile */
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-content p {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .offer-card {
        padding: 20px;
    }
    
    .banner-placeholder {
        grid-template-columns: 1fr;
    }
    
    .placeholder-item:last-child {
        grid-column: auto;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-20 {
    margin-top: 20px;
}

/* Legal Pages Styles */
.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    line-height: 1.8;
}

.legal-container h1 {
    color: #2c3e50;
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
}

.legal-container h2 {
    color: #34495e;
    font-size: 24px;
    margin: 30px 0 15px 0;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 10px;
}

.legal-container h3 {
    color: #2c3e50;
    font-size: 20px;
    margin: 25px 0 15px 0;
}

.legal-container p {
    margin-bottom: 15px;
    color: #555;
}

.legal-container ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-container li {
    margin-bottom: 10px;
    color: #555;
}

.legal-container a {
    color: #d4af37;
    text-decoration: none;
}

.legal-container a:hover {
    text-decoration: underline;
}

.back-link {
    display: inline-block;
    margin-bottom: 30px;
    color: #d4af37;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.back-link:hover {
    background: #e9ecef;
    text-decoration: none;
}

/* Placeholder images */
.placeholder {
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
}

.placeholder-16-9 {
    aspect-ratio: 16/9;
}