@font-face {
    font-family: 'YourFontName';
    src: url('font.ttf');
}

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

html,
body {
    width: 100%;
    height: 100%;
}

body {
    background: #000;
    color: #fff;
    font-family: 'YourFontName';
    overflow-x: hidden;
    position: relative;
}

#bgvideo {
    position: fixed;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: -3;

    filter: brightness(0.40);

    opacity: 0;

    animation: fadeVideo 2s ease forwards;
}

@keyframes fadeVideo {
    to {
        opacity: 1;
    }
}

.overlay {
    position: fixed;
    inset: 0;

    background: rgba(0,0,0,0.25);

    z-index: -2;
}

.wrapper {
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 40px 20px;
}

.container {
    text-align: center;

    padding: 20px;

    max-width: 900px;
    width: 100%;
}

.logo {
    font-size: clamp(3rem, 10vw, 7rem);

    font-weight: 300;

    letter-spacing: 4px;

    margin-bottom: 25px;

    text-transform: lowercase;

    color: rgba(255,255,255,0.92);

    text-shadow:
        0 0 4px rgba(255,255,255,0.08),
        0 0 12px rgba(255,255,255,0.04);
}

.divider {
    width: 150px;
    height: 1px;

    background: rgba(255,255,255,0.35);

    margin: 0 auto 30px auto;
}

.nowplaying-label {
    font-size: 0.82rem;

    letter-spacing: 6px;

    opacity: 0.4;

    margin-bottom: 18px;
}

.nowplaying {
    font-size: 1.15rem;

    line-height: 1.6;

    color: rgba(255,255,255,0.95);

    min-height: 40px;

    padding: 0 20px;

    text-shadow:
        0 0 4px rgba(255,255,255,0.08),
        0 0 12px rgba(255,255,255,0.04);

    animation: flicker 10s infinite;
}

@keyframes flicker {
    0%, 100% {
        opacity: 1;
    }

    99% {
        opacity: 0.93;
    }
}

.links {
    margin-top: 35px;

    display: flex;
    justify-content: center;
    gap: 12px;

    flex-wrap: wrap;
}

.links button,
.links a {
    color: rgba(255,255,255,0.88);

    text-decoration: none;

    border: 1px solid rgba(255,255,255,0.18);

    padding: 12px 22px;

    display: inline-block;

    font-size: 0.72rem;

    letter-spacing: 3px;

    text-transform: uppercase;

    transition: all 0.25s ease;

    background: rgba(255,255,255,0.05);

    cursor: pointer;

    font-family: 'YourFontName';

    backdrop-filter: blur(3px);
}

.links button:hover,
.links a:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.showlist {
    margin-top: 30px;

    border: 1px solid rgba(255,255,255,0.08);

    text-align: left;

    background: rgba(0,0,0,0.45);

    line-height: 1.8;

    font-size: 0.95rem;

    white-space: pre-wrap;

    max-height: 0;

    overflow-y: auto;
    overflow-x: hidden;

    opacity: 0;

    transform: translateY(-10px);

    padding: 0 25px;

    transition:
        max-height 0.6s ease,
        opacity 0.4s ease,
        transform 0.4s ease,
        padding 0.4s ease;
}

.showlist.visible {

    max-height: 70vh;

    padding: 25px;

    opacity: 1;

    transform: translateY(0);
}

.showlist::-webkit-scrollbar {
    width: 8px;
}

.showlist::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.35);
}

.showlist::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.35);
}

  /* Firefox */
  * {
    scrollbar-width: thin;
    scrollbar-color: #fff #000000bd;
  }

  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 15px;
  }

  *::-webkit-scrollbar-track {
    background-color: #42005596;
  }

  *::-webkit-scrollbar-thumb {
    background-color: #8000ff;
    border-radius: 30px;
    border: 3px dotted #ffffff;
  }

.footer {
    margin-top: 45px;

    opacity: 0.35;

    font-size: 0.8rem;

    letter-spacing: 3px;

    text-transform: uppercase;

    transition: opacity 0.3s ease;
}

.footer:hover {
    opacity: 0.9;
}

.footer a {
    color: #fff;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {

    .showlist {
        font-size: 0.85rem;
    }

    .links button,
    .links a {
        width: 100%;
    }

}
