:root {
    --primary-color: #003057;
    --primary-light: #004c8c;
    --accent-color: #008CBA;
    --bg-color: #f4f6f9;
    --card-bg: #ffffff;
    --text-main: #1a1a1a;
    --text-muted: #596b7d;
    --border-color: #e1e4e8;
    --success-color: #2e7d32;
    --error-color: #d32f2f;
    --radius: 8px;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

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

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

header {
    background-color: var(--card-bg);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

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

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

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

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

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

.btn-nav {
    background-color: var(--primary-color);
    color: white !important;
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius);
    transition: var(--transition);
}

.btn-nav:hover {
    background-color: var(--primary-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 48, 87, 0.2);
}

.btn-nav::after {
    display: none;
}

.mobile-menu-icon {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

main {
    flex: 1;
}

.hero {
    background: url('../img/hero.png') center center/cover no-repeat;
    color: white;
    padding: 5rem 0;
    text-align: center;
    margin-bottom: 3rem;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

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

.subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 2rem auto;
    font-weight: 300;
}

.hero-body {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--radius);
    backdrop-filter: blur(5px);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: -3rem;
}

.card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

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

.card .icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    background: rgba(0, 140, 186, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.card h2 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.page-content {
    background: var(--card-bg);
    padding: 3rem;
    margin-top: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.page-content h1 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.page-content h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.mission-section {
    background-color: #eef2f6;
    padding: 2rem;
    border-radius: var(--radius);
    border-left: 5px solid var(--primary-color);
    margin: 2.5rem 0;
}

.mission-section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.info-box {
    text-align: center;
    padding: 2rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    transition: var(--transition);
}

.info-box:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-sm);
}

.info-box i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.form-style {
    max-width: 500px;
    margin: 2rem auto 0;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background-color: #fafbfc;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(0, 140, 186, 0.1);
    background-color: white;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.checkbox-group input {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
}

.checkbox-group label {
    margin: 0;
    font-weight: 400;
    font-size: 0.9rem;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 48, 87, 0.25);
}

.success-message,
.error-message {
    padding: 1rem;
    border-radius: var(--radius);
    margin-top: 1.5rem;
    text-align: center;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.success-message {
    background-color: #e8f5e9;
    color: var(--success-color);
    border: 1px solid #c8e6c9;
}

.error-message {
    background-color: #ffebee;
    color: var(--error-color);
    border: 1px solid #ffcdd2;
}

.hidden {
    display: none !important;
}


.buy-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}

.ticket-area {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
}

.number-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 8px;
}

.num-btn {
    aspect-ratio: 1;
    border: 1px solid #d0d7de;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 50%;
    transition: all 0.2s ease;
    color: var(--text-muted);
}

.num-btn:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: scale(1.1);
}

.num-btn.selected {
    background-color: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
    box-shadow: 0 2px 5px rgba(0, 140, 186, 0.4);
    transform: scale(1.05);
}

.ticket-summary {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--primary-color);
    position: sticky;
    top: 100px;
}

.summary-box h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.selected-numbers-display {
    background-color: #eef2f6;
    padding: 1rem;
    border-radius: var(--radius);
    margin: 1rem 0;
    font-weight: 700;
    font-family: monospace;
    font-size: 1.2rem;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.auth-page {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

footer {
    background-color: #1a1a1a;
    color: white;
    padding: 4rem 0 2rem;
    margin-top: auto;
}

.footer-content {
    display: grid;
    text-align: center;
    gap: 2rem;
    text-align: left;
}

.footer-text p {
    font-size: 0.9rem;
    text-align: center;
    opacity: 0.8;
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.badge-18 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: white;
    color: var(--error-color);
    border-radius: 50%;
    font-weight: 800;
    font-size: 1.1rem;
    border: 3px solid var(--error-color);
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .header-container {
        position: relative;
    }

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

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        box-shadow: var(--shadow-md);
        border-top: 1px solid var(--border-color);
        gap: 0;
    }

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

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid #f0f0f0;
    }

    .btn-nav {
        margin-top: 1rem;
        display: inline-block;
        text-align: center;
    }

    .hero {
        padding: 3rem 0;
        clip-path: none;
    }

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

    .buy-layout {
        grid-template-columns: 1fr;
    }

    .number-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.trust-strip {
    background-color: white;
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 0;
    margin-top: -3rem;
    margin-bottom: 6rem;
    position: relative;
    z-index: 10;
    box-shadow: var(--shadow-sm);
}

.hero {
    margin-bottom: 0;
    padding-bottom: 6rem;
}

.trust-content {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-item i {
    color: var(--success-color);
    font-size: 1.2rem;
}


.main-features {
    margin-bottom: 4rem;
}

.icon-wrapper {
    margin-bottom: 1rem;
}


.legal-section {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 0;
    margin-top: 4rem;
}

.legal-content {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.legal-icon {
    font-size: 3rem;
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.1);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.legal-text h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.legal-text p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.8rem;
}

@media (max-width: 768px) {
    .trust-strip {
        margin-top: 0;
    }

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

.footer-content-imgs {
    margin-top: 10px;
    margin-bottom: 30px;
}

.footer-imgs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.footer-imgs img {
    height: 40px;
}

.page-header {
    text-align: center;
    margin: 3rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.subtitle-page {
    color: var(--text-muted);
    font-size: 1.1rem;
}


.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 4rem;
}


.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: var(--transition);
}

.info-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

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

.info-details h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: var(--text-main);
    font-weight: 700;
}

.info-details p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

.info-details .highlight-text {
    font-weight: 600;
    color: var(--primary-color);
}

.info-details small {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: #888;
}


.contact-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--primary-color);
}

