:root {
    --bg-dark: #0f172a;
    --bg-darker: #020617;
    --bg-card: #1e293b;
    --accent-gold: #d4af37;
    --accent-gold-light: #f3cf55;
    --text-main: #e2e8f0;
    --text-muted: #94a3b8;
    --font-main: 'Inter', sans-serif;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}


h1,
h2,
h3,
h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    color: var(--accent-gold);
}

h3 {
    font-size: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}


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

.section-padding {
    padding: 80px 0;
}

.bg-darker {
    background-color: var(--bg-darker);
}

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

.subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

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


.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--bg-darker);
}

.btn-primary:hover {
    background-color: var(--accent-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

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

.btn-secondary:hover {
    background-color: var(--text-main);
    color: var(--bg-dark);
}

.btn-outline {
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    background: transparent;
    padding: 8px 16px;
    width: 100%;
    margin-top: 15px;
}

.btn-outline:hover {
    background: var(--accent-gold);
    color: var(--bg-darker);
}


#main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo span {
    color: var(--accent-gold);
}

#nav-links {
    display: flex;
    gap: 25px;
}

#nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
}

#nav-links a:hover {
    color: var(--accent-gold);
}

.btn-nav {
    border: 1px solid var(--accent-gold);
    padding: 5px 15px;
    border-radius: 4px;
    color: var(--accent-gold) !important;
}

.btn-nav:hover {
    background: var(--accent-gold);
    color: var(--bg-darker) !important;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--text-main);
    margin: 5px;
    transition: 0.3s;
}


.hero-section {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;

    background: url('../img/hero.png') center center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 20%, #0f172a 90%);
}

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

.badge-18 {
    display: inline-block;
    border: 1px solid #ef4444;
    color: #ef4444;
    padding: 5px 10px;
    font-size: 0.8rem;
    border-radius: 4px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 700;
}

.hero-sub {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--text-muted);
}

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


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

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}


.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.icon-box-large {
    text-align: center;
    font-size: 1.2rem;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
    padding: 40px;
    border-radius: 8px;
}

.icon-box-large img {
    width: 100%;
}


.card {
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: 8px;
    border-top: 3px solid transparent;
    transition: 0.3s;
}

.card:hover {
    border-top: 3px solid var(--accent-gold);
    transform: translateY(-5px);
}

.card i {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    color: #fff;
}


.check-list li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.check-list i {
    color: var(--accent-gold);
    margin-right: 10px;
}


.bm-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.bm-logo {
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    border-radius: 4px;
    color: #fff;
    font-weight: bold;
}

.bm-logo img {
    width: 100%;
    padding: 20px;
}

.rating {
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.rating span {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-left: 5px;
}

.bm-desc {
    font-size: 0.9rem;
    margin-bottom: 15px;
    min-height: 60px;
}

.bm-bonus {
    background: rgba(212, 175, 55, 0.1);
    padding: 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    color: var(--accent-gold-light);
}

.disclaimer-small {
    font-size: 0.8rem;
    color: #64748b;
    font-style: italic;
}


.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    text-align: center;
}

.step {
    flex: 1;
    min-width: 200px;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-gold);
    color: var(--bg-darker);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}


