/* ==========================================================================
   Katalog Mreža — Dark Network-Catalogue Theme
   katalogmreza.com
   ========================================================================== */

/* --- Reset & Base -------------------------------------------------------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: #091517;
    color: #D9E4E2;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #3BC7A5;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover, a:focus {
    color: #E3A44C;
    outline: none;
}

ul {
    list-style: none;
}

/* --- Typography ---------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.25;
    color: #D9E4E2;
}

h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    font-weight: 600;
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

small, .text-small {
    font-size: 0.875rem;
    color: rgba(217, 228, 226, 0.65);
}

/* --- Container ----------------------------------------------------------- */
.container {
    width: 100%;
    max-width: 840px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* --- Header -------------------------------------------------------------- */
.site-header {
    background-color: #091517;
    border-bottom: 1px solid rgba(59, 199, 165, 0.12);
    padding: 0.9rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo-link {
    display: inline-flex;
    align-items: center;
}

.logo-link img,
.logo-link svg {
    height: 44px;
    width: auto;
}

/* --- Desktop: no visible menu -------------------------------------------- */
.desktop-nav {
    display: none;
}

/* --- Mobile Menu --------------------------------------------------------- */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: 1px solid rgba(59, 199, 165, 0.25);
    border-radius: 6px;
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    transition: border-color 0.2s;
}

.mobile-menu-toggle:hover {
    border-color: #3BC7A5;
}

.mobile-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: #3BC7A5;
    transition: transform 0.3s, opacity 0.3s;
    border-radius: 1px;
}

.mobile-menu-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(9, 21, 23, 0.98);
    z-index: 99;
    padding: 2rem 1.5rem;
    overflow-y: auto;
}

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

.mobile-menu nav ul {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-menu nav a {
    display: block;
    padding: 0.85rem 1rem;
    color: #D9E4E2;
    font-size: 1.05rem;
    border-radius: 8px;
    transition: background-color 0.2s, color 0.2s;
}

.mobile-menu nav a:hover,
.mobile-menu nav a:focus {
    background-color: rgba(59, 199, 165, 0.1);
    color: #3BC7A5;
}

/* --- Top Warning --------------------------------------------------------- */
.top-warning {
    background-color: rgba(227, 164, 76, 0.08);
    border-bottom: 1px solid rgba(227, 164, 76, 0.15);
    padding: 0.7rem 0;
    text-align: center;
}

.top-warning p {
    font-size: 0.8rem;
    color: rgba(217, 228, 226, 0.8);
    margin: 0;
    line-height: 1.4;
}

/* --- Hero Section -------------------------------------------------------- */
.hero {
    padding: 3.5rem 0 2.5rem;
    text-align: center;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 199, 165, 0.3), transparent);
}

.hero h1 {
    margin-bottom: 1rem;
    color: #D9E4E2;
}

.hero p {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: rgba(217, 228, 226, 0.75);
    max-width: 680px;
    margin: 0 auto 1.5rem;
    line-height: 1.7;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.85rem;
    font-size: 0.78rem;
    font-weight: 500;
    border-radius: 20px;
    background-color: rgba(59, 199, 165, 0.1);
    border: 1px solid rgba(59, 199, 165, 0.2);
    color: rgba(217, 228, 226, 0.85);
    letter-spacing: 0.02em;
}

/* --- Section Common ------------------------------------------------------ */
.section {
    padding: 2.5rem 0;
}

