/* Base Styles */
:root {
    --primary-color: #6e44ff;
    --secondary-color: #1a1a2e;
    --accent-color: #9370DB;
    --text-color: #f0f0f0;
    --background-color: #0a0a14;
    --container-bg: rgba(20, 20, 30, 0.7);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--background-color) 100%);
    z-index: -1;
}

.background-animation::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(110, 68, 255, 0.1) 0%, transparent 50%);
    animation: rotate 60s linear infinite;
    z-index: -1;
}

.background-animation::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(147, 112, 219, 0.05) 0%, transparent 40%);
    animation: rotate 40s linear infinite reverse;
    z-index: -1;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 3.5rem;
    text-align: center;
    background-color: var(--container-bg);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    animation: fadeIn 1s ease-out;
}

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

/* Logo Styles */
.logo-container {
    margin-bottom: 2.5rem;
    animation: pulse 6s infinite alternate;
}

@keyframes pulse {
    0% {
        filter: drop-shadow(0 0 8px rgba(110, 68, 255, 0.4));
    }
    100% {
        filter: drop-shadow(0 0 15px rgba(110, 68, 255, 0.7));
    }
}

.logo {
    max-width: 180px;
    height: auto;
    transition: transform 0.3s ease;
}

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

/* Content Styles */
.content {
    margin-bottom: 3rem;
    animation: slideUp 0.8s ease-out 0.3s both;
}

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

h1 {
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 15px rgba(110, 68, 255, 0.3);
}

.divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin: 0 auto 2rem;
    position: relative;
    max-width: 300px;
}

.divider span {
    position: absolute;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.tagline {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    color: var(--text-color);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

.coming-soon {
    margin-top: 2.5rem;
    padding: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.coming-soon p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-color);
    letter-spacing: 1px;
}

/* Footer Styles */
footer {
    margin-top: 2.5rem;
    font-size: 0.9rem;
    opacity: 0.6;
    animation: fadeIn 1s ease-out 0.6s both;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .container {
        padding: 2.5rem;
    }
    
    h1 {
        font-size: 2.8rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 2rem;
        width: 95%;
    }
    
    h1 {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }
    
    .logo {
        max-width: 140px;
    }
    
    .divider {
        max-width: 200px;
    }
}
