/* ==========================================
   COMING SOON PAGE - LAIMU
   ========================================== */

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

:root {
    --primary-color: #008080;
    --secondary-color: #FF8C00;
    --light-bg: #E0F7F6;
    --dark-text: #1a1a1a;
    --light-text: #666666;
    --white: #FFFFFF;
    --border-radius: 12px;
    --transition-duration: 0.3s;
}

html, body {
    width: 100%;
    height: 100%;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #E0F7F6 0%, #F0FFFE 50%, #E8F5F4 100%);
    color: var(--dark-text);
    overflow-x: hidden;
}

/* ==========================================
   BACKGROUND ANIMATIONS
   ========================================== */

.coming-soon-page {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.background-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Orbits */
.orbit {
    position: absolute;
    border: 2px solid rgba(0, 128, 128, 0.1);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.orbit-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-duration: 25s;
    animation-direction: reverse;
}

.orbit-2 {
    width: 500px;
    height: 500px;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    animation-duration: 30s;
}

.orbit-3 {
    width: 400px;
    height: 400px;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    animation-duration: 35s;
    animation-direction: reverse;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Particles */
.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.8), rgba(255, 140, 0, 0.2));
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.particle-1 {
    width: 12px;
    height: 12px;
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.particle-2 {
    width: 8px;
    height: 8px;
    top: 40%;
    right: 20%;
    animation-delay: 1s;
}

.particle-3 {
    width: 10px;
    height: 10px;
    top: 60%;
    left: 10%;
    animation-delay: 2s;
}

.particle-4 {
    width: 6px;
    height: 6px;
    top: 30%;
    right: 10%;
    animation-delay: 1.5s;
}

.particle-5 {
    width: 9px;
    height: 9px;
    bottom: 20%;
    left: 20%;
    animation-delay: 2.5s;
}

.particle-6 {
    width: 7px;
    height: 7px;
    bottom: 30%;
    right: 15%;
    animation-delay: 0.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-30px) translateX(20px);
        opacity: 1;
    }
}

/* ==========================================
   CONTENT CONTAINER
   ========================================== */

.content-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 900px;
    padding: 40px 20px;
    text-align: center;
    animation: slideUp 0.8s ease-out;
}

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

/* ==========================================
   LOGO
   ========================================== */

.logo-container {
    margin-bottom: 40px;
    animation: fadeInScale 0.8s ease-out 0.1s both;
}

.logo {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 128, 128, 0.15));
    transition: transform var(--transition-duration) ease;
}

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ==========================================
   MAIN CONTENT
   ========================================== */

.main-content {
    margin-bottom: 50px;
    animation: fadeInScale 0.8s ease-out 0.2s both;
}

.main-title {
    font-size: clamp(28px, 6vw, 48px);
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.subtitle {
    font-size: clamp(16px, 3vw, 20px);
    color: var(--light-text);
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================
   COUNTDOWN TIMER
   ========================================== */

.countdown-container {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 128, 128, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 40px;
    animation: fadeInScale 0.8s ease-out 0.3s both;
    box-shadow: 0 20px 60px rgba(0, 128, 128, 0.1);
}

.countdown-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color), rgba(0, 128, 128, 0.8));
    color: var(--white);
    padding: 20px 25px;
    border-radius: 12px;
    min-width: 80px;
    box-shadow: 0 8px 20px rgba(0, 128, 128, 0.2);
    transition: transform var(--transition-duration) ease, box-shadow var(--transition-duration) ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 128, 128, 0.3);
}

.countdown-value {
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
    font-variant-numeric: tabular-nums;
}

.countdown-label-small {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.countdown-separator {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.5;
    margin: 0 5px;
}

/* ==========================================
   CTA SECTION
   ========================================== */

.cta-section {
    margin-bottom: 30px;
    animation: fadeInScale 0.8s ease-out 0.4s both;
}

.cta-text {
    font-size: 16px;
    color: var(--light-text);
    margin-bottom: 20px;
    font-weight: 500;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), rgba(0, 128, 128, 0.8));
    color: var(--white);
    border-radius: 50%;
    transition: all var(--transition-duration) ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 128, 128, 0.2);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 128, 128, 0.3);
    background: linear-gradient(135deg, var(--secondary-color), rgba(255, 140, 0, 0.8));
}

.social-link svg {
    width: 24px;
    height: 24px;
}

/* ==========================================
   FOOTER MESSAGE
   ========================================== */

.footer-message {
    animation: fadeInScale 0.8s ease-out 0.5s both;
}

.footer-message p {
    font-size: 14px;
    color: var(--light-text);
    font-style: italic;
    font-weight: 400;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 768px) {
    .content-container {
        padding: 30px 20px;
    }

    .logo {
        max-width: 150px;
    }

    .main-title {
        font-size: 32px;
    }

    .subtitle {
        font-size: 16px;
    }

    .countdown-container {
        padding: 30px 20px;
    }

    .countdown-item {
        min-width: 70px;
        padding: 15px 18px;
    }

    .countdown-value {
        font-size: 28px;
    }

    .countdown-label-small {
        font-size: 10px;
    }

    .countdown-separator {
        font-size: 20px;
        margin: 0 3px;
    }

    .orbit-1 {
        width: 200px;
        height: 200px;
    }

    .orbit-2 {
        width: 350px;
        height: 350px;
    }

    .orbit-3 {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 480px) {
    .content-container {
        padding: 20px 15px;
    }

    .logo-container {
        margin-bottom: 30px;
    }

    .logo {
        max-width: 120px;
    }

    .main-title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .subtitle {
        font-size: 14px;
    }

    .main-content {
        margin-bottom: 30px;
    }

    .countdown-container {
        padding: 20px 15px;
        margin-bottom: 30px;
    }

    .countdown-label {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .countdown-timer {
        gap: 5px;
    }

    .countdown-item {
        min-width: 60px;
        padding: 12px 14px;
    }

    .countdown-value {
        font-size: 22px;
    }

    .countdown-label-small {
        font-size: 9px;
    }

    .countdown-separator {
        font-size: 16px;
        margin: 0 2px;
    }

    .social-links {
        gap: 15px;
    }

    .social-link {
        width: 45px;
        height: 45px;
    }

    .social-link svg {
        width: 20px;
        height: 20px;
    }

    .cta-text {
        font-size: 14px;
    }

    .orbit-1 {
        width: 150px;
        height: 150px;
    }

    .orbit-2 {
        width: 250px;
        height: 250px;
    }

    .orbit-3 {
        width: 200px;
        height: 200px;
    }
}

/* ==========================================
   ACCESSIBILITY
   ========================================== */

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

/* ==========================================
   DARK MODE SUPPORT
   ========================================== */

@media (prefers-color-scheme: dark) {
    html, body {
        background: linear-gradient(135deg, #0a1f1f 0%, #0d2626 50%, #0a1f1f 100%);
        color: #e0e0e0;
    }

    .countdown-container {
        background: rgba(20, 40, 40, 0.8);
        border-color: rgba(0, 128, 128, 0.3);
    }

    .main-title {
        color: #4dd9d9;
    }

    .subtitle {
        color: #a0a0a0;
    }

    .cta-text {
        color: #a0a0a0;
    }

    .footer-message p {
        color: #a0a0a0;
    }
}