.section-title {
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-title h2 {
    color: #D9E4E2;
}

.section-title p {
    color: rgba(217, 228, 226, 0.6);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

/* --- Cards (Wide, One Per Row) ------------------------------------------ */
.card {
    background-color: #102A2D;
    border: 1px solid rgba(59, 199, 165, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 1.25rem;
    position: relative;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.card:hover {
    border-color: rgba(59, 199, 165, 0.2);
    box-shadow: 0 4px 24px rgba(59, 199, 165, 0.06);
}

.card-logo {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.card-logo img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.card-logo-bg-a { background-color: #166A69; }
.card-logo-bg-b { background-color: #A96635; }
.card-logo-bg-c { background-color: #4C6E91; }
.card-logo-bg-d { background-color: #745AA3; }
.card-logo-bg-e { background-color: #3E7C5D; }
.card-logo-bg-f { background-color: #75514A; }

.card-body {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.card-score {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: rgba(217, 228, 226, 0.5);
}

.card-score-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #3BC7A5;
    letter-spacing: -0.02em;
}

.card-score-label {
    font-size: 0.72rem;
    color: rgba(217, 228, 226, 0.4);
}

.card-description {
    font-size: 0.9rem;
    color: rgba(217, 228, 226, 0.8);
    line-height: 1.6;
    margin-bottom: 0;
}

.card-bullets {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.card-bullets li {
    font-size: 0.85rem;
    color: rgba(217, 228, 226, 0.7);
    padding-left: 1.1rem;
    position: relative;
    line-height: 1.5;
}

.card-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 5px;
    height: 5px;
    background-color: #3BC7A5;
    border-radius: 50%;
    opacity: 0.5;
}

.card-regulatory-note {
    font-size: 0.75rem;
    color: rgba(217, 228, 226, 0.35);
    font-style: italic;
    margin: 0;
}

.card-cta {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: #091517;
    background-color: #3BC7A5;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-family: inherit;
    line-height: inherit;
    transition: background-color 0.2s, transform 0.15s;
    margin-top: 0.25rem;
}

.card-cta:hover,
.card-cta:focus {
    background-color: #E3A44C;
    color: #091517;
    transform: translateY(-1px);
}

/* Highlighted card */
.card-highlighted {
    border-color: rgba(59, 199, 165, 0.25);
    background: linear-gradient(135deg, #102A2D 0%, #0d2325 100%);
}

/* --- Steps Section ------------------------------------------------------- */
.steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 1rem;
}

.step {
    background-color: rgba(16, 42, 45, 0.6);
    border: 1px solid rgba(59, 199, 165, 0.08);
    border-radius: 10px;
    padding: 1.35rem;
    position: relative;
    padding-left: 3.5rem;
}

.step-number {
    position: absolute;
    left: 1.25rem;
    top: 1.35rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #3BC7A5;
    opacity: 0.6;
}

.step h3 {
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
    color: #D9E4E2;
}

.step p {
    font-size: 0.85rem;
    color: rgba(217, 228, 226, 0.65);
    margin: 0;
    line-height: 1.55;
}

/* --- Payment Methods ----------------------------------------------------- */
.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1rem;
}

.payment-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 1rem;
    font-size: 0.78rem;
    background-color: rgba(16, 42, 45, 0.6);
    border: 1px solid rgba(217, 228, 226, 0.08);
    border-radius: 20px;
    color: rgba(217, 228, 226, 0.7);
}

/* --- Institutional Block ------------------------------------------------- */
.institution-block {
    background-color: rgba(16, 42, 45, 0.5);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(119, 102, 180, 0.15);
}

.institution-block p {
    font-size: 0.9rem;
    color: rgba(217, 228, 226, 0.7);
    margin: 0;
    line-height: 1.6;
}

.institution-block a {
    color: #7766B4;
}

/* --- Protection Block ---------------------------------------------------- */
.protection-block {
    background-color: rgba(16, 42, 45, 0.5);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(227, 164, 76, 0.15);
}

.protection-block p {
    font-size: 0.9rem;
    color: rgba(217, 228, 226, 0.7);
    margin: 0;
    line-height: 1.6;
}

/* --- FAQ ----------------------------------------------------------------- */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background-color: rgba(16, 42, 45, 0.5);
    border: 1px solid rgba(59, 199, 165, 0.06);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1rem 1.25rem;
    background: none;
    border: none;
    color: #D9E4E2;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-family: inherit;
    line-height: 1.4;
}

.faq-question::after {
    content: '+';
    font-size: 1.2rem;
    color: #3BC7A5;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-question.open::after {
    transform: rotate(45deg);
}

.faq-question:hover {
    background-color: rgba(59, 199, 165, 0.04);
}

.faq-answer {
    display: none;
    padding: 0 1.25rem 1rem;
    font-size: 0.85rem;
    color: rgba(217, 228, 226, 0.65);
    line-height: 1.6;
}

.faq-answer.open {
    display: block;
}

.faq-answer p {
    margin: 0;
}

/* --- Footer -------------------------------------------------------------- */
.site-footer {
    background-color: #050D0F;
    border-top: 1px solid rgba(59, 199, 165, 0.08);
    padding: 3rem 0 2rem;
    margin-top: 2rem;
}

.footer-paragraphs {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.footer-paragraphs p {
    font-size: 0.85rem;
    color: rgba(217, 228, 226, 0.55);
    line-height: 1.7;
    margin: 0;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem 3rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(59, 199, 165, 0.06);
}

.footer-nav-col h4 {
    font-size: 0.8rem;
    color: rgba(217, 228, 226, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

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

.footer-nav-col a {
    font-size: 0.82rem;
    color: rgba(217, 228, 226, 0.45);
    transition: color 0.2s;
}

.footer-nav-col a:hover,
.footer-nav-col a:focus {
    color: #3BC7A5;
}

.footer-line {
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid rgba(59, 199, 165, 0.06);
    font-size: 0.8rem;
    color: rgba(217, 228, 226, 0.45);
    margin: 0 0 1.5rem;
}

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

.footer-resources h3 {
    font-size: 0.9rem;
    color: rgba(217, 228, 226, 0.5);
    margin-bottom: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.footer-images a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.footer-images a:hover,
.footer-images a:focus {
    opacity: 1;
}

.footer-images img {
    height: 40px;
    width: auto;
}

/* --- Popup (18+) --------------------------------------------------------- */
.age-popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(9, 21, 23, 0.92);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.age-popup-overlay.show {
    display: flex;
}

.age-popup {
    background-color: #102A2D;
    border: 1px solid rgba(59, 199, 165, 0.15);
    border-radius: 14px;
    padding: 2.5rem 2rem;
    max-width: 380px;
    width: 90%;
    text-align: center;
}

.age-popup h2 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #D9E4E2;
}

.age-popup p {
    font-size: 0.9rem;
    color: rgba(217, 228, 226, 0.6);
    margin-bottom: 1.5rem;
}

.age-popup-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.age-popup-btn {
    padding: 0.6rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    font-family: inherit;
}

.age-popup-btn-yes {
    background-color: #3BC7A5;
    color: #091517;
}

.age-popup-btn-yes:hover {
    background-color: #35b394;
}

.age-popup-btn-no {
    background-color: transparent;
    color: #D9E4E2;
    border: 1px solid rgba(217, 228, 226, 0.2);
}

.age-popup-btn-no:hover {
    background-color: rgba(217, 228, 226, 0.05);
}

/* --- Cookie Banner ------------------------------------------------------- */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #102A2D;
    border-top: 1px solid rgba(59, 199, 165, 0.1);
    padding: 1rem 1.25rem;
    z-index: 900;
}

.cookie-banner.show {
    display: block;
}

.cookie-banner-inner {
    max-width: 840px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.cookie-banner p {
    font-size: 0.8rem;
    color: rgba(217, 228, 226, 0.6);
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.cookie-banner a {
    color: #3BC7A5;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 0.45rem 1.25rem;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    font-family: inherit;
}

.cookie-btn-accept {
    background-color: #3BC7A5;
    color: #091517;
}

.cookie-btn-accept:hover {
    background-color: #35b394;
}

.cookie-btn-reject {
    background-color: transparent;
    color: #D9E4E2;
    border: 1px solid rgba(217, 228, 226, 0.15);
}

.cookie-btn-reject:hover {
    background-color: rgba(217, 228, 226, 0.05);
}

/* --- Internal Transition Page -------------------------------------------- */
.transition-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    text-align: center;
    padding: 3rem 1.25rem;
}

.transition-page p {
    font-size: 0.95rem;
    color: rgba(217, 228, 226, 0.7);
    margin-bottom: 0.5rem;
}

/* --- Public Pages -------------------------------------------------------- */
.page-content {
    padding: 2.5rem 0 3rem;
}

.page-content h1 {
    margin-bottom: 1.5rem;
}

.page-content h2 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.page-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.page-content p,
.page-content li {
    font-size: 0.925rem;
    color: rgba(217, 228, 226, 0.75);
    line-height: 1.7;
}

.page-content ul,
.page-content ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.page-content ul li {
    list-style: disc;
    margin-bottom: 0.3rem;
}

.page-content ol li {
    list-style: decimal;
    margin-bottom: 0.3rem;
}

.page-content a {
    color: #3BC7A5;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.page-content a:hover {
    color: #E3A44C;
}

.page-content .warning-box {
    background-color: rgba(227, 164, 76, 0.06);
    border: 1px solid rgba(227, 164, 76, 0.12);
    border-radius: 8px;
    padding: 1.25rem;
    margin: 1.5rem 0;
    font-size: 0.85rem;
    color: rgba(217, 228, 226, 0.65);
}

/* --- Contact Form -------------------------------------------------------- */
.contact-form {
    max-width: 520px;
    margin-top: 1.5rem;
}

.contact-form .form-group {
    margin-bottom: 1rem;
}

.contact-form label {
    display: block;
    font-size: 0.85rem;
    color: rgba(217, 228, 226, 0.7);
    margin-bottom: 0.35rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.65rem 0.85rem;
    background-color: rgba(16, 42, 45, 0.6);
    border: 1px solid rgba(59, 199, 165, 0.12);
    border-radius: 6px;
    color: #D9E4E2;
    font-size: 0.9rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #3BC7A5;
}

.contact-form textarea {
    min-height: 110px;
    resize: vertical;
}

.contact-form button {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #091517;
    background-color: #3BC7A5;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-family: inherit;
    transition: background-color 0.2s;
}

.contact-form button:hover {
    background-color: #35b394;
}

/* --- Thank You Page ------------------------------------------------------ */
.thank-you-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    text-align: center;
    padding: 3rem 1.25rem;
}

.thank-you-page h1 {
    margin-bottom: 1rem;
}

.thank-you-page p {
    font-size: 1rem;
    color: rgba(217, 228, 226, 0.65);
    margin-bottom: 2rem;
}

.thank-you-page .back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #091517;
    background-color: #3BC7A5;
    border-radius: 6px;
}

.thank-you-page .back-link:hover {
    background-color: #35b394;
    color: #091517;
}

/* --- Bottom Warning ------------------------------------------------------ */
.bottom-warning {
    padding: 1rem 0;
    text-align: center;
}

.bottom-warning p {
    font-size: 0.8rem;
    color: rgba(217, 228, 226, 0.6);
    margin: 0;
    line-height: 1.5;
}

/* --- Responsive ---------------------------------------------------------- */
@media (min-width: 768px) {
    .steps {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .step {
        padding: 1.35rem;
    }

    .step-number {
        position: static;
        margin-bottom: 0.5rem;
    }

    .cookie-banner-inner {
        flex-wrap: nowrap;
    }
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }

    .mobile-menu {
        display: none !important;
    }

    .card {
        grid-template-columns: 130px 1fr;
        padding: 1.75rem;
    }

    .card-logo {
        width: 130px;
        height: 130px;
    }
}

/* --- Turnstile Verification Modal --------------------------------------- */
.turnstile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1100;
    justify-content: center;
    align-items: center;
    background-color: rgba(9, 21, 23, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.turnstile-overlay.show {
    display: flex;
}

.turnstile-modal {
    background-color: #102A2D;
    border: 1px solid rgba(59, 199, 165, 0.15);
    border-radius: 14px;
    padding: 2rem 1.5rem 1.5rem;
    max-width: 380px;
    width: 90%;
    text-align: center;
    position: relative;
}

.turnstile-modal h2 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: #D9E4E2;
}

.turnstile-modal p {
    font-size: 0.85rem;
    color: rgba(217, 228, 226, 0.6);
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.turnstile-modal .turnstile-close {
    position: absolute;
    top: 0.5rem;
    right: 0.75rem;
    background: none;
    border: none;
    color: rgba(217, 228, 226, 0.4);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    line-height: 1;
    font-family: inherit;
    transition: color 0.2s;
}

.turnstile-modal .turnstile-close:hover {
    color: #D9E4E2;
}

#turnstile-container {
    display: flex;
    justify-content: center;
    min-height: 65px;
}

/* --- Print --------------------------------------------------------------- */
@media print {
    .age-popup-overlay,
    .cookie-banner,
    .turnstile-overlay,
    .mobile-menu-toggle,
    .mobile-menu {
        display: none !important;
    }
}
