:root {
    --bg-main: #020617;
    --bg-card: #0f172a;
    --bg-lighter: #1e293b;
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    --accent: #1db334;
    --accent-hover: #d97706;
    --secondary: #14b8a6;
    --danger: #ef4444;
    --font-head: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}


h1,
h2,
h3,
h4 {
    font-family: var(--font-head);
    color: #fff;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}


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

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

.text-muted {
    color: var(--text-secondary);
}

.full-width {
    width: 100%;
}

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

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


.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--accent);
    color: #000;
}

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

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background-color: var(--accent);
    color: #000;
}

.btn-primary-sm,
.btn-outline-sm {
    padding: 6px 16px;
    font-size: 0.9rem;
    border-radius: 6px;
    font-weight: 600;
}

.btn-primary-sm {
    background-color: var(--accent);
    color: #000;
}

.btn-outline-sm {
    border: 1px solid #fff;
    color: #fff;
}

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


.main-header {
    background-color: rgba(2, 6, 23, 0.95);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #1e293b;
}

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

.logo {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.badge-18 {
    font-size: 0.7rem;
    background: #ef4444;
    padding: 2px 6px;
    border-radius: 4px;
    vertical-align: middle;
}


.nav-menu {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
}

.nav-buttons.mobile-only {
    display: none;
}

.header-actions.desktop-only {
    display: flex;
    gap: 15px;
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}


.hero {

    background: linear-gradient(to right, rgba(2, 6, 23, 0.9), rgba(2, 6, 23, 0.6)), url('../img/hero.png') center/cover no-repeat;

    background-color: #050b1a;
    padding: 100px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-tag {
    display: inline-block;
    background: rgba(20, 184, 166, 0.2);
    color: var(--secondary);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid var(--secondary);
}

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

.hero p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

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


.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}


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

.feature-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid var(--bg-lighter);
}

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


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

.offer-col h3 {
    margin-bottom: 20px;
}

.check-list li,
.cross-list li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    color: var(--text-secondary);
}

.check-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary);
}

.cross-list li::before {
    content: '\f00d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--danger);
}


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

.step-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    background: var(--bg-lighter);
    padding: 30px 20px;
    border-radius: var(--border-radius);
}

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


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

.product-card {
    background: var(--bg-lighter);
    border-radius: var(--border-radius);
    padding: 30px;
    position: relative;
    border: 1px solid #334155;
    transition: var(--transition);
}

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

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary);
    color: #fff;
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

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

.product-meta {
    margin: 20px 0;
    padding: 10px 0;
    border-top: 1px solid #334155;
    border-bottom: 1px solid #334155;
    color: var(--text-secondary);
    font-size: 0.9rem;
}


.accordion-item {
    border-bottom: 1px solid #334155;
}

.accordion-btn {
    width: 100%;
    text-align: left;
    padding: 20px 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--text-secondary);
}

.accordion-content p {
    padding-bottom: 20px;
}


.main-footer {
    background: #000;
    padding: 60px 0 20px;
    margin-top: auto;
    border-top: 1px solid #1e293b;
}

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

.footer-brand h3 {
    color: var(--accent);
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: #64748b;
}

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

.footer-links ul li a {
    font-size: 0.9rem;
    color: #9ca3af;
}

.footer-links ul li a:hover {
    color: #fff;
}

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: #9ca3af;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
    color: #4b5563;
}


.auth-page {
    background: var(--bg-main);
    display: flex;
    flex-direction: column;
}

.auth-header {
    padding: 20px;
    text-align: center;
}

.auth-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.auth-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--border-radius);
    width: 100%;
    max-width: 450px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.register-card {
    max-width: 600px;
}

.auth-head {
    text-align: center;
    margin-bottom: 30px;
}

.auth-head p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

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

.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1;
}

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

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

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

.form-check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.form-check a {
    text-decoration: underline;
}

.error-msg {
    color: var(--danger);
    font-size: 0.8rem;
    margin-top: 5px;
    display: block;
    min-height: 1.2em;
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}


.hero-mini {
    background: var(--bg-lighter);
    padding: 60px 0;
    text-align: center;
}

