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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a2e 50%, #16213e 100%);
    color: #fff;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}

.container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(88, 28, 135, 0.15) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

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

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

.glowing-text {
    font-size: clamp(4rem, 15vw, 10rem);
    font-weight: 900;
    letter-spacing: 0.1em;
    color: #fff;
    text-shadow: 
        0 0 8px rgba(255, 255, 255, 0.5),
        0 0 15px rgba(168, 85, 247, 0.9),
        0 0 30px rgba(168, 85, 247, 0.8),
        0 0 50px rgba(168, 85, 247, 0.7),
        0 0 80px rgba(168, 85, 247, 0.5),
        0 0 120px rgba(168, 85, 247, 0.4),
        0 0 160px rgba(168, 85, 247, 0.3);
    animation: glow 3s ease-in-out infinite;
    margin-bottom: 2rem;
}

@keyframes glow {
    0%, 100% {
        text-shadow: 
            0 0 8px rgba(255, 255, 255, 0.5),
            0 0 15px rgba(168, 85, 247, 0.9),
            0 0 30px rgba(168, 85, 247, 0.8),
            0 0 50px rgba(168, 85, 247, 0.7),
            0 0 80px rgba(168, 85, 247, 0.5),
            0 0 120px rgba(168, 85, 247, 0.4),
            0 0 160px rgba(168, 85, 247, 0.3);
    }
    50% {
        text-shadow: 
            0 0 5px rgba(255, 255, 255, 0.35),
            0 0 10px rgba(168, 85, 247, 0.7),
            0 0 20px rgba(168, 85, 247, 0.6),
            0 0 35px rgba(168, 85, 247, 0.5),
            0 0 60px rgba(168, 85, 247, 0.3),
            0 0 90px rgba(168, 85, 247, 0.2);
    }
}

.catchphrase {
    font-size: clamp(1rem, 3vw, 2rem);
    font-weight: 300;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
    animation: fadeInUp 2s ease-out;
    position: relative;
    line-height: 60px;
}

.catchphrase::before,
.catchphrase::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #a855f7, transparent);
}

.catchphrase::before {
    left: -70px;
}

.catchphrase::after {
    right: -70px;
}

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

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

.effect {
    display: inline-block;
    background-color: #a855f7;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 0 0.2em;
}

@media (max-width: 768px) {
    .catchphrase::before,
    .catchphrase::after {
        width: 30px;
    }
    
    .catchphrase::before {
        left: -40px;
    }
    
    .catchphrase::after {
        right: -40px;
    }
}
