/* style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    height: 100vh;
    overflow: hidden;
}

.container {
    position: relative;
    width: 100%;
    height: 100vh;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('aest.webp');
    background-size: cover;
    background-position: center;
}

.bg-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 50%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    color: white;
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.75rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn i {
    font-size: 1.25rem;
}

.btn-active {
    background-color: rgba(255, 255, 255, 1);
    color: #1a1a1a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-active:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.btn-inactive {
    background-color: rgba(75, 85, 99, 0.1);
    color: rgba(255, 255, 255, 0.8);
    cursor: not-allowed;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.soon-tag {
    font-size: 0.875rem;
    margin-left: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .content {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 2rem;
    }
    
    .logo {
        font-size: 3rem;
    }
}