:root {

    --primary-color: #004e92;
    --primary-dark: #002d55;
    --accent-color: #f6b93b;
    --accent-hover: #e5a510;


    --text-main: #2c3e50;
    --text-light: #636e72;
    --bg-body: #f8f9fa;
    --bg-white: #ffffff;


    --success-bg: #d4edda;
    --success-text: #155724;
    --error-bg: #f8d7da;
    --error-text: #721c24;


    --border-radius: 12px;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 16px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 12px 24px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}


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

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

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

ul {
    list-style: none;
}


header {
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--bg-white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

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

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--bg-white);
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.5px;
}

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

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

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


.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}


.auth-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.auth-buttons a::after {
    display: none;
}

.btn-login {
    color: var(--bg-white);
    font-weight: 600;
}

.btn-register {
    background-color: var(--accent-color);
    color: var(--primary-dark) !important;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700 !important;
    box-shadow: 0 4px 6px rgba(246, 185, 59, 0.3);
}

.btn-register:hover {
    background-color: var(--accent-hover);
    transform: translateY(-1px);
}


.hero { 
    background: linear-gradient(135deg, rgba(0, 78, 146, 0.85) 0%, rgba(0, 45, 85, 0.9) 100%), 
                url('../img/hero.png') center center/cover no-repeat;
    
    color: var(--bg-white);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
     
    background-blend-mode: multiply; 
}


.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.state-badge {
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(246, 185, 59, 0.4);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(246, 185, 59, 0.6);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--bg-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

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


section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 50px;
    font-weight: 700;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    margin: 15px auto 0;
    border-radius: 2px;
}


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

.game-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--primary-color);
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.game-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: var(--transition);
}

.game-card:hover .game-icon {
    transform: scale(1.1);
    color: var(--accent-color);
}

.game-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.game-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 0.95rem;
}


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

.feature-item {
    text-align: center;
    padding: 20px;
}

.feature-item i {
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: #eef4fb;
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 2rem;
    margin-bottom: 25px;
    transition: var(--transition);
}

.feature-item:hover i {
    background: var(--primary-color);
    color: var(--bg-white);
}

.feature-item h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.feature-item p {
    color: var(--text-light);
}


.form-container {
    max-width: 550px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #eef0f5;
    border-radius: 8px;
    font-size: 1rem;
    background-color: #fcfcfc;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 78, 146, 0.1);
    background-color: var(--bg-white);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.checkbox-group input {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
    cursor: pointer;
}


.results-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.results-table th,
.results-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.results-table th {
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

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

.results-table tr:hover td {
    background-color: #f8f9ff;
}

.age-warning {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #d9534f;
    color: #d9534f;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-weight: 800;
    margin-left: 10px;
    background: rgba(217, 83, 79, 0.1);
}


.alert-message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    display: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 5px solid transparent;
}

.alert-success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border-left-color: #2e7d32;
}

.alert-error {
    background-color: #ffebee;
    color: #c62828;
    border-left-color: #c62828;
}


.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--bg-white);
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        background-color: var(--primary-dark);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px;
        transition: right 0.3s ease-in-out;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        z-index: 999;
    }

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

    .nav-links a {
        font-size: 1.2rem;
        width: 100%;
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links a::after {
        display: none;
    }

    .hamburger {
        display: block;
        z-index: 1001;
    }

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

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
    }

    .btn {
        width: 100%;
    }

    .form-container {
        padding: 25px;
    }

    .games-grid,
    .features-grid {
        gap: 20px;
    }
}

footer {
    background-color: #020617;
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
    margin-top: auto;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: center;
    gap: 20px;
    color: #fff;
    padding-bottom: 40px;
    margin-bottom: 30px;
}

.footer-img {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.footer-img img {
    height: 70px;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}



.footer-links a {
    display: block;
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

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

.game-selector {
    margin-bottom: 30px;
    padding: 20px;
    background: #eef4fb;
    border-radius: var(--border-radius);
    border: 1px solid #dbe4ef;
}

.ticket-builder {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    padding: 30px;
    margin-bottom: 30px;
}

.numbers-section {
    margin-bottom: 25px;
}

.numbers-label {
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
    color: var(--primary-dark);
}

.number-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(40px, 1fr));
    gap: 10px;
    margin-bottom: 20px;
}

.lottery-ball {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #ddd;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
}

.lottery-ball:hover {
    border-color: var(--primary-color);
    background: #f0f8ff;
}

.lottery-ball.selected {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.lottery-ball.extra-ball.selected {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--primary-dark);
}

