/* Shutdown Notice Page Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

body {
    background: #0F0F13;
    font-family: "Poppins", sans-serif;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.shutdown-container {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #0F0F13;
}

.shutdown-content {
    background: rgba(29, 29, 36, 0.8);
    border-radius: 20px;
    padding: 60px 80px;
    max-width: 800px;
    width: 100%;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5), 0 0 60px rgba(255, 20, 147, 0.1);
    backdrop-filter: blur(10px);
}

.shutdown-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    text-align: center;
    color: #FFFFFF;
}

.shutdown-title-brand {
    color: #FFFFFF;
    display: inline-block;
}

.shutdown-title-text {
    color: #FFFFFF;
    display: inline-block;
}

.shutdown-message {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    text-align: center;
}

.shutdown-appreciation {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .shutdown-content {
        padding: 40px 30px;
        max-width: 90%;
    }
    
    .shutdown-title {
        font-size: 32px;
        margin-bottom: 25px;
    }
    
    .shutdown-message {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .shutdown-appreciation {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .shutdown-content {
        padding: 30px 20px;
    }
    
    .shutdown-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .shutdown-message {
        font-size: 14px;
    }
    
    .shutdown-appreciation {
        font-size: 13px;
    }
}

