/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #FFFFFF;
    overflow-x: hidden;
}

/* Container with Gradient Background */
.container {
    min-height: 100vh;
    background: linear-gradient(135deg, #396af1 0%, #7c32c7 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Animated Background Elements */
.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.1) 100%);
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.1; }
}

/* Content Container */
.content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

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

/* Logo Styles */
.logo-container {
    margin-bottom: 3rem;
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.logo {
    width: 200px;
    height: auto;
    max-width: 100%;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

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

/* Typography */
.coming-soon-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); }
    to { text-shadow: 0 5px 25px rgba(255, 255, 255, 0.4); }
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Domain Display */
.domain {
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.domain:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.domain-text {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: #FFFFFF;
}

/* Footer */
.footer {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    opacity: 0.7;
    font-size: 0.9rem;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        padding: 1rem;
    }
    
    .logo {
        width: 150px;
    }
    
    .coming-soon-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .domain {
        padding: 0.8rem 1.5rem;
        margin-top: 1.5rem;
    }
    
    .domain-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 120px;
    }
    
    .coming-soon-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .domain {
        padding: 0.6rem 1rem;
    }
    
    .domain-text {
        font-size: 0.9rem;
    }
    
    .footer {
        font-size: 0.8rem;
        bottom: 1rem;
    }
}

/* High DPI Display Support */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Alternative gradient backgrounds for variety */
.gradient-alt1 {
    background: linear-gradient(135deg, #396af1 0%, #FFFFFF 100%);
}

.gradient-alt2 {
    background: linear-gradient(135deg, #7c32c7 0%, #FFFFFF 100%);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus states for accessibility */
.domain:focus-within {
    outline: 2px solid #FFFFFF;
    outline-offset: 2px;
}

/* Loading states */
.loading {
    opacity: 0.5;
    pointer-events: none;
}

/* Print styles */
@media print {
    .container {
        background: white !important;
        color: black !important;
    }
    
    .logo {
        filter: none !important;
    }
    
    .coming-soon-title,
    .subtitle,
    .domain-text {
        color: black !important;
        text-shadow: none !important;
    }
}
