:root {
    --primary-color: #d4af37;
    --primary-hover: #b5952f;
    --bg-dark: #1a1a1a;
    --bg-darker: #121212;
    --bg-card: #252525;
    --text-light: #e0e0e0;
    --text-muted: #a0a0a0;
    --accent-red: #e74c3c;
    --font-main: 'Roboto', 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-light);
    line-height: 1.6;
}

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

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

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    transition: background 0.3s, transform 0.2s;
}

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

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

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    margin-left: 10px;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-darker);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--text-muted);
    color: var(--text-light);
    padding: 8px 16px;
    margin-top: 10px;
}

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

.btn-text {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    font-weight: bold;
    margin-top: 10px;
    padding: 0;
}

.header {
    background-color: rgba(18, 18, 18, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-list {
    display: flex;
    gap: 25px;
}

.nav-list a {
    font-weight: 500;
    font-size: 0.95rem;
}

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

.burger-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    background-color: var(--bg-darker);
    border-top: 1px solid #333;
    padding: 20px;
}

.mobile-nav.active {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.section {
    padding: 80px 0;
}

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

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('../img/hero.png');
    background-size: cover;
    background-position: center;
    margin-top: 0;
}

.hero-content {
    text-align: center;
    max-width: 800px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ccc;
}

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

.card {
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: 8px;
    transition: transform 0.3s;
    border: 1px solid #333;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

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

.card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

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

.text-content p {
    margin-bottom: 20px;
}

.feature-item {
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    background: rgba(212, 175, 55, 0.1);
    padding: 20px;
    border-radius: 50%;
}

.feature-item h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

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

.logo-placeholder {
    width: 100%;
    height: 80px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #777;
    font-weight: bold;
    padding: 10px;
    border-radius: 4px;
}

.logo-placeholder img {
    height: 100%;
}

.rating {
    color: var(--primary-color);
    margin: 10px 0;
    font-size: 0.9rem;
}

.rating span {
    color: var(--text-light);
    margin-left: 8px;
    font-weight: bold;
}

.bonus-info {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 15px;
    font-style: italic;
    border-top: 1px solid #333;
    padding-top: 10px;
}

.disclaimer-small {
    text-align: center;
    font-size: 0.8rem;
    color: #666;
    margin-top: 40px;
}

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

.step {
    flex: 1;
    min-width: 220px;
    text-align: center;
    padding: 20px;
}

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

.help-list {
    margin-top: 20px;
    list-style: disc;
    padding-left: 20px;
    color: var(--text-muted);
}

.blog-card .date {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

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

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #333;
}

.faq-question {
    padding: 20px;
    background-color: var(--bg-card);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background-color: #1f1f1f;
}

.faq-answer.open {
    padding: 20px;
    max-height: 200px;
}

.contact-wrapper {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-info,
.contact-form {
    flex: 1;
    min-width: 300px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.info-item i {
    width: 40px;
    height: 40px;
    background-color: var(--bg-card);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 15px;
}

.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-color: #333;
    border: 1px solid #444;
    color: var(--text-light);
    border-radius: 4px;
    font-family: inherit;
}

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

.form-message {
    margin-top: 15px;
    font-weight: 500;
}

.form-message.success {
    color: #2ecc71;
}

.form-message.error {
    color: #e74c3c;
}

.privacy-note {
    font-size: 0.8rem;
    color: #666;
    margin-top: 15px;
}


.copyright {
    text-align: center;
    font-size: 0.9rem;
    color: #555;
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .burger-menu {
        display: block;
    }

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

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .btn-secondary {
        margin-left: 0;
    }

    .contact-wrapper {
        flex-direction: column;
    }

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

footer {
    background: var(--text-dark);
    color: #9ca3af;
    padding: 60px 0 20px;
    font-size: 0.9rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #374151;
}

.footer-logo {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
}

.footer-bottom {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .header-cta {
        display: none;
    }

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

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

    .section-title {
        font-size: 2rem;
    }
}

footer {
    background-color: #0a0a0a;
    padding: 60px 0 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #222;
}

.footer-col h4 {
    color: var(--text-main);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
}

.legal-badge {
    display: inline-block;
    border: 1px solid #444;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-top: 10px;
}

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

    .nav-links {
        display: none;
    }

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

    .grid-2 {
        grid-template-columns: 1fr;
    }
}

.sr-footer {
    background: #0b1017;
    color: #f4f4f4;
    font-size: 14px;
    line-height: 1.6;
    padding: 40px 20px 24px;
}

.sr-footer a {
    color: #f3cf55;
    text-decoration: none;
}

.sr-footer a:hover {
    text-decoration: underline;
}

.sr-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.sr-footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
}

.sr-footer-brand {
    max-width: 520px;
}

.sr-footer-logo {
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.sr-footer-brand-text {
    margin: 0;
    opacity: 0.9;
}

.sr-footer-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.sr-badge {
    min-height: 52px;
    border-radius: 999px;
    border: 1px solid rgba(243, 207, 85, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(5, 8, 15, 0.7);
}

.sr-badge img {
    height: 60px;
    display: block;
}

.sr-badge-18 {
    background: #c0392b;
    border-color: #c0392b;
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
}



.sr-footer-columns {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    padding-top: 12px;
    padding-bottom: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sr-footer-col h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

.sr-footer-col p {
    margin: 0 0 8px;
    opacity: 0.9;
}

.sr-footer-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sr-footer-nav li {
    margin-bottom: 6px;
}

.sr-footer-nav a {
    font-size: 14px;
}



.sr-footer-bottom {
    margin-top: 18px;
}

.sr-footer-disclaimer {
    margin: 0 0 10px;
    font-size: 13px;
    opacity: 0.9;
}

.sr-footer-copy {
    margin: 0 0 6px;
    font-size: 13px;
    opacity: 0.85;
}

.sr-footer-en {
    margin: 0;
    font-size: 12px;
    opacity: 0.75;
}



@media (max-width: 992px) {
    .sr-footer-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .sr-footer-top {
        flex-direction: column;
    }

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

    .sr-footer {
        padding: 28px 16px 20px;
    }
}

.age-gate-overlay {
    position: fixed;
    inset: 0;
    background: rgba(18, 18, 18, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

.age-gate-box {
    background: #121212;
    border: 1px solid #d4af37;
    max-width: 420px;
    width: 90%;
    padding: 24px 20px 28px;
    border-radius: 12px;
    color: #ffffff;
    text-align: center;
    position: relative;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.8);
}

.age-gate-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #d4af37;
}

.age-gate-text {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.age-gate-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.btn-primary-age {
    background: #d4af37;
    color: #121212;
    border: none;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    min-width: 190px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-secondary-age {
    background: transparent;
    color: #d4af37;
    border: 1px solid #d4af37;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    min-width: 190px;
    transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.btn-primary-age:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
}

.btn-secondary-age:hover {
    background: #d4af37;
    color: #121212;
    transform: translateY(-1px);
}

.age-gate-note {
    font-size: 11px;
    opacity: 0.8;
    margin-top: 4px;
}

.age-gate-badge {
    position: absolute;
    top: -14px;
    right: 16px;
    background: #d4af37;
    color: #121212;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
}

.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(18, 18, 18, 0.98);
    color: #ffffff;
    z-index: 9998;
    padding: 14px 16px;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.7);
    font-size: 14px;
}

.cookie-banner-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 2fr 1fr;
    gap: 16px;
    align-items: center;
}

.cookie-title {
    font-weight: 700;
    margin-bottom: 4px;
    color: #d4af37;
}

.cookie-text {
    font-size: 13px;
    line-height: 1.5;
}

.cookie-settings {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cookie-option {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.cookie-option input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #d4af37;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
}

.btn-primary-cookie,
.btn-secondary-cookie {
    width: 100%;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 13px;
    cursor: pointer;
    font-weight: 600;
    border: none;
}

.btn-primary-cookie {
    background: #d4af37;
    color: #121212;
}

.btn-secondary-cookie {
    background: transparent;
    color: #d4af37;
    border: 1px solid #d4af37;
}

.btn-primary-cookie:hover,
.btn-secondary-cookie:hover {
    transform: translateY(-1px);
    transition: transform 0.15s ease;
}

@media (max-width: 900px) {
    .cookie-banner-inner {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .cookie-buttons {
        flex-direction: row;
    }
}

@media (max-width: 540px) {
    .cookie-banner {
        font-size: 13px;
    }

    .btn-primary-cookie,
    .btn-secondary-cookie {
        font-size: 12px;
        padding: 7px 10px;
    }
}

.legal-content {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #333;
    margin-top: 40px;
    margin-bottom: 40px;
}

.legal-content h1 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 2.5rem;
    border-bottom: 1px solid #444;
    padding-bottom: 20px;
}

.legal-content h2 {
    color: var(--text-light);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.legal-content h3 {
    color: var(--primary-color);
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.legal-content p,
.legal-content ul {
    color: #ccc;
    margin-bottom: 15px;
    text-align: justify;
}

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

.legal-content li {
    margin-bottom: 8px;
}

.last-updated {
    font-style: italic;
    color: #666;
    margin-top: 40px;
    border-top: 1px solid #333;
    padding-top: 20px;
}

.alert-box {
    background-color: rgba(231, 76, 60, 0.1);
    border-left: 4px solid #e74c3c;
    padding: 15px;
    margin: 20px 0;
    color: #e0e0e0;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    color: #ccc;
}

.cookie-table th,
.cookie-table td {
    border: 1px solid #444;
    padding: 10px;
    text-align: left;
}

.cookie-table th {
    background-color: #333;
    color: var(--primary-color);
}

.help-box {
    background-color: #1f1f1f;
    border: 1px solid var(--primary-color);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.help-box h4 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.help-box p {
    margin-bottom: 5px;
    color: #bbb;
}

.warning-text {
    color: #e74c3c;
    font-weight: bold;
}

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

.check-list li {
    list-style: none;
    display: flex;
    align-items: flex-start;
}