/* =============================================
   Coming Soon Page Styles
   ============================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    background: #0a0a0a;
    color: #fff;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Animated Background */
.bg-animation {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.bg-animation::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 20% 50%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 40%),
                radial-gradient(ellipse at 50% 80%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
    animation: bgPulse 8s ease-in-out infinite alternate;
}

@keyframes bgPulse {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-2%, -1%) scale(1.05); }
}

/* Floating Particles */
.particles {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    animation: float linear infinite;
}

@keyframes float {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* Main Content */
.coming-soon {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 40px 20px;
    max-width: 700px;
    width: 100%;
}

/* Logo */
.cs-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    letter-spacing: 3px;
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeInDown 0.8s ease forwards 0.2s;
}

.cs-logo span {
    color: #FFD700;
}

/* Badge */
.cs-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #FFD700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInDown 0.8s ease forwards 0.4s;
}

.cs-badge i {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* Title */
.cs-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    opacity: 0;
    background: linear-gradient(135deg, #FFD700, #FFA500, #FFD700);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease forwards 0.6s, shimmer 3s ease-in-out infinite 1.4s;
}

@keyframes shimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Subtitle */
.cs-subtitle {
    font-size: clamp(0.95rem, 3vw, 1.15rem);
    color: #888;
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto 45px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.8s;
}

/* Countdown */
.cs-countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 45px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 1s;
}

.cs-countdown-item {
    text-align: center;
}

.cs-countdown-value {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 700;
    color: #fff;
    display: block;
    width: clamp(65px, 12vw, 90px);
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    margin-bottom: 8px;
    position: relative;
    overflow: hidden;
}

.cs-countdown-value::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    opacity: 0.5;
}

.cs-countdown-label {
    font-size: 0.7rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Social & Contact */
.cs-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 1.2s;
}

.cs-social a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #888;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cs-social a:hover {
    color: #FFD700;
    border-color: rgba(255, 215, 0, 0.4);
    background: rgba(255, 215, 0, 0.08);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
}

.cs-social a.wa-link:hover {
    color: #25D366;
    border-color: rgba(37, 211, 102, 0.4);
    background: rgba(37, 211, 102, 0.08);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.15);
}

/* Divider line */
.cs-divider {
    width: 60px;
    height: 1px;
    background: rgba(255, 215, 0, 0.2);
    margin: 0 auto 30px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 1.1s;
}

/* Bottom copyright */
.cs-footer {
    position: fixed;
    bottom: 25px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 10;
    color: #333;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .cs-countdown {
        gap: 10px;
    }
    .cs-social a {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
}
