
    body.no-scroll {
        overflow: hidden !important;
        position: fixed;
        width: 100%;
        height: 100%;
    }
    
    .confidentiality-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #181818;
        z-index: 9999;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        opacity: 1;
        transition: opacity 0.5s ease;
        padding: 100px 20px 20px;
    }

    .confidentiality-overlay.fade-out {
        opacity: 0;
        pointer-events: none;
    }

    .confidentiality-content {
        max-width: 600px;
        width: 100%;
        background-color: #181818;
        border: 1px solid #DFDED980;
        border-radius: 8px;
        padding: 1.5rem;
        color: #DFDED9;
    }

    .notice-header h3 {
        color: #DFDED9;
        text-align: center;
        margin: 0 0 1.5rem 0;
        font-size: 1rem;
        letter-spacing: 2px;
        font-weight: 800;
    }

    .notice-text {
        text-align: center;
        color: #DFDED9BF;
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .legal-text {
        margin-bottom: 1.5rem;
        font-size: 0.85rem;
        line-height: 1.5;
        color: #DFDED9BF;
    }

    .legal-text p {
        margin-bottom: 1rem;
    }

    .legal-text ol {
        padding-left: 1.25rem;
        margin: 1rem 0;
    }

    .legal-text ol li {
        margin-bottom: 0.75rem;
    }

    .legal-text ul {
        padding-left: 1.25rem;
        margin: 0.5rem 0;
    }

    .legal-text ul li {
        margin-bottom: 0.4rem;
    }

    .notice-actions {
        text-align: center;
        margin-top: 1.5rem;
    }

    .acknowledge-btn {
        background-color: #DFDED9;
        color: #181818;
        border: none;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        font-weight: 600;
        border-radius: 4px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .acknowledge-btn:hover {
        background-color: #ffffff;
        transform: translateY(-1px);
    }

    @media (max-width: 768px) {
        .confidentiality-overlay {
            padding: 60px 15px 15px;
        }

        .confidentiality-content {
            padding: 1.25rem;
        }

        .notice-header h2 {
            font-size: 1rem;
            margin-bottom: 1.25rem;
        }

        .notice-text {
            font-size: 0.8rem;
        }

        .legal-text {
            font-size: 0.75rem;
        }

        .acknowledge-btn {
            padding: 0.7rem 1.25rem;
            font-size: 0.85rem;
        }
    }

    @media (max-height: 800px) {
        .confidentiality-overlay {
            padding-top: 40px;
        }

        .legal-text {
            font-size: 0.75rem;
            line-height: 1.4;
        }

        .legal-text ol li,
        .legal-text ul li {
            margin-bottom: 0.5rem;
        }
    }