/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #131736;
    color: #E0E2EA;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.6;
}

/* Container and layout */
.container {
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    text-align: center;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

/* Logo styling */
.logo-container {
    position: relative;
    overflow: hidden;
    display: inline-block;
    padding: 20px;
}

.logo {
    width: 300px;
    height: auto;
    max-width: 100%;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    position: relative;
    z-index: 1;
    display: block;
    transition: transform 0.3s ease;
}

.logo-container:hover .logo {
    transform: scale(1.1);
}

/* Header and typography */
.header {
    margin-bottom: 1rem;
}

.title {
    font-family: 'Libre Baskerville', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #E0E2EA;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.tagline {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: #84C7DA;
    margin-bottom: 0.5rem;
}

.coming-soon {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: #E0E2EA;
    letter-spacing: 0.5px;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }
    
    .title {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.25rem;
    }
    
    .logo {
        width: 150px;
    }
    
    .coming-soon {
        padding: 1rem 1.5rem;
    }
    
    .coming-soon-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
    
    .logo {
        width: 120px;
    }
    
    .coming-soon {
        padding: 0.75rem 1rem;
    }
    
    .coming-soon-text {
        font-size: 1rem;
    }
    
    .content {
        gap: 1.5rem;
    }
}







