:root {
    --bg-dark: #0b1120;
    --bg-card: #151e32;
    --bg-card-hover: #1e293b;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --aurora-cyan: #00f2fe;
    --aurora-green: #4facfe;
    --aurora-purple: #8b5cf6;
    --border-color: #334155;
    --container-width: 1200px;
    --transition: all 0.3s ease;
}


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

html {
    scroll-behavior: smooth;
}

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

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

a:hover {
    color: var(--aurora-green);
}

ul {
    list-style: none;
}


h1,
h2,
h3,
h4 {
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-main);
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

.gradient-text {
    background: linear-gradient(to right, var(--aurora-cyan), var(--aurora-green), var(--aurora-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    max-width: 700px;
    margin: -2rem auto 3rem auto;
    font-size: 1.1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}


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

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

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

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


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--aurora-cyan) 0%, var(--aurora-green) 100%);
    color: var(--bg-dark);
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 242, 254, 0.5);
    color: var(--bg-dark);
}

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

.btn-outline:hover {
    background: rgba(0, 242, 254, 0.1);
    transform: translateY(-2px);
}


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

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: var(--container-width);
    margin: 0 auto;
}

.logo-box {
    display: flex;
    flex-direction: column;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.domain-tag {
    font-size: 0.75rem;
    color: var(--aurora-cyan);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 500;
}

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

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

.hero {
    position: relative;
    padding: 12rem 0 8rem;
    background-image: linear-gradient(rgba(11, 17, 32, 0.8), rgba(11, 17, 32, 0.95)), url('../img/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    max-width: 900px;
    margin: 0 auto 1.5rem;
}

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

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

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

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
}

.highlight-item i {
    color: var(--aurora-green);
}


.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.stat-card {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.stat-card h4 {
    font-size: 2rem;
    color: var(--aurora-cyan);
    margin-bottom: 0.5rem;
}


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

.card:hover {
    transform: translateY(-5px);
    border-color: var(--aurora-cyan);
    background: var(--bg-card-hover);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--aurora-cyan);
    margin-bottom: 1.5rem;
    display: inline-block;
    background: linear-gradient(135deg, var(--aurora-cyan) 0%, var(--aurora-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}


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

.tech-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.tech-item i {
    font-size: 1.8rem;
    color: var(--aurora-green);
    background: rgba(79, 172, 254, 0.1);
    padding: 1rem;
    border-radius: 8px;
}


.compliance-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.compliance-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.compliance-list i {
    color: var(--aurora-cyan);
    font-size: 1.2rem;
}


.architecture-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.diagram {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.diag-core {
    background: linear-gradient(135deg, var(--aurora-cyan), var(--aurora-purple));
    color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    position: relative;
}

.diag-lines {
    display: flex;
    justify-content: space-around;
    height: 40px;
    margin-top: -2rem;
    margin-bottom: 2rem;
}

.diag-lines div {
    width: 2px;
    background: var(--aurora-cyan);
    height: 100%;
}

.diag-apis {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.diag-api {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    padding: 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    flex: 1;
}

.api-list {
    margin-top: 2rem;
    padding-left: 1.5rem;
}

.api-list li {
    list-style-type: disc;
    color: var(--aurora-cyan);
    margin-bottom: 0.5rem;
}

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


.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border-color: var(--aurora-cyan);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 242, 254, 0.15);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, var(--aurora-cyan), var(--aurora-green));
    color: var(--bg-dark);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.price-model {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 1.5rem 0;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.pricing-features {
    text-align: left;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.pricing-features i {
    color: var(--aurora-green);
    margin-top: 0.3rem;
}


.success-card {
    background: var(--bg-card);
    border-left: 4px solid var(--aurora-cyan);
    padding: 2rem;
    border-radius: 0 12px 12px 0;
    margin-bottom: 1.5rem;
}

.success-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.success-geo {
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    color: #fff;
}

.success-results {
    margin-top: 1rem;
    color: var(--text-main);
    font-weight: 500;
}


.testimonial {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 12px;
    position: relative;
    border: 1px solid var(--border-color);
}

.fa-quote-left {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.05);
}

.test-text {
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.test-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-muted);
}

.author-info h4 {
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.author-info p {
    margin: 0;
    font-size: 0.9rem;
}


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

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

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.accordion-header:hover {
    color: var(--aurora-cyan);
}

.accordion-header i {
    transition: transform 0.3s ease;
}

.accordion-header.active i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: var(--bg-dark);
}

.accordion-content p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
}


.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--aurora-cyan);
    margin-top: 0.2rem;
}

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

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: var(--bg-dark);
    color: var(--text-main);
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--aurora-cyan);
    box-shadow: 0 0 0 2px rgba(0, 242, 254, 0.2);
}

.form-message {
    display: none;
    padding: 1rem;
    border-radius: 8px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--aurora-green);
    border: 1px solid var(--aurora-green);
    text-align: center;
    font-weight: 500;
}


footer {
    background: #060b14;
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

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

.footer-col h5 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-col a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-col a:hover {
    color: var(--aurora-cyan);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--aurora-cyan);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.85rem;
    margin: 0;
}

