/* Modern Dark Theme Coming Soon Page - Animated */

/* CSS Custom Properties (Variables) */
:root {
    --bg-primary: #0a0a0a;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --accent-primary: #6366f1;
    --accent-secondary: #8b5cf6;
    --accent-tertiary: #ec4899;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

body {
    font-family: var(--font-family);
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    overflow: hidden;
}

/* Background Animation */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
    animation: float 8s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-tertiary));
    bottom: -80px;
    right: -80px;
    animation-delay: 2s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--accent-tertiary), var(--accent-primary));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Container and Layout */
.container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    z-index: 10;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        #0a0a0a 0%,
        #0a0a0a 40%,
        rgba(10, 10, 10, 0) 100%
      ),
      linear-gradient(to right, #1e3a8a, #4c1d95);
    overflow: hidden;
}

.container::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, rgba(99, 102, 241, 0.3) 1px, transparent 1px);
    background-size: 50px 100%;
    pointer-events: none;
    mask-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 0) 70%
    );
    -webkit-mask-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 0) 70%
    );
    z-index: 1;
}

.content {
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Logo */
.logo-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease-out;
}

.logo {
    width: 200px;
    height: auto;
    position: relative;
    z-index: 2;
    animation: logoFloat 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

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

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3), transparent 70%);
    z-index: 1;
    animation: pulse 2s ease-in-out infinite;
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

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

/* Brand Name */
.brand-name {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.15em;
    margin-bottom: 2rem;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 0.3s both;
    position: relative;
}

.brand-name .letter {
    display: inline-block;
    animation: letterPop 0.6s ease-out both;
}

.brand-name .letter:nth-child(1) { animation-delay: 0.5s; }
.brand-name .letter:nth-child(2) { animation-delay: 0.6s; }
.brand-name .letter:nth-child(3) { animation-delay: 0.7s; }
.brand-name .letter:nth-child(4) { animation-delay: 0.8s; }
.brand-name .letter:nth-child(5) { animation-delay: 0.9s; }
.brand-name .letter:nth-child(6) { animation-delay: 1s; }
.brand-name .letter:nth-child(7) { animation-delay: 1.1s; }
.brand-name .letter:nth-child(8) { animation-delay: 1.2s; }

@keyframes letterPop {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }
    50% {
        transform: translateY(-5px) scale(1.1);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

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

/* Coming Soon */
.coming-soon {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.coming-soon-text {
    position: relative;
}

.coming-soon-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--accent-primary), 
        var(--accent-secondary), 
        transparent
    );
    animation: lineSlide 2s ease-in-out infinite;
}

@keyframes lineSlide {
    0%, 100% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Animated Dots */
.dots {
    display: flex;
    gap: 0.4rem;
    align-items: center;
}

.dot {
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    animation: dotPulse 1.4s ease-in-out infinite;
}

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

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

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

@keyframes dotPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        width: 150px;
    }
    
    .logo-glow {
        width: 170px;
        height: 170px;
    }
    
    .brand-name {
        font-size: 2rem;
    }
    
    .coming-soon {
        font-size: 1.25rem;
    }
    
    .floating-orb {
        filter: blur(40px);
    }
    
    .orb-1 {
        width: 250px;
        height: 250px;
    }
    
    .orb-2 {
        width: 200px;
        height: 200px;
    }
    
    .orb-3 {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 120px;
    }
    
    .logo-glow {
        width: 140px;
        height: 140px;
    }
    
    .brand-name {
        font-size: 1.5rem;
    }
    
    .coming-soon {
        font-size: 1rem;
        flex-direction: column;
        gap: 0.5rem;
    }
}

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