body {
    margin: 0;
    padding: 0;
    background: #000;
    font-family: 'Cinzel', serif;
    overflow: hidden;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #000000, #090723, #170B45);
    z-index: 1;
}

.magical-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.8) 100%);
    z-index: 2;
    pointer-events: none;
}

.content {
    position: relative;
    z-index: 3;
    color: white;
    text-align: center;
    padding-top: 20vh;
}

.magical-title {
    font-size: 4em;
    margin-bottom: 0.5em;
    background: linear-gradient(45deg, #ff00ff, #00ffff, #ff00ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: titleGlow 8s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.magical-text {
    font-size: 1.5em;
    margin-bottom: 2em;
    opacity: 0.8;
    text-shadow: 0 0 5px rgba(255,255,255,0.5);
}

.magical-button {
    padding: 15px 30px;
    font-size: 1.2em;
    font-family: 'Cinzel', serif;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.magical-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.magical-button:hover::before {
    left: 100%;
}

.magical-button:hover {
    box-shadow: 0 0 20px rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.6);
    transform: scale(1.05);
}

@keyframes titleGlow {
    0%, 100% { filter: brightness(100%) blur(0px); }
    50% { filter: brightness(150%) blur(1px); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}
