/* ==========================================================================
   1. CSS RESET & GLOBAL STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
        sans-serif;
    background-color: #f8fafc;
    color: #1e293b;
    overflow-x: hidden;
}

/* ==========================================================================
   2. NAVBAR & NAVIGATION LAYOUT
   ========================================================================== */
.top-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #eaeaea;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    font-weight: 900;
    font-size: 1.2rem;
    text-decoration: none;
    color: #1e293b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: opacity 0.2s ease;
}

.nav-logo:hover {
    opacity: 0.8;
}

@media screen and (min-width: 600px) {
    .top-nav {
        flex-direction: row;
        justify-content: space-between;
        padding: 15px 30px;
    }
}

/* ==========================================================================
   3. UNIFIED TOOLBAR BUTTONS Framework
   ========================================================================== */
.nav-buttons-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-switcher,
.info-switcher-wrapper {
    position: relative;
    display: inline-block;
}

.lang-checkbox,
.info-checkbox {
    display: none;
}

.lang-button,
.info-icon-button {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #555555;
    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.lang-button:hover,
.info-icon-button:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: #000000;
}

.translate-icon,
.info-svg-icon {
    width: 22px;
    height: 22px;
}

/* ==========================================================================
   4. WIDGET 1: LANGUAGE SELECTION MENU
   ========================================================================== */