.rg-box {
    background: linear-gradient(to right, #1e293b, #0f172a);
    padding: 40px;
    border-left: 4px solid #ef4444;
    border-radius: 8px;
}

.highlight-box {
    background: rgba(239, 68, 68, 0.1);
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
    text-align: center;
    color: #fca5a5;
}

.rg-resources {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
    font-weight: 600;
}


.faq-grid {
    display: grid;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    padding: 20px;
    border-radius: 8px;
}

.faq-item h4 {
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin-bottom: 10px;
}


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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: var(--bg-darker);
    border: 1px solid #334155;
    color: #fff;
    border-radius: 4px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.full-width {
    width: 100%;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.info-item i {
    color: var(--accent-gold);
    margin-top: 5px;
}


footer {
    background-color: #000;
    padding: 60px 0 20px;
    border-top: 1px solid #334155;
    font-size: 0.9rem;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

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

.footer-col ul li a:hover {
    color: var(--accent-gold);
    text-decoration: underline;
}

.footer-divider {
    border: 0;
    border-top: 1px solid #334155;
    margin: 30px 0;
}

.footer-legal-block {
    background: #111;
    padding: 20px;
    color: #64748b;
    font-size: 0.8rem;
    text-align: justify;
    margin-bottom: 20px;
}

.footer-bottom {
    text-align: center;
    color: #64748b;
}

.footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-logos img {
    background: white;
    padding: 20px;
    height: 100px;
    border-radius: 10px;
}


.fade-in,
.fade-up,
.fade-in-left,
.fade-in-right {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.fade-in {
    transform: scale(0.95);
}

.fade-up {
    transform: translateY(30px);
}

.fade-in-left {
    transform: translateX(-30px);
}

.fade-in-right {
    transform: translateX(30px);
}

.visible {
    opacity: 1;
    transform: none;
}


@media screen and (max-width: 768px) {
    #nav-links {
        position: absolute;
        right: 0;
        top: 60px;
        background-color: var(--bg-dark);
        flex-direction: column;
        width: 100%;
        text-align: center;
        transform: translateY(-150%);
        transition: transform 0.3s ease-in;
        padding-bottom: 20px;
        border-bottom: 1px solid var(--accent-gold);
    }

    #nav-links.nav-active {
        transform: translateY(0);
    }

    .burger {
        display: block;
    }

    .about-grid,
    .contact-layout {
        grid-template-columns: 1fr;
    }

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


    .toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .toggle .line2 {
        opacity: 0;
    }

    .toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

.overlay-bg {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.overlay-hidden {
    display: none !important;
}

.overlay-box {
    background: #020617;
    border: 1px solid #f3cf55;
    color: #f9fafb;
    max-width: 480px;
    width: 90%;
    padding: 24px 20px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    text-align: left;
}

.overlay-title {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #f3cf55;
    font-weight: 600;
}

.overlay-text {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 18px;
    color: #e5e7eb;
}

.overlay-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.btn-primary-gold {
    background: #f3cf55;
    color: #020617;
    border: none;
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary-gold:hover {
    background: #ffe175;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.45);
}

.btn-ghost {
    background: transparent;
    color: #f3cf55;
    border-radius: 999px;
    border: 1px solid #f3cf55;
    padding: 7px 14px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.btn-ghost:hover {
    background: rgba(243, 207, 85, 0.12);
    transform: translateY(-1px);
}


#age-gate-overlay .overlay-box {
    text-align: center;
}

#age-gate-overlay .overlay-text {
    text-align: left;
}


#cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    background: #020617;
    color: #e5e7eb;
    border-radius: 14px;
    border: 1px solid rgba(243, 207, 85, 0.6);
    max-width: 960px;
    width: calc(100% - 32px);
    padding: 16px 18px;
    display: none;
    z-index: 9998;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

#cookie-banner-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
}

#cookie-banner-text {
    flex: 1 1 260px;
    font-size: 0.9rem;
    line-height: 1.5;
}

#cookie-banner-text strong {
    color: #f3cf55;
    font-weight: 600;
}

#cookie-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}


#cookie-preferences-modal {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.90);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#cookie-preferences-panel {
    background: #020617;
    border-radius: 14px;
    max-width: 520px;
    width: 90%;
    border: 1px solid #f3cf55;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
    padding: 20px 20px 18px;
    color: #e5e7eb;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

#cookie-preferences-panel h2 {
    font-size: 1.2rem;
    margin-bottom: 6px;
    color: #f3cf55;
}

#cookie-preferences-panel p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 10px;
    color: #e5e7eb;
}

.cookie-category {
    margin-top: 10px;
    padding: 10px 0;
    border-top: 1px solid rgba(148, 163, 184, 0.3);
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

.cookie-category-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #f3cf55;
}

.cookie-category-desc {
    font-size: 0.85rem;
    color: #cbd5f5;
}

.cookie-toggle {
    position: relative;
    width: 42px;
    height: 22px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: #111827;
    transition: .2s;
    border-radius: 999px;
    border: 1px solid #6b7280;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 2px;
    bottom: 2px;
    background-color: #f9fafb;
    transition: .2s;
    border-radius: 999px;
}

.cookie-toggle input:checked+.cookie-toggle-slider {
    background-color: #f3cf55;
    border-color: #f3cf55;
}

.cookie-toggle input:checked+.cookie-toggle-slider:before {
    transform: translateX(18px);
    background-color: #020617;
}

.cookie-toggle-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #9ca3af;
    margin-top: 3px;
}

#cookie-preferences-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 14px;
}


@media (max-width: 640px) {
    #cookie-banner-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    #cookie-banner-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .overlay-box {
        padding: 20px 18px;
    }
}

.legal-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 120px;
    padding-bottom: 80px;
}

.legal-content h2 {
    color: var(--accent-gold);
    margin-top: 40px;
    font-size: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.legal-content p,
.legal-content li {
    color: #cbd5e1;
    margin-bottom: 15px;
    font-size: 1rem;
}

.legal-content ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.legal-last-update {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 40px;
    font-style: italic;
}

.breadcrumb {
    margin-bottom: 20px;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--accent-gold);
}


.legal-warning {
    background: rgba(239, 68, 68, 0.1);
    border-left: 3px solid #ef4444;
    padding: 15px;
    margin: 20px 0;
    color: #fca5a5;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
}

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-table th {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
}

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

.forbidden-box {
    border: 1px solid #ef4444;
    background: rgba(239, 68, 68, 0.05);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.forbidden-box h3 {
    color: #ef4444;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.forbidden-box ul li {
    color: #fca5a5;
}