:root {
    --bg-main: #121212;
    --bg-card: #1e1e1e;
    --bg-card-hover: #2a2a2a;
    --bg-footer: #0a0a0a;
    --primary: #00E676;
    --primary-hover: #00c465;
    --text-light: #f5f5f5;
    --text-muted: #a0a0a0;
    --border-color: #333333;
    --warning: #ffb74d;
    --danger: #ef5350;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}


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

.section-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

section {
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-color);
}

.btn {
    display: inline-block;
    background-color: var(--primary);
    color: #000;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: background 0.3s ease;
    cursor: pointer;
    border: none;
}

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

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


header {
    background-color: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-light);
}

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

.nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--bg-card);
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

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

.nav-links li {
    margin: 15px 0;
    text-align: center;
}

.nav-links a {
    font-weight: 600;
    color: var(--text-muted);
    transition: color 0.3s;
}

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

.menu-toggle {
    font-size: 1.5rem;
    cursor: pointer;
    display: block;
    color: var(--text-light);
}

.header-btn {
    display: none;
}

@media(min-width: 992px) {
    .menu-toggle {
        display: none;
    }

    .nav-links {
        display: flex;
        flex-direction: row;
        position: static;
        width: auto;
        background-color: transparent;
        padding: 0;
        border: none;
    }

    .nav-links li {
        margin: 0 15px;
    }

    .header-btn {
        display: inline-block;
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}


.hero {
    padding: 8rem 0 4rem;
    text-align: center;
    background: radial-gradient(circle at 50% 0%, #1e3a2f 0%, var(--bg-main) 60%);
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 2rem;
    align-items: center;
}

.hero-benefits li {
    font-size: 1rem;
    color: var(--text-light);
}

.hero-benefits i {
    color: var(--primary);
    margin-right: 8px;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 2rem;
    padding: 8px 16px;
    border: 1px solid var(--warning);
    border-radius: 20px;
    color: var(--warning);
    font-size: 0.85rem;
    font-weight: 600;
}


.featured-casino {
    background-color: var(--bg-card);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--primary);
    color: #000;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-weight: 800;
    font-size: 0.8rem;
}

.featured-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.featured-logo {
    width: 150px;
    height: auto;
    margin-bottom: 1rem;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
}

.rating {
    color: var(--warning);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature-block h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.feature-block ul li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-muted);
}

.feature-block ul li i {
    color: var(--primary);
    margin-top: 4px;
}

.featured-cta {
    text-align: center;
    margin-top: 2rem;
}

