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

.partymode {
    /* background: linear-gradient(135deg, #0f0c29, #302b63, #24243e); */
    /* min-height: 100vh; */
    overflow: hidden;
    position: relative;
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
    /* display: flex; */
    /* flex-direction: column; */
    align-items: center;
    justify-content: center;
    text-align: center;
    /* padding: 20px; */
    z-index: 0;
    width: 100%;
}

/* .container {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 40px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
} */

/* h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    background: linear-gradient(to right, #ff7eb3, #ff758c, #ff7eb3);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: glow 2s ease-in-out infinite alternate;
} */

@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }

    to {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 30px rgba(255, 105, 173, 0.8);
    }
}

.party-light {
    position: absolute;
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.1;
    animation: pulse-background 4s infinite ease-in-out;
    z-index: 0;
    margin-top: 100vh;
}

@keyframes pulse-background {
    0% {
        transform: scale(1);
        opacity: 0.1;
    }

    50% {
        transform: scale(1.4);
        opacity: 0.3;
    }

    100% {
        transform: scale(1);
        opacity: 0.1;
    }
}

.light-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #ff00cc, #3333ff);
    top: 10%;
    left: 10%;
    animation-duration: 8s;
}

.light-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #ff00cc, #ff0066);
    top: 70%;
    left: 80%;
    animation-duration: 6s;
    animation-delay: 1s;
}

.light-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(45deg, #00ccff, #0066ff);
    top: 40%;
    left: 50%;
    animation-duration: 10s;
    animation-delay: 2s;
}

.light-4 {
    width: 180px;
    height: 180px;
    background: linear-gradient(45deg, #ff00ff, #9900ff);
    top: 20%;
    left: 70%;
    animation-duration: 7s;
    animation-delay: 0.5s;
}

.light-5 {
    width: 320px;
    height: 320px;
    background: linear-gradient(45deg, #00ffcc, #0066ff);
    top: 60%;
    left: 20%;
    animation-duration: 9s;
    animation-delay: 1.5s;
}

.light-6 {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, #ff6600, #ff0066);
    top: 80%;
    left: 40%;
    animation-duration: 5s;
    animation-delay: 3s;
}

.light-7 {
    width: 220px;
    height: 220px;
    background: linear-gradient(45deg, #00ff99, #0099ff);
    top: 30%;
    left: 30%;
    animation-duration: 8s;
    animation-delay: 2.5s;
}

.light-8 {
    width: 190px;
    height: 190px;
    background: linear-gradient(45deg, #ff00ff, #ff0099);
    top: 50%;
    left: 80%;
    animation-duration: 6s;
    animation-delay: 1.2s;
}

.light-9 {
    width: 270px;
    height: 270px;
    background: linear-gradient(45deg, #00ccff, #0066ff);
    top: 10%;
    left: 40%;
    animation-duration: 10s;
    animation-delay: 0.8s;
}

.light-10 {
    width: 160px;
    height: 160px;
    background: linear-gradient(45deg, #ff0066, #ff00cc);
    top: 70%;
    left: 10%;
    animation-duration: 7s;
    animation-delay: 2.2s;
}
/* 
.content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.btn {
    background: linear-gradient(45deg, #ff00cc, #3333ff, #ff0066);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    margin: 20px 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.btn:active {
    transform: translateY(1px);
}

.footer {
    position: absolute;
    bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    z-index: 10;
} */
