/* --- Basic Reset & Global Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0a0a1a; /* Dark blue-black background */
    color: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

/* --- Animated Background --- */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #001f3f, #0a0a1a, #001f3f, #0a0a1a);
    background-size: 400% 400%;
    animation: gradient-animation 15s ease infinite;
    z-index: -1;
}

@keyframes gradient-animation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* --- Main Content Container --- */
.container {
    text-align: center;
    padding: 2rem;
}

.content-wrapper {
    max-width: 750px;
    padding: 3rem 4rem;
    
    /* Glassmorphism Effect */
    background: rgba(10, 10, 30, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* For Safari */
    border-radius: 15px;
    border: 1px solid rgba(0, 209, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* --- Typography --- */
.logo h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00d1ff; /* Bright cyan accent */
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.message {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    color: #c0c0c0;
    margin-bottom: 2.5rem;
}

/* --- Animated Progress Bar --- */
.progress-bar {
    width: 100%;
    height: 8px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    margin-bottom: 2.5rem;
    overflow: hidden;
}

.progress {
    width: 65%; /* Set the "current" progress */
    height: 100%;
    background: linear-gradient(90deg, #0077b6, #00d1ff);
    border-radius: 4px;
    animation: load-progress 2s ease-out forwards;
}

@keyframes load-progress {
    from { width: 0%; }
    to { width: 65%; }
}

/* --- Contact Info & Button --- */
.contact-info p {
    font-weight: 300;
    margin-bottom: 1rem;
}

.contact-button {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background-color: transparent;
    border: 2px solid #00d1ff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-button:hover {
    background-color: #00d1ff;
    color: #0a0a1a;
}

/* --- Footer --- */
footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

/* --- Responsive Design for Mobile --- */
@media (max-width: 768px) {
    .content-wrapper {
        padding: 2rem 1.5rem;
        border: none; /* Simplify for mobile */
    }
    
    .logo h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .message {
        font-size: 0.9rem;
    }
}