.lang-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.lang-bubble {
    position: absolute;
    top: 48px;
    right: 0;
    width: 220px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    padding: 12px 0;
    z-index: 999;
    opacity: 0;
    transform: scale(0.85);
    transform-origin: top right;
    pointer-events: none;
    transition:
        opacity 0.2s ease,
        transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lang-bubble-title {
    font-size: 11px;
    text-transform: uppercase;
    color: #888888;
    padding: 0 16px 8px 16px;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #f0f0f0;
}

.lang-list {
    list-style: none;
}

.lang-item {
    display: block;
    padding: 10px 16px;
    color: #333333;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.15s ease;
}

.lang-item:hover {
    background-color: #f5f5f5;
}

.lang-checkbox:checked ~ .lang-overlay {
    opacity: 1;
    pointer-events: auto;
}
.lang-checkbox:checked ~ .lang-bubble {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

/* ==========================================================================
   5. WIDGET 2: TRANSPARENCY & FUNDING MODAL
   ========================================================================== */
.info-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden; /* <--- Hide invisible backdrop from Safari */
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.info-modal-window {
    position: fixed;
    top: 5vh; /* 5% from the top of the screen */
    left: 50%;
    transform: translateX(-50%) scale(0.95); /* Only center horizontally */
    width: 90%;
    max-width: 650px;
    max-height: 85dvh; /* 'dvh' fixes mobile Chrome URL bar jumping */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; /* Forces smooth scroll on Safari iOS */
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    padding: 32px;
    z-index: 10001;
    opacity: 0;
    visibility: hidden; /* <--- THIS FIXES THE SAFARI BUG */
    pointer-events: none;
    transition:
        opacity 0.25s ease,
        transform 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}

.info-close-btn {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 28px;
    color: #aaaaaa;
    cursor: pointer;
    line-height: 1;
    transition: color 0.15s ease;
}

.info-close-btn:hover {
    color: #333333;
}

.info-modal-content h2 {
    margin-top: 0;
    color: #111111;
    font-size: 22px;
}
.info-modal-content h3 {
    color: #333333;
    font-size: 16px;
    margin-top: 24px;
    margin-bottom: 8px;
}
.info-modal-content p {
    color: #555555;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 12px 0;
}
.info-divider {
    border: 0;
    border-top: 1px solid #e0e0e0;
    margin: 16px 0;
}
.info-contact-list {
    list-style: none;
}
.info-contact-list li {
    font-size: 14px;
    color: #555555;
    margin-bottom: 6px;
}

.info-checkbox:checked ~ .info-overlay {
    opacity: 1;
    pointer-events: auto;
}
.info-checkbox:checked ~ .info-modal-window {
    opacity: 1;
    visibility: visible; /* <--- Makes it readable to Safari */
    z-index: 10005; /* <--- Brings active modal to absolute front */
    transform: translateX(-50%) scale(1);
    pointer-events: auto;
}

.info-funding-title {
    margin-top: 20px;
    font-size: 14px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #64748b;
}

.info-modal-content .info-logos-grid {
    display: flex !important;
    flex-direction: column;
    gap: 32px 24px;
    margin-top: 20px;
    width: 100%;
}

.info-logos-grid .info-logo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: #334155;
    transition: transform 0.2s ease;
    width: 100%;
}

.info-logo-card:hover {
    transform: translateY(-2px);
}

.info-logo-wrapper {
    width: 100%;
    max-width: 180px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.info-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.info-logo-text {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    margin-top: 4px;
}

@media screen and (min-width: 480px) {
    .info-modal-content .info-logos-grid {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: space-between !important;
        align-items: flex-start !important;
    }
    .info-logos-grid .info-logo-card {
        flex: none !important;
        width: 46% !important;
    }
}

/* ==========================================================================
   6. HERO & HERO IMAGE BLENDING ENGINE
   ========================================================================== */
.gradient-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 120px 20px 40px 20px;
    background: linear-gradient(135deg, #ff7eb3, #8b5cf6);
    position: relative;
    overflow: hidden;
}

.header-text-layer {
    position: relative;
    z-index: 10;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.hero-content {
    margin-top: 25vh;
}

.gradient-section h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    color: white;
    font-weight: 800;
}

.gradient-section p {
    font-size: 1.5rem;
    opacity: 0.9;
    color: white;
}

@media screen and (min-width: 768px) {
    .gradient-section h1 {
        font-size: 4.5rem;
    }
}

.gradient-section::before,
.gradient-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: grayscale(100%);
    transform: scale(1.02);
    opacity: 0.15;
    pointer-events: none;
}

.gradient-section::before {
    z-index: 1;
    background: url("images/mother.webp") center/cover no-repeat;
}

.gradient-section::after {
    z-index: 2;
    background: url("images/addiction.webp") center/cover no-repeat;
    -webkit-mask-image: linear-gradient(to right, transparent 20%, black 80%);
    mask-image: linear-gradient(to right, transparent 20%, black 80%);
}

.scroll-arrow {
    animation: bounceArrow 2s infinite ease-in-out;
    margin-bottom: 20px;
}

@keyframes bounceArrow {
    0%,
    100% {
        transform: translateY(0);
        opacity: 0.4;
    }
    50% {
        transform: translateY(10px);
        opacity: 1;
    }
}

/* ==========================================================================
   7. INTERACTIVE TILES & EXPANSION ENGINE
   ========================================================================== */
.tile-section {
    padding: 40px 20px;
    background-color: #f8fafc;
}

.tile-grid {
    max-width: 950px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tile-card {
    background-color: white;
    border: 2px solid #e2e8f0;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: all 0.2s ease;
}

.tile-card h3 {
    font-size: 1.4rem;
    padding: 5px;
    color: #1e293b;
    margin-bottom: 5px;
}

.tile-card p {
    font-size: 0.95rem;
    color: #64748b;
}

.tile-card:hover {
    border-color: #8b5cf6;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
}

@media screen and (min-width: 768px) {
    .tile-grid {
        flex-direction: row;
    }
    .tile-card {
        flex: 1;
    }
}

.state-toggle {
    display: none;
}

.revealed-gradient-block {
    display: none;
    padding: 60px 20px;
    background: linear-gradient(135deg, #ff7eb3, #8b5cf6);
}

.white-text-box {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.white-text-box h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #1e293b;
}

.white-text-box p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #334155;
    margin-bottom: 10px;
}

.contact-action-box {
    background-color: #faf5ff;
    border-left: 4px solid #8b5cf6;
    padding: 20px;
    margin: 25px 0;
    border-radius: 0 8px 8px 0;
}

.contact-action-box h3 {
    font-size: 1.1rem;
    color: #6b21a8;
    margin-bottom: 5px;
}

.phone-link,
.mail-link {
    color: #8b5cf6;
    text-decoration: none;
    font-weight: bold;
}

.phone-link:hover,
.mail-link:hover {
    text-decoration: underline;
}

#toggle-topic-1:checked ~ .dynamic-content-area #content-section-1,
#toggle-topic-2:checked ~ .dynamic-content-area #content-section-2,
#toggle-topic-3:checked ~ .dynamic-content-area #content-section-3 {
    display: block;
}

#toggle-topic-1:checked ~ .tile-section #btn-tile-1,
#toggle-topic-2:checked ~ .tile-section #btn-tile-2,
#toggle-topic-3:checked ~ .tile-section #btn-tile-3 {
    border-color: #ff7eb3;
    background-color: #faf5ff;
    box-shadow: inset 0 0 0 1px #ff7eb3;
}

