:root {
    --bg-dark: #0f172a;
    --bg-card: #1e293b;
    --bg-light: #f8fafc;
    --text-main: #334155;
    --text-light: #f8fafc;
    --text-muted: #94a3b8;
    --primary-color: #3b82f6;
    --primary-hover: #2563eb;
    --accent-color: #f59e0b;
    --accent-hover: #d97706;
    --danger: #ef4444;
    --transition: 0.3s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
}


h1,
h2,
h3,
h4 {
    color: var(--bg-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.text-accent {
    color: var(--accent-color);
}

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

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mt-2 {
    margin-top: 1rem;
}


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

.section {
    padding: 80px 0;
}

.bg-light {
    background-color: #f1f5f9;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.subtext {
    color: var(--text-main);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 20px auto 0;
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    gap: 10px;
}

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

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--primary-hover);
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
    background-color: var(--accent-color);
    color: var(--bg-dark);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background-color: var(--accent-hover);
    color: white;
}

.btn-block {
    width: 100%;
}

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


#main-header {
    background-color: var(--bg-dark);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

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

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a:focus {
    color: var(--primary-color);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.8rem;
    cursor: pointer;
}


.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-image: url('../img/hero.png');
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    text-align: center;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.85);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content h1 {
    color: var(--text-light);
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-subtext {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #cbd5e1;
}

.age-warning {
    display: inline-block;
    background-color: rgba(239, 68, 68, 0.2);
    border: 1px solid var(--danger);
    color: #fca5a5;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}


.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-align: justify;
}


.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-sub {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    font-weight: 600;
}


.steps-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step-block {
    display: flex;
    gap: 30px;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.step-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background-color: rgba(59, 130, 246, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.step-content p {
    text-align: justify;
}


.casino-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 2px solid transparent;
}

.casino-card:hover {
    border-color: var(--primary-color);
}

.casino-logo-wrapper {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.casino-logo {
    max-height: 100%;
    max-width: 150px;
    object-fit: contain;
}

.casino-rating {
    margin-bottom: 20px;
}

.rating-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bg-dark);
    display: block;
}

.stars {
    color: var(--accent-color);
}

.casino-info {
    margin-bottom: 20px;
    flex-grow: 1;
}

.bonus-text {
    font-weight: 600;
    color: var(--primary-color);
}

.bonus-subtext {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 5px;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    color: var(--text-muted);
    font-size: 1.5rem;
}

.badge {
    font-size: 0.75rem;
    background-color: #e2e8f0;
    color: var(--text-main);
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.affiliate-disclaimer {
    margin-top: 40px;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
}


.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

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

.security-item i {
    font-size: 3rem;
    color: var(--bg-dark);
    margin-bottom: 15px;
}


.review-stars {
    color: var(--accent-color);
    margin-bottom: 15px;
}

.review-card p {
    font-style: italic;
    margin-bottom: 15px;
}

.reviewer-name {
    font-weight: 700;
    font-style: normal !important;
    text-align: right;
    color: var(--primary-color);
}


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

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    overflow: hidden;
}

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

.faq-question:hover,
.faq-question:focus {
    background-color: #f8fafc;
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background-color: white;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 20px 20px;
}


.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-list {
    list-style: none;
    margin-top: 15px;
}

.contact-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-list i {
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}


.main-footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding-top: 60px;
}

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

.footer-brand p {
    color: var(--text-muted);
    margin-top: 15px;
    margin-bottom: 20px;
}

.social-links a {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: var(--transition);
    text-decoration: none;
}

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

.footer-links h4 {
    color: white;
}

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

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-warning {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-left: 4px solid var(--danger);
    border-radius: 4px;
}

.footer-warning i {
    color: var(--danger);
}

.footer-warning p {
    font-size: 0.85rem;
    color: #cbd5e1;
}

.footer-bottom {
    background-color: #0b1120;
    padding: 20px 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}


.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transition: bottom 0.5s ease-in-out;
}

.cookie-banner.show {
    bottom: 0;
}

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

.cookie-content p {
    font-size: 0.9rem;
    margin: 0;
}

.cookie-content a {
    color: var(--primary-color);
    cursor: pointer;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}


@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

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

    .step-block {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .burger-menu {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 80px;
        left: -100%;
        width: 100%;
        background-color: var(--bg-dark);
        flex-direction: column;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu li {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

.legal-section {
    background-color: var(--bg-light);
    padding: 100px 0 80px;
    margin-top: 50px;
}

.legal-content {
    max-width: 850px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px 60px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.last-updated {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 40px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 15px;
}

.legal-block {
    margin-bottom: 35px;
}

.legal-block h3 {
    font-size: 1.4rem;
    color: var(--bg-dark);
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(59, 130, 246, 0.1);
}

.legal-block p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-main);
    margin-bottom: 15px;
    text-align: justify;
}

.legal-block ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.legal-block li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-main);
    margin-bottom: 10px;
    padding-left: 5px;
}

.legal-block li strong {
    color: var(--bg-dark);
}

.legal-block a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.legal-block a:hover {
    text-decoration: underline;
    color: var(--primary-hover);
}

