@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

body {
    font-family: 'Bebas Neue', Arial, sans-serif;
    background-color: #000000;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('image.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(10px);
    z-index: -1;
}

.container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.album-box {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
}

.album-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
}

.countdown-wrapper {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    opacity: 80%;
}

.countdown {
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 2px;
}

.countdown-item {
    display: inline-block;
    margin: 0 10px;
}

.countdown-item span {
    display: block;
    font-size: 150px;
}

@media (max-width: 768px) {
    .countdown-item span {
        font-size: 100px;
    }
}

@media (max-width: 480px) {
    .countdown-item span {
        font-size: 60px;
    }
}
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    letter-spacing: 3px;
    text-transform: uppercase;    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 0.6);}

.countdown-item p {
    font-size: 18px;
    color: #cccccc;
    margin: 8px 0 0 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    text-shadow: 0 8px 12px rgba(0, 0, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 0.6);
}

.presave-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 28px; /* Matching countdown font-size */
    color: #fff;
    text-decoration: none;
    border: 2px solid #fff;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    opacity: 100%;
}

.presave-button:hover {
    background-color: #ff4500; /* Neon Orange */
    color: #fff;
    border-color: #ff4500;
}