* {
    font-family: "Quicksand", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    width: 100%;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;

    background-image: url("Assets/defaultBG.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
    backdrop-filter: grayscale(50%) brightness(90%);
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

.chromebook {
	font-size: 90%;
}

.chromebook .logo-img {
	width: 150px;
}

.chromebook #gr_logo {
    width: 68px
}

.chromebook #titleimg {
    width: 600px
}

button {
    transition: all 0.5s;
    backdrop-filter: grayscale();
    padding: 8px;
    font-weight: 400;
    color: white;
    background-color: rgba(255, 255, 255, 0.068);
    border-radius: 8px;
    border-color: white;
}

button:not(:disabled):hover {
    transition: all 0.5s;
    padding: 12px;
    font-size: 90%;
    font-weight: 800;
    background-color: rgba(0, 209, 17, 0.137);
}

button:not(:disabled):active {
    transition: all 0.1s ease-out;
    padding: 12px;
    font-size: 105%;
    font-weight: 1200;
    background-color: rgba(17, 209, 0, 0.308);
}

button:disabled {
    padding: 8px;
    font-weight: 300;
    color: rgb(179, 179, 179);
    background-color: rgba(0, 0, 0, 0.651);
    border-radius: 4px;
    border-color: rgb(53, 53, 53);
    border: none;
}

#bgsong {
    display: none;
}

#songdetails,
#songlink {
    color: rgba(194, 194, 194, 0.473);
    text-decoration: none;
    font-size: 0.95rem;
}

#titleimg {
    filter: grayscale() brightness(30%) blur(4px);
    width: 100%;
    max-width: 720px;
    height: auto;
    display: block;
}

#countdown {
    margin-top: 20px;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffffcc;
}

.logo-section {
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: flex-start;
    margin-top: 20px;
    flex-wrap: wrap; /* ensures it stacks on small screens */
}

.logo-block {
    text-align: center;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
}

.logo-img {
    width: 180px;
    height: auto;
    margin-top: 8px;
    transition: transform 0.3s ease;
}

#gr_logo {
    width: 80px;
    height: auto;
    margin-top: 4px;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.fade-delay-2 {
    animation-delay: 0.5s;
}
.fade-delay-3 {
    animation-delay: 1s;
}
.fade-delay-4 {
    animation-delay: 1.5s;
}
.fade-delay-5 {
    animation-delay: 2s;
}
.fade-delay-6 {
    animation-delay: 2.5s;
}
.fade-delay-7 {
    animation-delay: 2.75s;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1.75s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
