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

body {
    font-family: 'Inter', sans-serif;
    background: #1a1a1a;
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
}

.content {
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57, #ff9ff3);
    background-size: 300% 300%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 6s ease-in-out infinite;
}

.subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    color: #cccccc;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.image-container {
    margin: 3rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 400px;
    height: 400px;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 
        0 20px 40px rgba(255, 107, 107, 0.3),
        0 0 80px rgba(116, 185, 255, 0.2);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.coming-soon {
    margin-top: 3rem;
}

.coming-soon-text {
    font-size: 1.1rem;
    font-weight: 400;
    color: #888888;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.75rem 1.5rem;
    border: 1px solid #333333;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.coming-soon-text:hover {
    border-color: #555555;
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .logo {
        width: 300px;
        height: 300px;
    }
    
    .container {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .logo {
        width: 250px;
        height: 250px;
    }
} 