.form-header {
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.form-header h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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


.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-form-wrapper input,
.contact-form-wrapper select,
.contact-form-wrapper textarea {
    background-color: #f8fafc;
}

.contact-form-wrapper input:focus,
.contact-form-wrapper select:focus,
.contact-form-wrapper textarea:focus {
    background-color: #fff;
}


.checkbox-group label {
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--text-muted);
}

.checkbox-group label a {
    color: var(--primary-color);
    text-decoration: underline;
}


@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-sidebar {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 1rem;
    }

    .info-card {
        min-width: 250px;
    }
}

@media (max-width: 600px) {
    .contact-sidebar {
        flex-direction: column;
    }

    .info-card {
        width: 100%;
    }

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

    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

.legal-text-wrapper {
    max-width: 900px !important;
    margin: 3rem auto;
}

.legal-header {
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

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

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

.legal-body {
    font-size: 1rem;
    line-height: 1.8;
    color: #2c3e50;
}

.legal-body h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}

.legal-body h3 {
    font-size: 1.2rem;
    color: var(--primary-light);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.legal-body p {
    margin-bottom: 1.2rem;
    text-align: justify;
}

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

.legal-body li {
    margin-bottom: 0.8rem;
    list-style-type: disc;
}

.legal-body strong {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .legal-body p {
        text-align: left;
    }
}

.helpline-box {
    background-color: #e3f2fd;
    border-left: 5px solid #2196f3;
    padding: 2rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 2rem 0 3rem 0;
    box-shadow: var(--shadow-sm);
}

.helpline-box i {
    font-size: 2.5rem;
    color: #2196f3;
}

.helpline-text h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.phone-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0.5rem 0;
    letter-spacing: 1px;
}

.safe-play-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.safe-play-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 1rem;
    background: white;
    padding: 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
}

.safe-play-list li i {
    color: var(--success-color);
    margin-top: 4px;
}

.legal-footer-note {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    text-align: center;
}

@media (max-width: 600px) {
    .helpline-box {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
}

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

.modal-box {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius);
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

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


.modal-icon.warning {
    font-size: 3rem;
    color: #f57c00;
    margin-bottom: 1.5rem;
}

.age-verification-box h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.age-verification-box p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.age-question {
    font-weight: 700;
    color: var(--text-main) !important;
    font-size: 1.1rem;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-main);
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.btn-secondary:hover {
    border-color: var(--text-main);
    background-color: #f8f9fa;
}


.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 9990;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

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

.cookie-text h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}


.cookie-settings-box {
    text-align: left;
    padding: 0;
    overflow: hidden;
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin: 0;
}

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

.modal-body {
    padding: 1.5rem;
    max-height: 60vh;
    overflow-y: auto;
}

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

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

.option-info strong {
    display: block;
    color: var(--text-main);
    margin-bottom: 0.2rem;
}

.option-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    background-color: #f9f9f9;
}

.full-width {
    width: 100%;
}


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

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

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

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

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

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

.toggle-switch.disabled .slider {
    background-color: #e0e0e0;
    cursor: not-allowed;
}

.toggle-switch.disabled input:checked+.slider {
    background-color: #a5d6a7;
}


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

    .cookie-buttons {
        width: 100%;
        justify-content: space-between;
    }

    .cookie-buttons button {
        flex: 1;
    }
}