  .scrolling {
    background: #fff;
    color: #ff1600;
    padding-top: 4px;
    font-family: system-ui;
    font-weight: 600;
}
button.header__btn {
    background: #ff220d;
    color: #fff;
    border-radius: 20px 20px 20px 0px;
    opacity: 1;
    z-index: 9999;
    font-size: 14px;
    padding: 0px 9px;
    font-weight: 600;
    font-family: system-ui;
}
    .top-notice {
    background: #fff3cd;
    color: #856404;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ffeeba;
}

.top-notice button {
    background: #ff9800;
    color: white;
    border: none;
    padding: 8px 14px;
    border-radius: 4px;
    cursor: pointer;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.modal-content {
    background: white;
    width: 60%;
    margin: 8% auto;
    padding: 25px;
    border-radius: 8px;
    position: relative;
}

.close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
}
/* Modal Background */
.modal {
    display: block;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(12, 10, 44, 0.55);
    backdrop-filter: blur(3px);
    animation: fadeIn 0.3s ease;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
}

/* Modal Box */
.modal-content {
    position: relative;
    width: 90%;
    max-width: 760px;
    margin: 6% auto;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
    border-top: 6px solid #6a0dad;
    animation: popup 0.35s ease;
}

/* Top Header */
.modal-content h2 {
    margin: 0;
    padding: 22px 28px 16px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    color: #1b0b54;
    background: linear-gradient(to right, #f8f5ff, #ffffff);
    border-bottom: 1px solid #ece7ff;
}

/* Content Area */
.modal-content p,
.modal-content ul {
    padding-left: 28px;
    padding-right: 28px;
    color: #4a4a68;
    font-size: 18px;
    line-height: 1.8;
}

.modal-content p {
    margin: 18px 0 10px;
}

/* Highlight Text */
.modal-content strong {
    color: #7b1fa2;
    font-weight: 700;
}

/* Bullet List */
.modal-content ul {
    margin-top: 10px;
    margin-bottom: 25px;
}

.modal-content ul li {
    margin-bottom: 10px;
    padding-left: 4px;
}

/* Button */
.modal-content a {
    display: inline-block;
    margin: 0 28px 30px;
    padding: 13px 24px;
    background: linear-gradient(90deg, #6a0dad, #ff5f6d);
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 40px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(106, 13, 173, 0.25);
}

.modal-content a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(106, 13, 173, 0.35);
}

/* Close Button */
.close {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 30px;
    font-weight: 500;
    color: #777;
    cursor: pointer;
    transition: 0.2s ease;
}

.close:hover {
    color: #ff4d4f;
    transform: rotate(90deg);
}

/* Animations */
@@keyframes popup {
    from {
        transform: translateY(-30px) scale(0.96);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

@@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive */
@@media (max-width: 768px) {

    .modal-content {
        width: 94%;
        margin: 18% auto;
        border-radius: 14px;
    }

    .modal-content h2 {
        font-size: 21px;
        padding: 18px 20px 14px;
    }

    .modal-content p,
    .modal-content ul {
        font-size: 15px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .modal-content a {
        margin: 0 20px 24px;
        width: calc(100% - 40px);
        text-align: center;
        box-sizing: border-box;
    }

    .close {
        top: 14px;
        right: 16px;
        font-size: 26px;
    }
}