.legal-note {
    display: block;
    margin-top: 1rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

@media(min-width: 768px) {
    .featured-content {
        grid-template-columns: 1fr 1fr;
    }

    .featured-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .featured-logo {
        margin-bottom: 0;
    }
}


.comparison-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comp-card {
    background: var(--bg-card);
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comp-title {
    font-weight: 800;
    font-size: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.comp-item {
    display: flex;
    flex-direction: column;
}

.comp-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 0.2rem;
}

.comp-value {
    font-size: 0.95rem;
    font-weight: 600;
}

@media(min-width: 992px) {
    .comparison-grid {
        display: grid;
        gap: 0;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        overflow: hidden;
    }

    .comp-header {
        display: grid;
        grid-template-columns: 1.5fr 1.5fr 1.5fr 1fr 1fr 1fr;
        background: var(--bg-card-hover);
        padding: 1rem;
        font-weight: 800;
        font-size: 0.9rem;
        text-transform: uppercase;
        color: var(--text-muted);
    }

    .comp-card {
        display: grid;
        grid-template-columns: 1.5fr 1.5fr 1.5fr 1fr 1fr 1fr;
        align-items: center;
        padding: 1rem;
        border: none;
        border-bottom: 1px solid var(--border-color);
        border-radius: 0;
    }

    .comp-card:last-child {
        border-bottom: none;
    }

    .comp-label {
        display: none;
    }

    .comp-item {
        flex-direction: row;
        align-items: center;
    }
}


.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.method-card,
.guide-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-align: left;
    transition: transform 0.3s;
}

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

.method-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.method-card h3,
.guide-card h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.method-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.guide-card ul li {
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    gap: 10px;
}

.guide-card ul li i {
    color: var(--primary);
    margin-top: 4px;
    font-size: 0.8rem;
}

@media(min-width: 768px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(min-width: 992px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}


.faq-item {
    background: var(--bg-card);
    margin-bottom: 1rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

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


.responsible-section {
    background-color: rgba(239, 83, 80, 0.05);
    border-color: rgba(239, 83, 80, 0.2);
    text-align: center;
}

.responsible-section .section-title {
    color: var(--danger);
}

.responsible-icon {
    font-size: 3rem;
    color: var(--danger);
    margin-bottom: 1rem;
}

.resp-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.resp-content p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.resp-content ul {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--danger);
    margin-bottom: 1.5rem;
}

.resp-content ul li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.resp-content ul li i {
    color: var(--danger);
    margin-right: 10px;
}


footer {
    background-color: var(--bg-footer);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 1rem;
    font-size: 0.9rem;
}

.footer-links h4 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: var(--primary);
}

.footer-disclaimer {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.footer-disclaimer p {
    margin-bottom: 1rem;
}

@media(min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.logo-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
    max-width: 1120px;
    margin: 25px auto;
    justify-content: center;
}

.logo-footer a {
    height: 48px;

}

.logo-footer a img {
    height: 100%;
    object-fit: contain;
}

.contact-section {
    margin-top: 120px;
    background-color: var(--bg-main);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-info {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.contact-info h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.contact-info ul li {
    margin-bottom: 1rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-info ul li i {
    color: var(--primary);
    font-size: 1.2rem;
}

.contact-form-container {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-light);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.w-100 {
    width: 100%;
}

@media(min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1.5fr;
    }
}

.legal-section {
    background-color: var(--bg-main);
    padding: 6rem 0;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 2rem;
}

.legal-header h1 {
    font-size: 2.2rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.legal-header .last-updated {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
}

.legal-content h3 {
    color: var(--text-light);
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-content p {
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-content ul li {
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    list-style-type: disc;
    line-height: 1.6;
}

.legal-content ul li::marker {
    color: var(--primary);
}

.legal-content a {
    color: var(--primary);
    text-decoration: underline;
    transition: color 0.3s;
}

.legal-content a:hover {
    color: var(--primary-hover);
}

@media(max-width: 768px) {
    .legal-container {
        padding: 1.5rem;
    }
}

.legal-section {
    background-color: var(--bg-main);
    padding: 6rem 0;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 2rem;
}

.legal-header h1 {
    font-size: 2.2rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.legal-header .last-updated {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
}

.legal-content h3 {
    color: var(--text-light);
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-content p {
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-content ul li {
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    list-style-type: disc;
    line-height: 1.6;
}

.legal-content ul li::marker {
    color: var(--primary);
}

.legal-content a {
    color: var(--primary);
    text-decoration: underline;
    transition: color 0.3s;
}

.legal-content a:hover {
    color: var(--primary-hover);
}

@media(max-width: 768px) {
    .legal-container {
        padding: 1.5rem;
    }

    .legal-header h1 {
        font-size: 1.8rem;
    }
}

.legal-section {
    background-color: var(--bg-main);
    padding: 6rem 0;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 2rem;
}

.legal-header h1 {
    font-size: 2.2rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.legal-header .last-updated {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
}

.legal-content h3 {
    color: var(--text-light);
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-content p {
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-content ul li {
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    list-style-type: disc;
    line-height: 1.6;
}

.legal-content ul li::marker {
    color: var(--primary);
}

.legal-content a {
    color: var(--primary);
    text-decoration: underline;
    transition: color 0.3s;
}

.legal-content a:hover {
    color: var(--primary-hover);
}

@media(max-width: 768px) {
    .legal-container {
        padding: 1.5rem;
    }

    .legal-header h1 {
        font-size: 1.8rem;
    }
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    visibility: visible;
    opacity: 1;
}


.modal-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.modal-box h2 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.modal-box p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.modal-icon {
    font-size: 3rem;
    color: var(--warning);
    margin-bottom: 1rem;
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--text-muted);
    color: var(--text-light);
}

.btn-outline:hover {
    border-color: var(--text-light);
    background: rgba(255, 255, 255, 0.05);
}

.btn-danger {
    background: transparent;
    border: 1px solid var(--danger);
    color: var(--danger);
}

.btn-danger:hover {
    background: var(--danger);
    color: #fff;
}

@media(min-width: 480px) {
    .modal-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .modal-buttons .btn {
        flex: 1;
    }
}


.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(150%);
    width: 90%;
    max-width: 900px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    z-index: 9998;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cookie-banner.show {
    transform: translateX(-50%) translateY(0);
}

.cookie-text h4 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.cookie-text p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

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

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
}

.cookie-actions .btn {
    padding: 8px 16px;
    font-size: 0.85rem;
}

@media(min-width: 768px) {
    .cookie-banner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .cookie-actions {
        justify-content: flex-end;
        flex-shrink: 0;
    }
}


.cookie-setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
}

.cookie-setting-item:last-child {
    border-bottom: none;
}

.cookie-setting-info h5 {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.cookie-setting-info p {
    margin-bottom: 0;
    font-size: 0.8rem;
}


.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--border-color);
    transition: .4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: var(--text-muted);
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: var(--primary);
}

input:checked+.slider:before {
    transform: translateX(20px);
    background-color: #000;
}

input:disabled+.slider {
    opacity: 0.5;
    cursor: not-allowed;
}

input:disabled:checked+.slider {
    background-color: var(--primary);
}