* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    font-family: Arial, sans-serif;
    background: #000;
}

.time-zones {
    width: 100%;
    height: 100px;

    display: flex;
    align-items: stretch;
}

.zone {
    flex: 1;
    height: 100px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    color: white;
}

.hour {
    font-size: 42px;
    font-weight: bold;
    line-height: 1;
}

.date {
    margin-top: 6px;
    font-size: 14px;
    line-height: 1;
}

.zone-1 {
    background: rgb(204, 78, 242);
}

.zone-2 {
    background: rgb(242, 78, 99);
}

.zone-3 {
    background: rgb(78, 242, 179);
}

.zone-4 {
    background: rgb(78, 132, 242);
}

.zone-5 {
    background: rgb(78, 242, 89);
}

.zone-6 {
    background: rgb(78, 215, 242);
}

.zone-7 {
    background: rgb(113, 78, 242);
}

.zone-8 {
    background: rgb(242, 146, 78);
}

.zone-9 {
    background: rgb(157, 242, 78);
}

.zone-10 {
    background: rgb(242, 78, 190);
}

.zone-11 {
    background: rgb(242, 237, 78);
}

.map {
    position: fixed;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    max-width: 95vw;
    max-height: calc(100vh - 200px);

    width: auto;
    height: auto;

    object-fit: contain;
}

.bottom-panel {
    position: fixed;
    left: 0;
    right: 100px;
    bottom: 0;

    height: 100px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;
    font-size: 42px;
    font-weight: bold;

    background: linear-gradient(
        90deg,
        #996E00 0%,
        #996E00 30%,
        #D39E00 50%,
        #996E00 70%,
        #996E00 100%
    );
}

.minutes {
    position: fixed;
    right: 0;
    bottom: 0;

    width: 100px;
    height: 100px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.75),
        rgba(255, 255, 255, 0.95)
    );

    color: #000;
    font-size: 42px;
    font-weight: bold;
}

.minutes-value {
    display: inline-flex;
    align-items: center;

    opacity: 1;
    transition: opacity 0.35s ease;
}