:root {
    font-family: "Anton", serif, "Bebas Neue", serif, "Staatliches", serif;
    line-height: 1.5;
    font-weight: 400;

    color-scheme: light dark;
    color: rgba(255, 255, 255, 0.87);
    background-color: #000000;

    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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


.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 92vh;
    overflow: hidden;
}

header {
    text-align: center;
    font-size: 1.5rem;
}

header h1 {
    font-size: 13rem;
    color: rgb(255, 255, 255);
    letter-spacing: 0.2rem;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    font-family: "Anton", serif;
    font-weight: 400;
    font-style: normal;
    line-height: 13rem;

    opacity: 0;
    animation: reveal 2s ease-out 1.5s forwards, glitchy 0.8s ease-out 2s forwards;
}

@keyframes reveal {
    0% {
        opacity: 0;
        filter: blur(10px);
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        filter: blur(0px);
        transform: translateY(0);
    }
}

@keyframes glitchy {
    0% {
        text-shadow: 0px 0px 0px rgb(108, 0, 0), 0px 0px 0px red;
    }

    25% {
        text-shadow: 4px 0px 0px rgb(98, 0, 0), -4px 0px 0px red;
    }

    50% {
        text-shadow: -4px 2px 0px rgb(168, 0, 0), 4px -2px 0px red;
    }

    75% {
        text-shadow: 3px -3px 0px rgb(153, 0, 0), -3px 3px 0px red;
    }

    100% {
        text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    }
}

.glitch-active {
    animation: reveal 2s ease-out 1.5s forwards, glitchy 0.8s ease-out 2s forwards, pwr-glitchy 0.2s infinite alternate;
}

@keyframes pwr-glitchy {
    0% {
        text-shadow: 0px 0px 0px rgba(108, 0, 0, 0.8), 0px 0px 0px rgba(255, 0, 0, 0.8);
        filter: blur(0px);
        transform: translate(0, 0);
        opacity: 1;
    }

    15% {
        text-shadow: 4px -2px 4px rgba(98, 0, 0, 0.8), -4px 2px 4px rgba(255, 0, 0, 0.8);
        filter: blur(1px);
        transform: translate(-1px, 1px);
        opacity: 0.9;
    }

    30% {
        text-shadow: -3px 3px 6px rgba(168, 0, 0, 0.9), 3px -3px 6px rgba(255, 0, 0, 0.9);
        filter: blur(2px);
        transform: translate(2px, -2px);
        opacity: 0.8;
    }

    45% {
        text-shadow: 5px -4px 8px rgba(153, 0, 0, 1), -5px 4px 8px rgba(255, 0, 0, 1);
        filter: blur(3px);
        transform: translate(-3px, 3px);
        opacity: 1;
    }

    60% {
        text-shadow: -4px 4px 12px rgba(200, 0, 0, 0.9), 4px -4px 12px rgba(255, 0, 0, 0.9);
        filter: blur(2px);
        transform: translate(1px, -1px);
        opacity: 0.7;
    }

    75% {
        text-shadow: 2px -2px 8px rgba(168, 0, 0, 1), -2px 2px 8px rgba(255, 0, 0, 1);
        filter: blur(1px);
        transform: translate(-1px, 1px);
        opacity: 0.9;
    }

    90% {
        text-shadow: -3px 3px 15px rgba(255, 0, 0, 0.9), 3px -3px 15px rgba(200, 0, 0, 0.9);
        filter: blur(2px);
        transform: translate(1px, -1px);
        opacity: 0.85;
    }

    100% {
        text-shadow: 0px 0px 15px rgba(255, 255, 255, 0.8);
        filter: blur(0px);
        transform: translate(0, 0);
        opacity: 1;
    }
}

header p {
    font-size: 2rem;
    font-family: "Bebas Neue", serif;
    font-weight: 400;
    font-style: normal;
    padding-top: 5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.5s ease-out 0.5s forwards;
}


main {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.album-btn {
    display: inline-block;
    margin-top: 2rem;
    padding: 15px 30px;
    font-size: 2rem;
    color: black;
    background-color: red;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid red;
    transition: 0.3s ease;
    opacity: 0;
    transform: scale(0.9);
    animation: scaleIn 1s ease-out 1s forwards;
}

@keyframes scaleIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

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

.album-btn:hover {
    background-color: white;
    color: red;
    border-color: white;
    transform: scale(1.05);
}

#countdown {
    margin-top: 6rem;
    font-family: 'Anton', sans-serif;
    font-size: 5rem;
    color: white;
    text-transform: uppercase;
    transition: 0.3s ease;
    opacity: 0;
    transform: scale(0.9);
    animation: scaleIn 2s ease-out 3.3s forwards;
}

@media (max-width: 1350px) {
    #countdown {
        margin-top: 5rem;
        font-size: 3rem;
    }
}

@media (max-width: 870px) {
    #countdown {
        margin-top: 3rem;
        font-size: 2.2rem;
    }
}

.footer {
    background: black;
    text-align: center;
    padding: 20px;
    transition: 0.3s ease;
    opacity: 0;
    transform: scale(0.9);
    animation: scaleIn 1s ease-out 5s forwards;
}

.footer a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.footer a:hover {
    color: rgb(255, 0, 0);
}

@media (max-width: 768px) {
    header h1 {
        font-size: 6rem;
        letter-spacing: 0.1rem;
        line-height: 7rem;
    }

    main {
        margin-top: 0rem;
    }

    .album-btn {
        margin-top: 1rem;
        padding: 10px 20px;
        font-size: 1rem;
    }

    #countdown {
        margin-top: 2rem;
        font-size: 1.5rem;
    }

    li > span {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 4.2rem;
    }

    header p {
        font-size: 1.2rem;
    }

    #countdown {
        font-size: 1.2rem;
    }

    .album-btn {
        padding: 8px 16px;
        font-size: 1.1rem;
    }
}



.track-list-container {
    color: white;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.2;   
    margin: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: none;
    overflow: auto;
}

li > span {
    font-size: 20px;
    white-space: nowrap;
    overflow: hidden;
    width: 0;
    animation: typewriter 3s steps(30) forwards, fadeIn 1s 3s forwards;
    opacity: 0;
}

@keyframes typewriter {
    to {
        width: 100%;
    }
}

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

#track1 {
    animation-delay: 2.5s;
}

#track2 {
    animation-delay: 1.5s;
}

#track3 {
    animation-delay: 2s;
}

#track4 {
    animation-delay: 2.5s;
}

#track5 {
    animation-delay: 3s;
}

#track6 {
    animation-delay: 0s;
}

#track7 {
    animation-delay: 4s;
}

#track8 {
    animation-delay: 4.5s;
}

#track9 {
    animation-delay: 6s;
}

#track10 {
    animation-delay: 5s;
}

#track11 {
    animation-delay: 6.5s;
}

#track12 {
    animation-delay: 8s;
}

#track13 {
    animation-delay: 5.5s;
}

#track14 {
    animation-delay: 6.5s;
}

#track15 {
    animation-delay: 7.5s;
}

#track16 {
    animation-delay: 8.5s;
}

#track17 {
    animation-delay: 10s;
}

#track18 {
    animation-delay: 9s;
}

#track19 {
    animation-delay: 9.5s;
}

#track20 {
    animation-delay: 9.5s;
}

#track21 {
    animation-delay: 3s;
}

#track22 {
    animation-delay: 2.6s;
}

#track23 {
    animation-delay: 6s;
}

#track24 {
    animation-delay: 10s;
}

#track25 {
    animation-delay: 3s;
}

.red {
    color:red;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-direction: column;
}