body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    font-family: 'Roboto', sans-serif;
    background-color: #222;
    box-sizing: border-box;
    min-height: 100vh;
    overflow: hidden;
}

body {
    background-image: url('images/backgroundN.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    min-height: 100vh;
    width: 100vw;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.heading-container {
    position: fixed;
    top: 12vh;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
    z-index: 5;
}

h1 {
    font-family: 'Unbounded', 'Roboto', sans-serif;
    color: #fff;
    font-size: 3.2em;
    font-weight: 900;
    margin: 0;
    line-height: 1.1;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px #000;
}

.divider {
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, #5b9bd5 0%, #a7d7ff 100%);
    margin: 24px auto 0;
    border-radius: 2px;
    box-shadow: 0 2px 8px #0003;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    text-align: center;
}

.timer-container {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 20px;
    padding: 20px 20px 20px 20px;
    box-shadow: 0 8px 32px #000a;
    border: 1.5px solid rgba(255,255,255,0.12);
    min-width: 320px;
    max-width: 90vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-heading {
    color: #a7d7ff;
    letter-spacing: 3px;
    font-size: 1.1em;
    margin-bottom: 18px;
    font-weight: 600;
    text-shadow: 0 2px 8px #000;
}

#timer {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

.timer-box {
    background: rgba(10, 23, 40, 0.7);
    padding: 18px 16px 12px 16px;
    border-radius: 16px;
    width: 90px;
    border: 1.5px solid rgba(255,255,255,0.10);
    box-shadow: 0 2px 12px #0005;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.15s, box-shadow 0.15s;
}

.timer-box:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 8px 24px #5b9bd5aa;
}

#timer span {
    font-size: 2.5em;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 8px #000;
}

#timer .label {
    font-size: 0.85em;
    color: #a7d7ff;
    margin-top: 8px;
    letter-spacing: 1.2px;
    font-weight: 500;
}

.footer-right {
    position: fixed;
    bottom: 30px;
    right: 32px;
    color: #a7d7ff;
    font-size: 1em;
    font-weight: 600;
    letter-spacing: 1.5px;
    z-index: 10;
    text-shadow: 0 2px 8px #000, 0 0 16px #5b9bd5, 0 0 2px #fff;
}

@media (max-width: 600px) {
    .heading-container {
        margin-top: 24px;
    }
    h1 {
        font-size: 2em;
    }
    .divider {
        width: 50px;
        height: 3px;
    }
    .timer-container {
        padding: 18px 6vw 12px 6vw;
        min-width: unset;
    }
    #timer {
        gap: 12px;
    }
    .timer-box {
        width: 60px;
        padding: 10px 4px 6px 4px;
    }
    .footer-right {
        font-size: 0.85em;
        right: 12px;
        bottom: 16px;
    }
} 