/* Global Styles */
:root {
    --bg-color: #0f0c29;
    --primary-color: #302b63;
    --accent-color: #ff00cc;
    --text-color: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-color);
    overflow: hidden;
    position: relative;
}

/* Background Animations */
.background-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.effect-blob {
    position: absolute;
    filter: blur(80px);
    opacity: 0.6;
    border-radius: 50%;
    animation: moveBlob 20s infinite alternate;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: #8e2de2;
}

.blob-2 {
    bottom: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: #4a00e0;
    animation-delay: -10s;
}

@keyframes moveBlob {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, 50px) scale(1.1);
    }
}

/* Main Container */
.container {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    width: 100%;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    /* Optional: subtle glass card effect if needed, decided to keep it cleaner */
}

/* Logo Styles */
.logo-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.logo {
    width: 250px;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 20px rgba(142, 45, 226, 0.5));
    animation: float 6s ease-in-out infinite;
    /* Prevent selection and dragging via CSS */
    user-select: none;
    -webkit-user-drag: none;
}


.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(142, 45, 226, 0.4) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
    animation: pulse 4s infinite;
}

/* Typography & Content */
.content {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.brand-name {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #fff, #9fa5d5);
    background-clip: text;
    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;
}

.frequency {
    color: var(--accent-color);
    -webkit-text-fill-color: var(--accent-color);
    /* Overwrite gradient */
    font-weight: 300;
}

.legend {
    font-size: 1.25rem;
    color: #b8b8d9;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.divider {
    height: 2px;
    width: 50px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    margin: 0 auto 2rem;
}

.coming-soon {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    animation: shine 3s infinite linear;
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 480px) {
    .brand-name {
        font-size: 2.5rem;
    }

    .logo {
        width: 180px;
    }

    .coming-soon {
        font-size: 1.2rem;
    }
}