.legal-content ul {
    list-style-type: none;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 30px 20px;
        border-radius: 8px;
    }

    .legal-block h3 {
        font-size: 1.25rem;
    }

    .legal-block p,
    .legal-block li {
        font-size: 1rem;
        text-align: left;
    }
}

.legal-block.highlight-block {
    background-color: rgba(239, 68, 68, 0.05);
    border-left: 4px solid var(--danger, #ef4444);
    padding: 20px;
    border-radius: 0 8px 8px 0;
}

.legal-block.highlight-block h3 {
    color: var(--danger, #ef4444);
    border-bottom: none;
    margin-bottom: 10px;
    padding-bottom: 0;
}

.legal-block h3 {
    font-size: 1.4rem;
    color: var(--bg-dark, #0f172a);
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(59, 130, 246, 0.1);
}

.legal-block p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-main, #334155);
    margin-bottom: 15px;
    text-align: justify;
}

.legal-block strong {
    color: var(--bg-dark, #0f172a);
    font-weight: 700;
}


@media (max-width: 768px) {
    .legal-content {
        padding: 30px 20px;
        border-radius: 8px;
    }

    .legal-block h3 {
        font-size: 1.25rem;
    }

    .legal-block p {
        font-size: 1rem;
        text-align: left;
    }

    .legal-block.highlight-block {
        padding: 15px;
    }
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    text-align: left;
}

.cookie-table th,
.cookie-table td {
    padding: 16px;
    border-bottom: 1px solid #e2e8f0;
}

.cookie-table th {
    background-color: var(--bg-dark, #0f172a);
    color: #ffffff;
    font-weight: 600;
    font-size: 1.05rem;
    white-space: nowrap;
}

.cookie-table td {
    color: var(--text-main, #334155);
    font-size: 0.95rem;
    line-height: 1.6;
    vertical-align: top;
}

.cookie-table tbody tr:last-child td {
    border-bottom: none;
}

.cookie-table tbody tr:hover {
    background-color: #f8fafc;
}


.legal-block ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
}

.legal-block ul li::before {
    content: "•";
    color: var(--primary-color, #3b82f6);
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -4px;
}


@media (max-width: 768px) {

    .cookie-table th,
    .cookie-table td {
        padding: 12px;
        font-size: 0.9rem;
    }
}


.checklist-ul {
    list-style: none;
    margin-left: 0;
    margin-bottom: 20px;
}

.checklist-ul li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: var(--text-main, #334155);
    line-height: 1.6;
}

.checklist-ul li::before {
    content: "\f071";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--accent-color, #f59e0b);
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 1.1rem;
}


.help-block {
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-left: 5px solid #22c55e;
    border-radius: 8px;
    padding: 30px;
    margin: 40px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.help-block h3 {
    color: #166534;
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: none;
    padding-bottom: 0;
}

.help-block h3 i {
    color: #22c55e;
}

.help-block p {
    color: #15803d;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.help-contacts {
    background-color: #ffffff;
    border-radius: 6px;
    padding: 20px;
    border: 1px dashed #86efac;
}

.help-contacts p {
    color: var(--text-main, #334155);
    margin-bottom: 15px;
    font-size: 1rem;
}

.help-contacts p:last-child {
    margin-bottom: 0;
}

.help-contacts strong {
    color: #166534;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 3px;
}


@media (max-width: 768px) {
    .help-block {
        padding: 20px;
        margin: 30px 0;
    }

    .help-block h3 {
        font-size: 1.3rem;
    }

    .checklist-ul li {
        font-size: 1rem;
    }
}

.age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(8px);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.age-gate-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.age-gate-content {
    background-color: #ffffff;
    width: 90%;
    max-width: 450px;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.3);
    border-top: 5px solid var(--danger, #ef4444);
}

.age-gate-icon i {
    font-size: 3.5rem;
    color: var(--bg-dark, #0f172a);
    margin-bottom: 20px;
}

.age-gate-content h2 {
    font-size: 1.8rem;
    color: var(--bg-dark, #0f172a);
    margin-bottom: 15px;
}

.age-gate-content p {
    color: var(--text-main, #334155);
    margin-bottom: 15px;
    font-size: 1.05rem;
    line-height: 1.5;
}

.age-warning-text {
    font-weight: 600;
    color: var(--bg-dark, #0f172a);
}

.age-gate-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
    margin-bottom: 25px;
}

#btn-age-no {
    background-color: #e2e8f0;
    color: #475569;
}

#btn-age-no:hover {
    background-color: #cbd5e1;
    color: #0f172a;
}

.age-gate-footer {
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
    font-size: 0.85rem;
}

.age-gate-footer p {
    font-size: 0.85rem;
    color: var(--text-muted, #94a3b8);
    margin-bottom: 10px;
}

.age-gate-footer i {
    color: var(--danger, #ef4444);
}

.age-badge {
    display: inline-block;
    background-color: var(--danger, #ef4444);
    color: white;
    font-weight: bold;
    font-size: 1rem;
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 50%;
    text-align: center;
}

body.modal-open {
    overflow: hidden;
}