.game-info-panel {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 4px solid var(--accent-color);
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}


.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    max-width: 500px;
    width: 90%;
    transform: translateY(20px);
    transition: transform 0.3s;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-icon {
    font-size: 4rem;
    color: #2e7d32;
    margin-bottom: 20px;
}

.result-ball {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 28px;
    text-align: center;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ccc;
    margin-right: 4px;
    font-weight: bold;
    font-size: 0.85rem;
    color: var(--primary-dark);
}

.result-ball.extra {
    background-color: #fff4e6;
    border-color: var(--accent-color);
    color: #d35400;
}

.stat-bar {
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    margin-top: 5px;
    overflow: hidden;
}

.stat-fill {
    height: 100%;
    background: var(--primary-color);
    border-radius: 4px;
}

.stat-box {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border-bottom: 4px solid var(--accent-color);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.history-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.year-badge {
    background: var(--primary-dark);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    min-width: 80px;
    text-align: center;
}

.contact-info-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 15px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: #eef4fb;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h4 {
    margin-bottom: 5px;
    color: var(--primary-dark);
}

.contact-details a {
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-details a:hover {
    color: var(--accent-color);
}

.map-container {
    margin-top: 40px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 400px;
    width: 100%;
}

.auth-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}


.auth-tabs {
    display: flex;
    border-bottom: 2px solid #eee;
    margin-bottom: 25px;
}

.auth-tab {
    flex: 1;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    font-weight: 600;
    color: #777;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.auth-tab:hover {
    color: var(--primary-color);
    background: #f9f9f9;
}

.auth-tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: #fff;
}

.auth-tab img {
    height: 20px;
}


.security-box {
    background: #fff8e1;
    border: 1px solid #ffe0b2;
    padding: 20px;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    color: #8d6e63;
}

.security-box h4 {
    color: #e65100;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.id-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.id-method-btn {
    background: white;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 600;
    color: var(--primary-dark);
}

.id-method-btn:hover {
    border-color: var(--primary-color);
    background: #f0f8ff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.id-method-btn i {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.divider-text {
    text-align: center;
    position: relative;
    margin: 20px 0 30px;
    color: #777;
}

.divider-text::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #ddd;
    z-index: 1;
}

.divider-text span {
    background: #fff;
    padding: 0 15px;
    position: relative;
    z-index: 2;
    font-size: 0.9rem;
}

.legal-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.legal-sidebar {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 100px;
}

.legal-sidebar ul {
    list-style: none;
    padding: 0;
}

.legal-sidebar li {
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.legal-sidebar a {
    color: var(--primary-dark);
    text-decoration: none;
    font-size: 0.95rem;
    display: block;
    transition: color 0.2s;
}

.legal-sidebar a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.legal-content {
    flex: 3;
    min-width: 300px;
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.legal-content h2 {
    color: var(--primary-dark);
    margin-top: 30px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
    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 li {
    color: #444;
    margin-bottom: 15px;
    line-height: 1.7;
    text-align: justify;
}

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

.update-date {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 20px;
    font-style: italic;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.9rem;
}

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

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

.cookie-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.cookie-table tr:hover {
    background-color: #f1f1f1;
}

.info-box {
    background: #eef4fb;
    padding: 20px;
    border-left: 5px solid var(--primary-color);
    margin: 20px 0;
    border-radius: 4px;
}

.warning-box {
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    color: #856404;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.help-card {
    background: #eef4fb;
    border-left: 5px solid var(--primary-color);
    padding: 25px;
    margin-top: 30px;
    border-radius: 4px;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}

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

.myth-box {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.myth-title {
    color: #d9534f;
    font-weight: bold;
}

.fact-title {
    color: #5cb85c;
    font-weight: bold;
    margin-top: 5px;
    display: block;
}


.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;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.age-gate-content {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    border-top: 5px solid #d9534f;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #1a1a1a;
    color: white;
    padding: 20px;
    z-index: 9000;
    display: none;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
    border-top: 1px solid #333;
}

@media (min-width: 768px) {
    .cookie-banner {
        display: none;
        justify-content: space-between;
        align-items: center;
        padding: 20px 40px;
    }
}

.cookie-text h4 {
    margin-bottom: 5px;
    color: var(--white);
}

.cookie-text p {
    font-size: 0.9rem;
    color: #ccc;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

@media (min-width: 768px) {
    .cookie-buttons {
        margin-top: 0;
    }
}

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

.cookie-label p {
    margin: 0;
    font-size: 0.85rem;
    color: #777;
}

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

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

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

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

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

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