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

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1025 0%, #2d1f3d 50%, #0f0f1a 100%);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    color: #fff;
    overflow: hidden;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(180, 140, 255, 0.3);
    animation: pulse 4s ease-out infinite;
}

.ring:nth-child(1) { width: 200px; height: 200px; animation-delay: 0s; }
.ring:nth-child(2) { width: 350px; height: 350px; animation-delay: 0.8s; }
.ring:nth-child(3) { width: 500px; height: 500px; animation-delay: 1.6s; }
.ring:nth-child(4) { width: 650px; height: 650px; animation-delay: 2.4s; }
.ring:nth-child(5) { width: 800px; height: 800px; animation-delay: 3.2s; }

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
        border-color: rgba(180, 140, 255, 0.8);
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
        border-color: rgba(180, 140, 255, 0);
    }
}

.glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(180, 140, 255, 0.2) 0%, transparent 70%);
    animation: glow-pulse 3s ease-in-out infinite;
}

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

.container {
    text-align: center;
    padding: 2rem;
    z-index: 1;
    position: relative;
}

.brand {
    font-size: 4.5rem;
    font-weight: 600;
    letter-spacing: 0.5rem;
    text-transform: uppercase;
    background: linear-gradient(135deg, #b48cff 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 0.3rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: #d4c4eb;
}

.subtitle {
    font-size: 1.2rem;
    color: #c9b8e0;
    font-weight: 300;
    letter-spacing: 0.1rem;
}

@media (max-width: 600px) {
    .brand {
        font-size: 3rem;
    }

    h1 {
        font-size: 1.4rem;
        letter-spacing: 0.2rem;
    }

    .subtitle {
        font-size: 1rem;
    }
}
