/* BioSYN Brand Colors */
:root {
    --navy-blue: #001F3F;
    --bright-yellow: #FFF72E;
    --gold: #DEAE29;
    --white: #FFFFFF;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Bebas Neue', sans-serif;
    background: linear-gradient(135deg, var(--navy-blue) 0%, #003366 100%);
    color: var(--white);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.6;
}

.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 1rem;
}

.content {
    max-width: 800px;
    width: 100%;
    text-align: center;
    animation: fadeIn 1.2s ease-in;
}

/* Logo Styles */
.logo-container {
    margin-bottom: 2rem;
}

.logo {
    max-width: 500px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    animation: slideDown 0.8s ease-out;
}

/* Divider */
.divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--bright-yellow), var(--gold));
    margin: 2rem auto;
    border-radius: 2px;
}

/* Heading Styles */
.main-heading {
    font-size: 3.5rem;
    color: var(--bright-yellow);
    letter-spacing: 4px;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

.tagline {
    font-size: 1.8rem;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

/* Message Text */
.message {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--white);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-family: Arial, sans-serif;
    opacity: 0.9;
}

/* Info Box */
.info-box {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--gold);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem auto;
    max-width: 500px;
    backdrop-filter: blur(10px);
}

.info-text {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-family: Arial, sans-serif;
}

.email {
    font-size: 1.4rem;
    color: var(--bright-yellow);
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.email:hover {
    color: var(--gold);
    text-decoration: underline;
}

/* Animated Loader */
.loader {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 3rem;
}

.dot {
    width: 12px;
    height: 12px;
    background: var(--bright-yellow);
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out both;
}

.dot:nth-child(1) {
    animation-delay: -0.32s;
}

.dot:nth-child(2) {
    animation-delay: -0.16s;
}

/* Footer */
.footer {
    margin-top: auto;
    padding-top: 2rem;
    text-align: center;
    opacity: 0.6;
    font-size: 0.9rem;
    font-family: Arial, sans-serif;
}

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

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-heading {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .tagline {
        font-size: 1.3rem;
    }

    .message {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .logo {
        max-width: 350px;
    }

    .info-box {
        padding: 1rem;
    }

    .email {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .main-heading {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .message {
        font-size: 0.9rem;
    }

    .logo {
        max-width: 280px;
    }

    .container {
        padding: 1rem 0.5rem;
    }
}
