/* ==== GLOBAL ==== */
body {
    margin: 0;
    padding: 0;
    background: #000000; /* CHANGED TO BLACK */
    font-family: 'Montserrat', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: #2b2b2b;
}

.container {
    max-width: 650px;
    width: 90%;
    text-align: center;
    padding: 30px 10px;
}

/* ==== LOGO ==== */
.logo img {
    max-width: 220px;
    height: auto;
    margin-bottom: 25px;
}

/* ==== MAIN CONTENT BOX ==== */
.content-box {
    background: #ffffff;
    padding: 45px 35px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(255,255,255,0.05);
    animation: fadeInUp 1.2s ease forwards;
    opacity: 0;
}

h1 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1e3a5f;
    font-weight: 600;
}

p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 18px;
}

/* ==== LOADER ==== */
.loader {
    border: 5px solid #333;
    border-top: 5px solid #1e3a5f;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    margin: 25px auto;
    animation: spin 1.4s linear infinite;
}

/* ==== SOCIALS ==== */
.socials {
    margin-top: 25px;
}

.socials a {
    display: inline-block;
    margin: 0 10px;
}

.socials img {
    width: 30px;
    height: 30px;
    opacity: 0.85;
    transition: 0.3s ease;
}

.socials img:hover {
    opacity: 1;
    transform: scale(1.15);
}

/* ==== FOOTER ==== */
footer {
    margin-top: 25px;
    font-size: 14px;
    color: #aaa;
}

/* ==== KEYFRAMES ==== */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==== RESPONSIVE ==== */
@media only screen and (max-width: 480px) {
    h1 {
        font-size: 26px;
    }

    .content-box {
        padding: 30px 20px;
    }
}
