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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
}

.content {
    text-align: center;
    z-index: 10;
    position: relative;
    max-width: 600px;
    width: 100%;
}

/* Logo styles */
.logo-container {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
}

.logo {
    width: 180px;
    height: 180px;
    object-fit: contain;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

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

/* Typography */
.company-name {
    font-size: 3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 3rem;
    letter-spacing: -0.025em;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.message h2 {
    font-size: 1.75rem;
    font-weight: 400;
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.3;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.message p {
    font-size: 1.25rem;
    color: #718096;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.launch-info {
    animation: fadeInUp 1s ease-out 0.8s both;
}

.launch-text {
    font-size: 1.1rem;
    color: #4a5568;
    font-weight: 500;
}

.launch-date {
    color: #2d3748;
    font-weight: 600;
}

/* Background decorative elements */
.background-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.circle-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(-10px) rotate(10deg);
    }
    75% {
        transform: translateY(-15px) rotate(5deg);
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .logo {
        width: 140px;
        height: 140px;
    }
    
    .company-name {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .message h2 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .message p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .launch-text {
        font-size: 1rem;
    }
    
    .circle-1 {
        width: 150px;
        height: 150px;
    }
    
    .circle-2 {
        width: 100px;
        height: 100px;
    }
    
    .circle-3 {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
    }
    
    .logo {
        width: 120px;
        height: 120px;
    }
    
    .company-name {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .message h2 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
        padding: 0 10px;
    }
    
    .message p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .launch-text {
        font-size: 0.9rem;
        padding: 0 10px;
    }
    
    .circle-1 {
        width: 120px;
        height: 120px;
        top: 5%;
        left: 5%;
    }
    
    .circle-2 {
        width: 80px;
        height: 80px;
        top: 65%;
        right: 10%;
    }
    
    .circle-3 {
        width: 60px;
        height: 60px;
        bottom: 15%;
        left: 15%;
    }
}

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

/* Dark mode support removed - keeping light theme always */

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .logo,
    .circle {
        animation: none;
    }
    
    .content > * {
        animation: none;
    }
    
    .logo:hover {
        transform: none;
    }
}
