text {
    text-align: center;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #000;
}

.slider {
    width: 100%;
    height: 100vh;
    position: relative;
}

.items-group, .item {
    width: 100%;
    height: 100%;
}

.item {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item.active {
    opacity: 1;
    visibility: visible;
}

.block {
    width: 300px;
    height: 450px;
    border-radius: 10px;
    padding: 20px;
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
    text-align: center;
    transform-style: preserve-3d;
}

.circleLight {
    position: absolute;
    inset: 0;
    border-radius: 10px;
    pointer-events: none;
}

.text h2 {
    margin: 0;
}

.buttons {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.btn {
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: 0.3s;
}

.discord {
    background: #5865F2;
}

.youtube {
    background: #FF0000;
}

.btn:hover {
    transform: scale(1.05);
    opacity: 0.85;
}


.music-controls input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 140px;
    height: 6px;
    background: linear-gradient(90deg, #7f5cff, #00f0ff);
    border-radius: 10px;
    outline: none;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(127, 92, 255, 0.6);
    transition: 0.3s;
}


.music-controls input[type="range"]:hover {
    box-shadow: 0 0 16px rgba(0, 240, 255, 0.9);
}


.music-controls input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 
        0 0 10px #7f5cff,
        0 0 20px #00f0ff;
    transition: 0.2s;
}

.music-controls input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}


.music-controls input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #ffffff;
    border-radius: 50%;
    border: none;
    box-shadow:
        0 0 10px #7f5cff,
        0 0 20px #00f0ff;
}


.music-controls input[type="range"]::-moz-range-track {
    height: 6px;
    background: linear-gradient(90deg, #7f5cff, #00f0ff);
    border-radius: 10px;
}



.bg, .blur {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-size: cover;
    background-position: center;
}

.blur {
    filter: blur(6px);
}

