:root {

    --bg-darkest: #020617;
    --bg-dark: #0f172a;
    --bg-card: #1e293b;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;


    --primary-gold: #d4af37;
    --primary-gold-hover: #b5952f;
    --accent-teal: #14b8a6;
    --accent-teal-dark: #0f766e;


    --border-color: #334155;


    --container-width: 1200px;
    --header-height: 70px;
}

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

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

h1,
h2,
h3,
h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-main);
    margin-bottom: 1rem;
}

h2.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 15px;
}

h2.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-gold);
}

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

ul {
    list-style: none;
}


.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

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

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

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

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

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.max-w-600 {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.full-width {
    width: 100%;
}

.link-gold {
    color: var(--primary-gold);
}

.link-gold:hover {
    text-decoration: underline;
}


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

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

.btn-primary:hover {
    background-color: var(--primary-gold-hover);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background-color: var(--primary-gold);
    color: var(--bg-darkest) !important;
}

.btn-dark {
    background-color: var(--bg-darkest);
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

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

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

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}


.site-header {
    background-color: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(10px);
    height: var(--header-height);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

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

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

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

.main-nav a.active,
.main-nav a:hover {
    color: var(--primary-gold);
}

.auth-buttons {
    display: flex;
    gap: 10px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}


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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(2, 6, 23, 0.9) 0%, rgba(15, 23, 42, 0.7) 100%);
}

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

.badge-official {
    display: inline-block;
    background-color: rgba(20, 184, 166, 0.1);
    color: var(--accent-teal);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid var(--accent-teal);
}

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

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

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-legal {
    font-size: 0.8rem;
    opacity: 0.7;
}


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

.game-card {
    background-color: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border-color);
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--primary-gold);
}

.game-header {
    background-color: #252f45;
    padding: 20px;
    position: relative;
}

.badge-new {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent-teal);
    color: var(--bg-darkest);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
}

.game-body {
    padding: 25px;
}

.jackpot {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.draw-date {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.description {
    font-size: 0.95rem;
    margin-bottom: 25px;
    min-height: 60px;
}


.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    text-align: center;
}

.step-card {
    padding: 20px;
}

.step-icon {
    font-size: 2.5rem;
    color: var(--accent-teal);
    margin-bottom: 20px;
}


.trust-section {
    background: linear-gradient(to right, var(--bg-dark), #162036);
}

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

.benefit-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 10px;
}

.benefit-item i {
    color: var(--primary-gold);
    font-size: 2rem;
    margin-bottom: 15px;
}


.results-table-container {
    overflow-x: auto;
}

.results-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
}

.results-table th,
.results-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.results-table th {
    background-color: #252f45;
    font-weight: 600;
    color: var(--primary-gold);
}

.winning-numbers {
    font-family: monospace;
    font-size: 1.1rem;
    color: var(--text-main);
    letter-spacing: 1px;
}


.faq-accordion details {
    background-color: var(--bg-card);
    margin-bottom: 10px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

.faq-accordion summary {
    padding: 15px 20px;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-accordion summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-gold);
}

.faq-accordion details[open] summary::after {
    content: '-';
}

.faq-accordion p {
    padding: 0 20px 20px 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
}


.cta-strip {
    background: linear-gradient(90deg, var(--accent-teal-dark) 0%, var(--accent-teal) 100%);
    padding: 40px 0;
    color: var(--bg-darkest);
}

.cta-strip h3 {
    color: var(--bg-darkest);
    margin-bottom: 5px;
}

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

.social-icons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.badge-18 {
    background: #ef4444;
    color: white;
    padding: 5px 10px;
    font-weight: bold;
    border-radius: 4px;
}

.badge-play,
.badge-auto {
    background: #334155;
    padding: 5px 10px;
    font-size: 0.8rem;
    border-radius: 4px;
}

.footer-bottom {
    background-color: #020617;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.small-legal {
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 5px;
}


.page-auth {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

.auth-card {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: 12px;
    width: 100%;
    max-width: 450px;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.wide-card {
    max-width: 800px;
}

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

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

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="date"],
input[type="tel"],
select {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-main);
    font-size: 1rem;
    font-family: inherit;
}

input:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.input-wrapper input {
    padding-left: 45px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.full-span {
    grid-column: 1 / -1;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.checkbox-container {
    display: flex;
    gap: 10px;
    cursor: pointer;
    align-items: start;
}

.divider {
    height: 1px;
    background-color: var(--border-color);
    margin: 20px 0;
}


.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(2, 6, 23, 0.98);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: 12px;
    max-width: 500px;
    text-align: center;
    border: 2px solid var(--border-color);
}

.modal-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.modal-warning {
    color: var(--primary-gold);
    font-weight: bold;
    margin: 20px 0;
}

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


.hero-small {
    background-color: var(--bg-dark);
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.principles-list li,
.risk-list li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.principles-list li::before {
    content: '•';
    color: var(--primary-gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.risk-list li::before {
    content: '!';
    color: #ef4444;
    position: absolute;
    left: 0;
    font-weight: bold;
}

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

.tool-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
}

.tool-item i {
    font-size: 2rem;
    color: var(--accent-teal);
    margin-bottom: 15px;
}


@media (max-width: 768px) {
    .site-header {
        padding: 0 10px;
    }

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

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

    .main-nav ul {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

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

    .auth-buttons {
        flex-direction: column;
        width: 100%;
    }

    .auth-buttons .btn {
        width: 100%;
        text-align: center;
    }

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

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

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

.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;
}

.rg-hero {
    background: linear-gradient(to bottom, #0f172a, #020617);
    padding: 80px 20px;
    border-bottom: 1px solid var(--border-color);
}

.rg-hero-icon {
    font-size: 3.5rem;
    color: var(--accent-teal);
    margin-bottom: 20px;
    display: inline-block;
    background: rgba(20, 184, 166, 0.1);
    padding: 20px;
    border-radius: 50%;
}

.rg-lead {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}


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

.principle-card {
    background-color: var(--bg-card);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: transform 0.2s;
}

.principle-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent-teal);
}

.p-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
}


.rg-tools-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rg-tool-row {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.rg-tool-icon {
    background-color: var(--bg-darkest);
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--primary-gold);
    font-size: 1.5rem;
    flex-shrink: 0;
    border: 1px solid var(--border-color);
}

.rg-tool-content h3 {
    margin-bottom: 10px;
    color: var(--text-main);
}

.rg-tool-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}


.bg-teal-dark-gradient {
    background: linear-gradient(135deg, #0f282d 0%, #020617 100%);
    border-top: 1px solid #134e4a;
    border-bottom: 1px solid #134e4a;
}

.rg-assessment-box {
    max-width: 700px;
    margin: 0 auto;
    background-color: rgba(2, 6, 23, 0.6);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid var(--accent-teal-dark);
}

.rg-assessment-box h2 {
    text-align: center;
    color: var(--accent-teal);
    margin-bottom: 30px;
}

.check-list {
    list-style: none;
    margin-bottom: 30px;
}

.check-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    color: var(--text-main);
    font-size: 1.05rem;
}

.check-list li::before {
    content: '?';
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background-color: var(--border-color);
    color: var(--text-muted);
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
    font-size: 0.8rem;
    font-weight: bold;
}


.flex-row-responsive {
    display: flex;
    align-items: center;
    gap: 40px;
}

.content-half {
    flex: 1;
}

.links-row {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.link-tag {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    color: var(--text-main);
}


.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.resource-card {
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: border-color 0.3s;
}

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

.resource-card h4 {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.resource-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.fake-link {
    font-size: 0.9rem;
    color: var(--text-main);
    font-weight: 600;
}


@media (max-width: 768px) {
    .rg-tool-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    .flex-row-responsive {
        flex-direction: column-reverse;
    }

    .rg-hero h1 {
        font-size: 1.8rem;
    }
}

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

.pb-0 {
    padding-bottom: 0;
}

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

.legal-content h3 {
    color: var(--text-main);
    font-size: 1.1rem;
    margin-top: 25px;
    margin-bottom: 10px;
}

.legal-content p,
.legal-content li {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 15px;
    text-align: justify;
}

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

.legal-index {
    background-color: var(--bg-dark);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.legal-index a {
    display: block;
    color: var(--accent-teal);
    margin-bottom: 8px;
    text-decoration: underline;
}

.legal-index a:hover {
    color: var(--text-main);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.cookie-table th,
.cookie-table td {
    border: 1px solid var(--border-color);
    padding: 12px;
    text-align: left;
}

.cookie-table th {
    background-color: var(--bg-dark);
    color: var(--primary-gold);
    font-weight: 600;
}

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


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

.browser-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--bg-dark);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    transition: all 0.3s;
}

.browser-btn:hover {
    border-color: var(--accent-teal);
    background-color: rgba(20, 184, 166, 0.1);
}

.legal-content {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.legal-content h2 {
    color: var(--primary-gold);
    margin-top: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.legal-content h3 {
    color: var(--text-main);
    margin-top: 25px;
}

.legal-content p,
.legal-content li {
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.7;
    text-align: justify;
}

.legal-index {
    background-color: var(--bg-dark);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.legal-index a {
    display: block;
    color: var(--accent-teal);
    margin-bottom: 8px;
    text-decoration: underline;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(2, 6, 23, 0.95);
    border-top: 1px solid var(--primary-gold);
    padding: 20px 0;
    z-index: 9990;
    backdrop-filter: blur(10px);
    display: none;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text p {
    font-size: 0.9rem;
    color: var(--text-main);
    margin: 0;
    max-width: 800px;
}

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


.cookie-modal-box {
    background-color: var(--bg-card);
    width: 100%;
    max-width: 600px;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    position: relative;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.modal-header h3 {
    margin: 0;
    color: var(--text-main);
}

.close-icon {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
}

.cookie-option-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.option-info h4 {
    margin: 0 0 5px 0;
    font-size: 1rem;
    color: var(--text-main);
}

.option-info p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    max-width: 380px;
}


.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

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

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #334155;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
}

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


.switch.disabled .slider {
    background-color: var(--accent-teal);
    opacity: 0.5;
    cursor: not-allowed;
}

input:focus+.slider {
    box-shadow: 0 0 1px var(--accent-teal);
}

input:checked+.slider:before {
    transform: translateX(24px);
}


.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}


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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-buttons .btn {
        width: 100%;
    }
}