.page-content {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.content-block {
    margin-bottom: 50px;
}

.content-block h2 {
    border-bottom: 1px solid #334155;
    padding-bottom: 15px;
    display: inline-block;
}

.content-block p,
.content-block li {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.info-list li {
    margin-bottom: 15px;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.tool-item {
    background: var(--bg-main);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #334155;
}

.tool-item i {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 10px;
}


.age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.age-gate-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 500px;
    width: 100%;
    border: 1px solid var(--accent);
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.2);
}

.age-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.age-gate-card h2 {
    margin-bottom: 15px;
}

.age-gate-card p {
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.age-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}


@media (max-width: 768px) {
    .header-actions.desktop-only {
        display: none;
    }

    .burger-menu {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: var(--bg-main);
        flex-direction: column;
        justify-content: center;
        transition: 0.3s ease;
        padding: 40px;
        gap: 20px;
        border-top: 1px solid #1e293b;
    }

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

    .nav-links {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .nav-buttons.mobile-only {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 250px;
    }

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

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

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

.responsible-banner {

    background: linear-gradient(135deg, var(--bg-card) 0%, #1e293b 100%);
    border-top: 2px solid var(--secondary);
    border-bottom: 1px solid var(--bg-lighter);
    padding: 60px 0;
}

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

.resp-text {
    flex: 1;
}

.resp-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
}

.resp-text ul {
    list-style: none;
    padding: 0;
}

.resp-text ul li {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.resp-text ul li i {
    color: var(--secondary);
    font-size: 1.2rem;
}

.resp-action {
    flex-shrink: 0;
}

.card-padding {
    padding: 20px;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .resp-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .resp-text ul li {
        justify-content: center;
        text-align: left;
    }

    .resp-action {
        width: 100%;
    }

    .resp-action .btn {
        width: 100%;
    }
}

.site-footer {
    background: linear-gradient(180deg, #020617 0%, #020617 100%);
    color: #d4d4d4;
    font-family: var(--font-family);
    font-size: 14px;
    line-height: 1.8;
    padding: 32px 20px;
    text-align: center;
    border-top: 1px solid rgba(148, 163, 184, 0.4);
}

.site-footer p {
    margin: 10px auto;
    max-width: 900px;
    color: #e5e7eb;
}

.site-footer strong {
    color: #ffffff;
    font-weight: 600;
}

.site-footer a {
    color: #38bdf8;
    text-decoration: none;
    transition: color 0.25s ease;
}

.site-footer a:hover {
    color: #a5b4fc;
    text-decoration: underline;
}

.site-footer .footer-warning {
    color: #f97316;
    font-weight: bold;
    font-size: 15px;
}

.site-footer .footer-links {
    font-size: 13px;
}

.site-footer .footer-links a {
    color: #9ca3af;
    margin: 0 10px;
}

.site-footer .footer-links a:hover {
    color: #38bdf8;
}

.site-footer .footer-copyright {
    margin-top: 22px;
    font-size: 12px;
    color: #6b7280;
    padding-top: 18px;
    border-top: 1px solid #1f2937;
}

.help-block {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #334155;
}

.help-block h2 {
    color: #fff;
    margin-bottom: 15px;
}

.help-block p {
    margin-bottom: 30px;
    max-width: 800px;
    color: var(--text-secondary);
}

.resources-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}


.resource {
    flex: 1;
    min-width: 280px;

    display: flex;
    align-items: center;
    gap: 20px;

    background: var(--bg-lighter);
    padding: 25px 30px;
    border-radius: 10px;
    border: 1px solid #334155;

    text-decoration: none;
    transition: all 0.3s ease;
}


.resource i {
    font-size: 2rem;
    color: var(--secondary);
    background: rgba(20, 184, 166, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}


.resource div {
    display: flex;
    flex-direction: column;
}

.resource strong {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.resource span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}


.resource:hover {
    background: var(--bg-card);
    border-color: var(--secondary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.resource:hover i {
    background: var(--secondary);
    color: #000;
}

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

.legal-content h1 {
    margin-bottom: 10px;
    color: var(--accent);
}

.legal-content h2 {
    margin-top: 30px;
    border-bottom: 1px solid #334155;
    padding-bottom: 10px;
    font-size: 1.5rem;
}

.legal-content h3 {
    margin-top: 20px;
    font-size: 1.2rem;
    color: #fff;
}

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

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

.legal-meta {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 30px;
    display: block;
}

.table-responsive {
    overflow-x: auto;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.legal-table th,
.legal-table td {
    border: 1px solid #334155;
    padding: 12px;
    text-align: left;
    color: #cbd5e1;
}

.legal-table th {
    background: #1e293b;
    color: #fff;
}

.contact-box {
    background: rgba(20, 184, 166, 0.1);
    border: 1px solid var(--secondary);
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.table-responsive {
    overflow-x: auto;
    margin: 20px 0;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.cookie-table th,
.cookie-table td {
    border: 1px solid #334155;
    padding: 12px;
    text-align: left;
    color: #cbd5e1;
    font-size: 0.95rem;
}

.cookie-table th {
    background: #1e293b;
    color: #fff;
    font-weight: 600;
}

.cookie-table tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}


.settings-panel {
    background: rgba(20, 184, 166, 0.1);
    border: 1px solid var(--secondary);
    padding: 25px;
    border-radius: 8px;
    margin-top: 40px;
    text-align: center;
}

.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    border-top: 1px solid var(--accent);
    padding: 20px;
    z-index: 9990;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    transition: bottom 0.5s ease-in-out;
    backdrop-filter: blur(10px);
}

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

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

.cookie-text h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #fff;
}

.cookie-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

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


.cookie-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9995;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-modal {
    background: var(--bg-card);
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    border: 1px solid #334155;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    animation: fadeIn 0.3s ease;
}

.cookie-modal-header {
    background: var(--bg-lighter);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #334155;
}

.cookie-modal-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.close-modal {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
}

.cookie-modal-body {
    padding: 20px;
}

.cookie-modal-body p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

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

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #334155;
}

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

.option-info h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: #fff;
}

.option-info p {
    font-size: 0.85rem;
    margin: 0;
}

.cookie-modal-footer {
    padding: 15px 20px;
    border-top: 1px solid #334155;
    background: var(--bg-lighter);
}


.option-toggle {
    position: relative;
    width: 50px;
    height: 26px;
}

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

.toggle-switch {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #475569;
    transition: .4s;
    border-radius: 34px;
}

.toggle-switch:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.toggle-switch {
    background-color: var(--secondary);
}

input:checked+.toggle-switch:before {
    transform: translateX(24px);
}


.toggle-switch.disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

input:checked+.toggle-switch.disabled {
    background-color: var(--accent);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

    .cookie-actions .btn {
        flex: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}