@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'IBM Plex Mono', monospace !important;
    font-weight: 400 !important;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: antialiased; 
}

body {
    background-color: #fff;
    color: #000;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden; 
}

.content {
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.timer-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 10px;
    margin-bottom: 40px;
    align-items: baseline;
}

.unit {
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.unit span {
    font-size: 32px;
    line-height: 1;
}

.unit small {
    font-size: 10px;
    margin-left: 2px;
}

.fade-up {
    animation: quickFade 0.4s ease-out;
}

@keyframes quickFade {
    0% { opacity: 0.3; }
    100% { opacity: 1; }
}

.info {
    margin-top: 30px;
}

.disclaimer {
    font-size: 20px;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
    color: #000;
    text-transform: uppercase;
}

.sub-text {
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 4px;
    color: #555; 
    text-transform: uppercase;
    line-height: 1.4;
}

.sub-text:last-of-type {
    margin-bottom: 25px;
}

.tour-link {
    display: inline-block;
    text-decoration: none;
    color: #000;
    font-size: 14px;
    letter-spacing: 3px;
    border-bottom: 1px solid #000;
    padding-bottom: 2px;
    margin-top: 10px;
    transition: opacity 0.3s;
}

.tour-link:hover {
    opacity: 0.6;
}

@media screen and (max-width: 350px) {
    .unit span { font-size: 24px; }
    .timer-grid { gap: 5px; }
    .sub-text { font-size: 8px; }
}


.yzy-nav, .tier-nav {
    position: fixed !important;
    top: 25px !important;
    text-decoration: none !important;
    color: #000000 !important;
    font-size: 19px;
    letter-spacing: -0.05em; 
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1); 
    background: none;
    padding: 0;
    display: inline-block;
}

.yzy-nav { left: 25px !important; }
.tier-nav { right: 25px !important; }

.yzy-nav:hover, .tier-nav:hover {
    color: #aaaaaa !important;
    letter-spacing: 0.3em; 
    opacity: 0.8;
    transform: scale(1.02);
}

.yzy-nav:visited, .tier-nav:visited {
    color: #000000 !important;
}
