:root {
    /* Brand Colors extracted from Logo */
    --primary: #ffffff;
    --accent-blue: #0073feff;
    --bg: #121e2dff;
    --text-main: #ffffff;
    --white: #ffffff;

    /* Typography */
    --font-main: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg);
    color: var(--text-main);
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Background subtle gradient for a 'high-end' feel */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 174, 239, 0.05), transparent),
        radial-gradient(circle at bottom left, rgba(26, 43, 60, 0.05), transparent);
    z-index: -1;
}

.container {
    width: 95%;
    max-width: 800px;
    text-align: center;
    padding: 40px 20px;
    animation: fadeIn 1.2s ease-out;
}

/* Logo Scaling */
.logo-wrapper {
    margin-bottom: 25px;
}

.logo {
    max-width: 380px;
    height: auto;
}

/* Typography Styling */
.headline {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -1px;
}

.accent-text {
    color: var(--accent-blue);
}

.about-text {
    font-size: 1.1rem;
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto 20px auto;
    font-weight: 300;
}

.status-badge {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid var(--accent-blue);
    color: var(--accent-blue);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 40px;
    border-radius: 50px;
}

/* Responsive Button */
.btn-primary {
    display: inline-block;
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 43, 60, 0.2);
}

.btn-primary:hover {
    background-color: var(--accent-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 174, 239, 0.3);
}

footer {
    margin-top: 60px;
    font-size: 0.8rem;
    color: #ffffff;
    letter-spacing: 1px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .logo {
        max-width: 200px;
    }

    .headline {
        margin-bottom: 15px;
    }
}