:root {
    --primary-blue: #1E90FF;
    --dark-blue: #0D2538;
    --light-gray: #f8f9fa;
    --transition-speed: 0.5s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

html, body {
    height: 100%;
    overflow: hidden;
}

body {
    background-color: var(--light-gray);
    color: var(--dark-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.container {
    max-width: 1200px;
    padding: 0 2rem;
}

.coming-soon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-container {
    margin-bottom: 3rem;
    position: relative;
}

.logo-full {
    height: 285px;
    width: auto;
}

.logo-icon {
    height: 150px;
    width: auto;
    margin-bottom: 0.5rem;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
    animation: fadeIn 1.5s ease-in-out forwards;
    animation-delay: 0.2s;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    opacity: 0;
    animation: fadeInUp 1s forwards;
    animation-delay: 0.6s;
}

p {
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 1s forwards;
    animation-delay: 0.8s;
}

.email-form {
    display: flex;
    max-width: 500px;
    width: 100%;
    opacity: 0;
    animation: fadeInUp 1s forwards;
    animation-delay: 1s;
}

input[type="email"] {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px 0 0 50px;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

input[type="email"]:focus {
    outline: none;
}

button {
    background-color: var(--primary-blue);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 0 50px 50px 0;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed);
    box-shadow: 0 4px 10px rgba(30, 144, 255, 0.2);
}

button:hover {
    background-color: #1a7dea;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    opacity: 0;
    animation: fadeInUp 1s forwards;
    animation-delay: 1.2s;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    color: var(--primary-blue);
    transition: all var(--transition-speed);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.social-links a:hover {
    background-color: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(30, 144, 255, 0.2);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Animated Background */
.bg-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(30, 144, 255, 0.05);
    animation: float 15s infinite ease-in-out;
}

.circle-1 {
    width: 300px;
    height: 300px;
    left: -150px;
    top: -150px;
    animation-delay: 0s;
}

.circle-2 {
    width: 400px;
    height: 400px;
    right: -200px;
    top: -200px;
    animation-delay: 3s;
}

.circle-3 {
    width: 200px;
    height: 200px;
    left: 10%;
    bottom: -100px;
    animation-delay: 6s;
}

.circle-4 {
    width: 150px;
    height: 150px;
    right: 20%;
    bottom: 20%;
    animation-delay: 9s;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}


.logo-options {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
}

.logo-option-btn {
    background-color: white;
    border: 1px solid #ddd;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s;
}

.logo-option-btn:hover, .logo-option-btn.active {
    background-color: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.2;
    }
    100% {
        transform: scale(1);
        opacity: 0.6;
    }
}

/* Additional styles for dynamic elements */
.countdown {
    display: flex;
    gap: 1.5rem;
    margin: 1.5rem 0;
    opacity: 0;
    animation: fadeInUp 1s forwards;
    animation-delay: 0.7s;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.countdown-label {
    font-size: 0.9rem;
    color: #777;
}

.success-message {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
    padding: 1rem;
    border-radius: 50px;
    text-align: center;
    font-weight: 500;
    animation: fadeIn 0.5s forwards;
}

.error-message {
    background-color: rgba(167, 40, 40, 0.1);
    color: #a7282c;
    padding: 1rem;
    border-radius: 50px;
    text-align: center;
    font-weight: 500;
    animation: fadeIn 0.5s forwards;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .logo-full {
        height: 45px;
    }

    .logo-icon {
        height: 90px;
    }

    .brand-name {
        font-size: 1.5rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    p {
        font-size: 1.1rem;
    }

    .email-form {
        flex-direction: column;
        gap: 0.5rem;
    }

    input[type="email"] {
        border-radius: 50px;
        text-align: center;
    }

    button {
        border-radius: 50px;
        width: 100%;
    }

    .countdown {
        gap: 1rem;
    }

    .countdown-number {
        font-size: 1.8rem;
    }

    .countdown-label {
        font-size: 0.7rem;
    }
}