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

:root {
    --gradient-1: #0a2540;
    --gradient-2: #0b2641;
    --gradient-3: #0c2742;
    --gradient-4: #0d2843;
    --gradient-5: #0e2944;
    --gradient-6: #0f2a45;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.9);
    --text-tertiary: rgba(255, 255, 255, 0.7);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    position: relative;
    background: linear-gradient(135deg, var(--gradient-1) 0%, var(--gradient-2) 25%, var(--gradient-3) 50%, var(--gradient-4) 75%, var(--gradient-5) 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

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

#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    padding: 2rem;
}

.content {
    text-align: center;
    max-width: 800px;
    width: 100%;
    animation: fadeInUp 1.2s ease-out;
}

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

.logo-area {
    margin-bottom: 3rem;
    animation: fadeInUp 1.2s ease-out 0.2s both;
}

.logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    animation: logoFloat 4s ease-in-out infinite, logoFadeIn 1.5s ease-out 0.1s both;
}

.company-logo {
    max-width: clamp(250px, 45vw, 450px);
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.4)) 
            drop-shadow(0 0 40px rgba(255, 255, 255, 0.3));
    animation: logoGlow 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.company-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.5)) 
            drop-shadow(0 0 60px rgba(255, 255, 255, 0.5));
}

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

@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.4)) 
                drop-shadow(0 0 40px rgba(255, 255, 255, 0.3));
    }
    50% {
        filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.4)) 
                drop-shadow(0 0 60px rgba(255, 255, 255, 0.5));
    }
}

.company-name {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 50%, #c7d2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

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

.tagline {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.9;
}

.main-message {
    margin-bottom: 3rem;
    animation: fadeInUp 1.2s ease-out 0.4s both;
}

.coming-soon {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    text-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
    position: relative;
    display: inline-block;
}

.coming-soon::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    animation: expandLine 2s ease-in-out infinite;
}

@keyframes expandLine {
    0%, 100% {
        width: 100px;
        opacity: 0.5;
    }
    50% {
        width: 200px;
        opacity: 1;
    }
}

.message {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.sub-message {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    font-weight: 300;
    color: var(--text-tertiary);
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.footer-info {
    margin-top: 4rem;
    animation: fadeInUp 1.2s ease-out 0.6s both;
}

.copyright {
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    font-weight: 300;
    color: var(--text-tertiary);
    letter-spacing: 0.05em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }
    
    .logo-area {
        margin-bottom: 2rem;
    }
    
    .logo-wrapper {
        margin-bottom: 1.5rem;
    }
    
    .main-message {
        margin-bottom: 2rem;
    }
    
    .footer-info {
        margin-top: 3rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }
    
    .logo-area {
        margin-bottom: 1.5rem;
    }
    
    .logo-wrapper {
        margin-bottom: 1rem;
    }
    
    .coming-soon {
        margin-bottom: 1rem;
    }
    
    .message {
        margin-bottom: 0.75rem;
    }
}

/* Additional gradient overlay for depth */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(10, 37, 64, 0.6) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(11, 38, 65, 0.5) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
}

