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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    color: #2a2a2a;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.content {
    animation: fadeInUp 1s ease-out;
}

.logo {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    margin-bottom: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #b8941f, transparent);
    margin: 5px auto 30px;
    animation: expand 1.5s ease-out;
}

.coming-soon {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 8px;
    margin-bottom: 30px;
    color: #3a3a3a;
    text-transform: uppercase;
}

.description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}


.footer {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: #888888;
    font-size: 0.9rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expand {
    from {
        width: 0;
    }
    to {
        width: 100px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        max-height: 450px;
    }
    
    .coming-soon {
        font-size: 1.5rem;
        letter-spacing: 4px;
    }
    
    .description {
        font-size: 1rem;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .logo {
        max-height: 360px;
    }
    
    .coming-soon {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }
}

