/* ===================================
   Coming Soon Page Styles
   =================================== */

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

/* Variables */
:root {
    --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --color-text: #1a1a1a;
    --color-text-light: #666666;
    --color-text-lighter: #999999;
    --color-white: #ffffff;
    --color-border: #e0e0e0;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 2.5rem;
    --spacing-xxl: 3rem;
}

/* ===================================
   Layout
   =================================== */
body {
    font-family: var(--font-main);
    background: linear-gradient(135deg, #f8f8f8 0%, var(--color-white) 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-lg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    text-align: center;
    max-width: 600px;
    animation: fadeIn 1s ease-out;
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes blink {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

/* ===================================
   Logo
   =================================== */
.logo {
    max-width: 280px;
    width: 100%;
    height: auto;
    margin-bottom: var(--spacing-xxl);
    animation: float 3s ease-in-out infinite;
}

/* ===================================
   Typography
   =================================== */
h1 {
    font-size: 3rem;
    font-weight: 300;
    color: var(--color-text);
    margin-bottom: var(--spacing-sm);
    letter-spacing: 2px;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-xxl);
    font-weight: 400;
}

/* ===================================
   Dots Animation
   =================================== */
.dots {
    display: inline-block;
    margin-left: var(--spacing-xs);
}

.dots span {
    animation: blink 1.4s infinite;
    opacity: 0;
}

.dots span:nth-child(1) {
    animation-delay: 0s;
}

.dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.dots span:nth-child(3) {
    animation-delay: 0.4s;
}

/* ===================================
   Links
   =================================== */
.links {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-lg);
}

.link {
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.75rem var(--spacing-md);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.link:hover {
    border-color: var(--color-text);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* ===================================
   Footer
   =================================== */
.footer {
    position: fixed;
    bottom: var(--spacing-lg);
    font-size: 0.85rem;
    color: var(--color-text-lighter);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .logo {
        max-width: 200px;
    }

    .links {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .link {
        width: 100%;
    }
}

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