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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #403550 0%, #903dbe 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.container {
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    width: 100%;
}

.logo {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.logo img {
    width: 170px;
    height: 170px;
    object-fit: contain;
    border-radius: 50%;
}

.brand-name {
    font-size: 4rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -2px;
    animation: glow 2s ease-in-out infinite alternate;
}

.tagline {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.coming-soon {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem 3rem;
    border-radius: 50px;
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 2rem;
}

.coming-soon:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.info-section {
    background: rgba(0, 0, 0, 0.2);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 3rem;
    text-align: left;
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-section h2 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1rem;
    text-align: center;
}

.info-section .info-main-title {
    font-size: 2.2rem;
}

.info-section .info-subtitle {
    text-align: left;
}

.info-section p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.info-section p:not(:last-child) {
    margin-bottom: 1rem;
}

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

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: float-particles 20s infinite linear;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 18s; }
.particle:nth-child(2) { left: 20%; animation-delay: -2s; animation-duration: 22s; }
.particle:nth-child(3) { left: 30%; animation-delay: -4s; animation-duration: 25s; }
.particle:nth-child(4) { left: 40%; animation-delay: -6s; animation-duration: 17s; }
.particle:nth-child(5) { left: 50%; animation-delay: -8s; animation-duration: 21s; }
.particle:nth-child(6) { left: 60%; animation-delay: -10s; animation-duration: 24s; }
.particle:nth-child(7) { left: 70%; animation-delay: -12s; animation-duration: 19s; }
.particle:nth-child(8) { left: 80%; animation-delay: -14s; animation-duration: 23s; }
.particle:nth-child(9) { left: 90%; animation-delay: -16s; animation-duration: 20s; }

@keyframes glow {
    0% { text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 10px rgba(255, 255, 255, 0.1); }
    100% { text-shadow: 0 4px 50px rgba(144, 61, 190, 0.8), 0 0 20px rgba(144, 61, 190, 0.5); }
}

@keyframes float-particles {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10%, 90% { opacity: 1; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

@media (max-width: 768px) {
    body {
        align-items: flex-start;
    }
    .brand-name {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .coming-soon {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .logo {
        width: 140px;
        height: 140px;
    }

    .logo img {
        width: 100px;
        height: 100px;
    }

    .info-section {
        padding: 1.5rem;
    }

    .info-section h2 {
        font-size: 1.5rem;
    }

    .info-section p {
        font-size: 1rem;
    }
} 