/* Shutdown Notice Modal Styles */

.shutdown-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shutdown-modal__backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
}

.shutdown-modal__content {
    position: relative;
    background: linear-gradient(135deg, #04310f 0%, #137247 100%);
    border-radius: 16px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(19, 114, 71, 0.3);
    z-index: 10001;
    margin: 20px;
}

.shutdown-modal__header {
    padding: 24px 32px;
    border-bottom: 2px solid rgba(19, 114, 71, 0.3);
    background: linear-gradient(135deg, #065c1a 0%, #0d8a35 100%);
    border-radius: 16px 16px 0 0;
}

.shutdown-modal__header h2 {
    margin: 0;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.shutdown-modal__body {
    padding: 32px;
}

.shutdown-notice-content {
    color: #e0e0e0;
    font-size: 16px;
    line-height: 1.7;
}

.shutdown-notice-content p {
    margin-bottom: 16px;
}

.shutdown-notice-content h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.shutdown-notice-content ul {
    margin: 16px 0 !important;
    padding-left: 24px !important;
    list-style-type: disc !important;
    list-style-position: outside !important;
}

.shutdown-notice-content li {
    margin-bottom: 12px;
    line-height: 1.6;
    font-weight: 400 !important;
    color: #e0e0e0 !important;
    list-style-type: disc !important;
    list-style-position: outside !important;
    display: list-item !important;
}

.shutdown-notice-content li span {
    font-weight: 400 !important;
    color: #e0e0e0 !important;
}

.shutdown-notice-content li a,
.shutdown-notice-content ul li a {
    color: #4ade80 !important;
    text-decoration: underline !important;
    font-weight: 400 !important;
    font-size: inherit !important;
    text-shadow: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    display: inline !important;
    cursor: pointer !important;
    transition: color 0.3s ease !important;
    position: static !important;
    overflow: visible !important;
    background: none !important;
    box-shadow: none !important;
    line-height: inherit !important;
}

.shutdown-notice-content li a:hover,
.shutdown-notice-content ul li a:hover {
    color: #86efac !important;
    text-decoration: underline !important;
    background: none !important;
    box-shadow: none !important;
    text-shadow: none !important;
    font-size: inherit !important;
}

.shutdown-notice-content a {
    color: #4ade80;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.shutdown-notice-content a:hover {
    color: #86efac;
    text-decoration: underline;
}

.shutdown-modal__footer {
    padding: 24px 32px;
    border-top: 2px solid rgba(19, 114, 71, 0.3);
    background: linear-gradient(135deg, #065c1a 0%, #0d8a35 100%);
    border-radius: 0 0 16px 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shutdown-modal__footer .yellow_btn {
    background-image: linear-gradient(180deg, #FFFFFF 0%, #F9F1B5 50%, #EBD9A2 100%);
    border: none;
    border-radius: 40px;
    padding: 12px 32px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #4E6F94;
    text-transform: uppercase;
    min-width: 200px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.shutdown-modal__footer .yellow_btn:hover {
    box-shadow: 0px 0px 15px rgba(249, 241, 181, 0.8), 0px 0px 30px rgba(235, 217, 162, 0.6);
    transform: translateY(-2px);
}

.shutdown-modal__footer .yellow_btn .gradient_text {
    background: linear-gradient(180deg, #4E6F94 0%, #2C4A6B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Scrollbar styling for modal content */
.shutdown-modal__content::-webkit-scrollbar {
    width: 8px;
}

.shutdown-modal__content::-webkit-scrollbar-track {
    background: rgba(19, 114, 71, 0.2);
    border-radius: 4px;
}

.shutdown-modal__content::-webkit-scrollbar-thumb {
    background: rgba(74, 222, 128, 0.5);
    border-radius: 4px;
}

.shutdown-modal__content::-webkit-scrollbar-thumb:hover {
    background: rgba(74, 222, 128, 0.7);
}

/* Responsive styles */
@media (max-width: 768px) {
    .shutdown-modal__content {
        width: 95%;
        max-height: 95vh;
        margin: 10px;
    }

    .shutdown-modal__header {
        padding: 20px 24px;
    }

    .shutdown-modal__header h2 {
        font-size: 24px;
    }

    .shutdown-modal__body {
        padding: 24px 20px;
    }

    .shutdown-notice-content {
        font-size: 14px;
    }

    .shutdown-notice-content h3 {
        font-size: 20px;
    }

    .shutdown-modal__footer {
        padding: 20px 24px;
    }

    .shutdown-modal__footer .yellow_btn {
        font-size: 16px;
        padding: 10px 24px;
        min-width: 180px;
    }
}