.rg-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
}

.rg-icon {
    font-size: 0.7rem;
    color: var(--text-main);
    border: 2px solid var(--text-main);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}


@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }

    .architecture-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(11, 17, 32, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        text-align: center;
        border-bottom: 1px solid var(--border-color);
    }

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

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

    .hero {
        padding: 8rem 0 5rem;
    }

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

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

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

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

    .hero-highlights {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}

.privacy-section {
    padding: 8rem 0 6rem;
    background: var(--bg-dark);
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 4rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.privacy-header h2 {
    margin-bottom: 0.5rem;
}

.last-updated {
    font-size: 0.9rem;
    color: var(--aurora-cyan);
    font-weight: 500;
}

.privacy-content h3 {
    font-size: 1.5rem;
    color: var(--text-main);
    margin: 2.5rem 0 1rem;
}

.privacy-content h4 {
    font-size: 1.1rem;
    color: var(--aurora-green);
    margin: 1.5rem 0 0.5rem;
}

.privacy-content p {
    margin-bottom: 1.2rem;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

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

.privacy-content li {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    position: relative;
    list-style-type: disc;
}

.privacy-content li::marker {
    color: var(--aurora-cyan);
}

.privacy-content a {
    color: var(--aurora-cyan);
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: var(--transition);
}

.privacy-content a:hover {
    text-decoration-color: var(--aurora-cyan);
}

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

.tos-section {
    padding: 8rem 0 6rem;
    background: var(--bg-dark);
}

.tos-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 4rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.tos-header h2 {
    margin-bottom: 0.5rem;
}

.tos-date {
    font-size: 0.9rem;
    color: var(--aurora-cyan);
    font-weight: 500;
}

.tos-content h3 {
    font-size: 1.5rem;
    color: var(--text-main);
    margin: 2.5rem 0 1rem;
    border-left: 3px solid var(--aurora-green);
    padding-left: 1rem;
}

.tos-content h4 {
    font-size: 1.1rem;
    color: var(--aurora-cyan);
    margin: 1.5rem 0 0.5rem;
}

.tos-content p {
    margin-bottom: 1.2rem;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

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

.tos-content li {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    position: relative;
    line-height: 1.6;
    list-style-type: none;
}

.tos-content li::before {
    content: "•";
    color: var(--aurora-cyan);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.tos-content strong {
    color: var(--text-main);
}

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

    .tos-content h3 {
        font-size: 1.3rem;
    }
}

.cookie-section {
    padding: 8rem 0 6rem;
    background: var(--bg-dark);
}

.cookie-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 4rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.cookie-header h2 {
    margin-bottom: 0.5rem;
}

.cookie-date {
    font-size: 0.9rem;
    color: var(--aurora-cyan);
    font-weight: 500;
}

.cookie-content h3 {
    font-size: 1.5rem;
    color: var(--text-main);
    margin: 2.5rem 0 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.cookie-content h3 i {
    color: var(--aurora-cyan);
    font-size: 1.2rem;
}

.cookie-content p {
    margin-bottom: 1.2rem;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.cookie-content a {
    color: var(--aurora-cyan);
    text-decoration: none;
    border-bottom: 1px dashed var(--aurora-cyan);
    transition: var(--transition);
}

.cookie-content a:hover {
    color: var(--aurora-green);
    border-bottom-color: var(--aurora-green);
}

/* Cookie Table Styles */
.cookie-table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    background: var(--bg-dark);
}

.cookie-table th,
.cookie-table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    background: rgba(0, 242, 254, 0.05);
    color: var(--text-main);
    font-weight: 600;
}

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

.cookie-table td {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-table td strong {
    color: var(--aurora-green);
    display: block;
    margin-bottom: 0.3rem;
}

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

    .cookie-table th,
    .cookie-table td {
        padding: 0.8rem 1rem;
    }
}


.hidden {
    display: none !important;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 17, 32, 0.95);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 1;
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    position: relative;
}

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

.age-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 242, 254, 0.1);
    color: var(--aurora-cyan);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    border: 2px solid var(--aurora-cyan);
}

.age-icon span {
    position: absolute;
    font-weight: 800;
    font-size: 1.2rem;
    bottom: 10px;
    background: var(--bg-card);
    padding: 0 5px;
}

.modal-actions-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(21, 30, 50, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--aurora-cyan);
    padding: 1.5rem 5%;
    z-index: 9998;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.5s ease-out;
}

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

    to {
        transform: translateY(0);
    }
}

.cookie-banner-text h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.cookie-banner-text p {
    margin: 0;
    font-size: 0.9rem;
    max-width: 800px;
}

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

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

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

.close-btn:hover {
    color: var(--aurora-cyan);
}

.cookie-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.option-text h4 {
    margin-bottom: 0.2rem;
    font-size: 1rem;
}

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

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

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

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

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

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

input:checked+.slider {
    background-color: var(--aurora-green);
    border-color: var(--aurora-green);
}

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

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

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

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

@media (max-width: 992px) {
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-banner-actions {
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .cookie-banner-actions .btn {
        flex: 1;
        text-align: center;
    }
}