.danger-zone {
    margin-top: 40px;
    border-top: 2px dashed #e2e8f0;
    padding-top: 30px;
}

.danger-zone h2 {
    color: #dc2626;
}

.danger-zone a {
    color: #dc2626;
    font-weight: 800;
}

/* ==========================================================================
   8. NOVI INTERAKTIVNI TESTI (KVIZI) STILI
   ========================================================================== */
.quiz-container {
    background: #f1f5f9;
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
    border: 1px solid #e2e8f0;
}

.quiz-main-title {
    font-size: 1.2rem;
    color: #1e293b;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #cbd5e1;
    padding-bottom: 8px;
}

.quiz-step {
    display: none;
}

.quiz-step.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.quiz-question {
    font-weight: 600;
    font-size: 1.1rem !important;
    color: #0f172a;
    margin-bottom: 15px !important;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quiz-btn {
    background: white;
    border: 1px solid #cbd5e1;
    padding: 14px 18px;
    border-radius: 8px;
    text-align: left;
    cursor: pointer;
    font-size: 0.95rem;
    color: #334155;
    transition: all 0.2s ease;
    line-height: 1.4;
}

.quiz-btn:hover {
    border-color: #8b5cf6;
    background: #f5f3ff;
    transform: translateX(4px);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: white;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    cursor: pointer;
}

.checkbox-label input {
    margin-top: 4px;
}

.quiz-submit-btn,
.reset-quiz-btn {
    background: #1e293b;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s;
}

.quiz-submit-btn:hover {
    background: #0f172a;
}
.reset-quiz-btn {
    background: #64748b;
    margin-top: 15px;
}
.reset-quiz-btn:hover {
    background: #475569;
}

.result-box {
    background: white;
    border-left: 4px solid #22c55e;
    padding: 20px;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.result-box h4 {
    font-size: 1.15rem;
    color: #16a34a;
    margin-bottom: 10px;
}

.nujna-pomoc-btn {
    display: block;
    background: #8b5cf6;
    color: white;
    text-align: center;
    padding: 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1rem;
    transition:
        transform 0.2s,
        background-color 0.2s;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.nujna-pomoc-btn:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   9. BLOG SEKCIJA S DRSNIKOM (SLIDER)
   ========================================================================== */
.blog-section {
    padding: 60px 20px;
    background-color: #f1f5f9;
    border-top: 1px solid #e2e8f0;
}

.blog-container {
    max-width: 1100px;
    margin: 0 auto;
}

.blog-section-title {
    text-align: center;
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 8px;
}

.blog-section-subtitle {
    text-align: center;
    color: #64748b;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.blog-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 10px 0;
    scrollbar-width: none; /* Skrije scrollbar na Firefoxu */
}

.blog-slider::-webkit-scrollbar {
    display: none; /* Skrije scrollbar na Chrome/Safari */
}

.blog-card {
    flex: 0 0 280px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.03);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    border: 1px solid #e2e8f0;
}

@media screen and (min-width: 600px) {
    .blog-card {
        flex: 0 0 320px;
    }
}

.blog-card-image {
    height: 180px;
    background-size: cover;
    background-position: center;
}

.blog-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-tag {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    color: #8b5cf6;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: inline-block;
}

.blog-card-content h3 {
    font-size: 1.25rem;
    color: #1e293b;
    margin-bottom: 10px;
    line-height: 1.3;
}

.blog-excerpt {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.read-more-btn {
    background: transparent;
    border: 2px solid #8b5cf6;
    color: #8b5cf6;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
    text-align: center;
}

.read-more-btn:hover {
    background: #8b5cf6;
    color: white;
}

.slider-arrow {
    background: white;
    border: 1px solid #cbd5e1;
    color: #1e293b;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.2s;
}

.slider-arrow:hover {
    background: #f8fafc;
    color: #8b5cf6;
}
.slider-arrow.prev {
    left: -25px;
}
.slider-arrow.next {
    right: -25px;
}

@media screen and (max-width: 768px) {
    .slider-arrow {
        display: none;
    }
}

/* ==========================================================================
   10. PURE CSS BLOG MODALS (Matches info modal behavior exactly)
   ========================================================================== */
.blog-modal-checkbox {
    display: none;
}

.blog-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.blog-modal-overlay-bg-close {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.blog-modal-window {
    position: fixed;
    top: 5vh; /* 5% from the top of the screen */
    left: 50%;
    transform: translateX(-50%) scale(0.95); /* Only center horizontally */
    width: 90%;
    max-width: 650px;
    max-height: 85dvh; /* 'dvh' fixes mobile Chrome URL bar jumping */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; /* Forces smooth scroll on Safari iOS */
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    padding: 32px;
    z-index: 10001;
    opacity: 0;
    visibility: hidden; /* <--- THIS FIXES THE SAFARI BUG */
    pointer-events: none;
    transition:
        opacity 0.25s ease,
        transform 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}

.blog-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 28px;
    color: #aaaaaa;
    cursor: pointer;
    line-height: 1;
    transition: color 0.15s ease;
    background: none;
    border: none;
    display: inline-block;
}

.blog-modal-close:hover {
    color: #333333;
}

/* Checkbox Toggle Logic */
#blog-modal-toggle-1:checked ~ .id-blog-modal-1,
#blog-modal-toggle-2:checked ~ .id-blog-modal-2,
#blog-modal-toggle-3:checked ~ .id-blog-modal-3,
#blog-modal-toggle-4:checked ~ .id-blog-modal-4,
#blog-modal-toggle-5:checked ~ .id-blog-modal-5 {
    opacity: 1;
    visibility: visible;
    z-index: 10004; /* Keeps background just below the window */
    pointer-events: auto;
}

#blog-modal-toggle-1:checked ~ .id-blog-modal-1 .blog-modal-window,
#blog-modal-toggle-2:checked ~ .id-blog-modal-2 .blog-modal-window,
#blog-modal-toggle-3:checked ~ .id-blog-modal-3 .blog-modal-window,
#blog-modal-toggle-4:checked ~ .id-blog-modal-4 .blog-modal-window,
#blog-modal-toggle-5:checked ~ .id-blog-modal-5 .blog-modal-window {
    opacity: 1;
    visibility: visible; /* <--- Makes it readable to Safari */
    z-index: 10005; /* <--- Brings active modal to absolute front */
    transform: translateX(-50%) scale(1);
    pointer-events: auto;
}
.blog-modal-body p,
.info-modal-content p {
    margin-bottom: 1.2rem;
}

/* Remove bottom margin from the very last paragraph so it doesn't add extra empty space */
.blog-modal-body p:last-child,
.info-modal-content p:last-child {
    margin-bottom: 0;
}
/* ==========================================================================
   11. GLOBAL FOOTER SYSTEM & PANIC OVERRIDES
   ========================================================================== */
.site-footer {
    background-color: #1e293b;
    color: #cbd5e1;
    padding: 50px 20px;
    font-size: 0.95rem;
    border-top: 2px solid #334155;
}

.footer-container {
    max-width: 950px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media screen and (min-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

.footer-column h4 {
    color: #f1f5f9;
    margin-bottom: 12px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column p {
    line-height: 1.6;
    color: #94a3b8;
}

.footer-links {
    list-style: none;
    margin-top: 10px;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links li a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-links li a:hover {
    color: #ff7eb3;
    text-decoration: underline;
}

.police-footer-btn {
    display: inline-block;
    background-color: #dc2626;
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 12px 24px;
    border-radius: 6px;
    margin-top: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.2s ease;
}

.police-footer-btn:hover {
    background-color: #b91c1c;
}

.copyright-notice {
    margin-top: 20px;
    font-size: 0.85rem;
    color: #64748b;
}

.floating-exit-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(30, 41, 59, 0.6);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: bold;
    z-index: 9999;
    transition: all 0.2s ease;
    backdrop-filter: blur(4px);
}

.floating-exit-btn:hover {
    background-color: #dc2626;
    color: #ffffff;
    transform: scale(1.05);
}

.floating-exit-btn:active {
    transform: scale(0.95);
}
