* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    background: #000000;
    color: #FFFFFF;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-font-smoothing: antialiased;
    position: relative;
    overflow-x: hidden;
}

/* Animated Red Grid Background - Enhanced Visibility */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(236, 0, 0, 0.25) 2px, transparent 2px),
        linear-gradient(90deg, rgba(236, 0, 0, 0.25) 2px, transparent 2px);
    background-size: 60px 60px;
    animation: gridPulse 6s ease-in-out infinite, gridMove 20s linear infinite;
    z-index: 0;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(236, 0, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(236, 0, 0, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(236, 0, 0, 0.08) 0%, transparent 70%);
    animation: glowPulse 8s ease-in-out infinite alternate;
    z-index: 0;
    pointer-events: none;
}

@keyframes gridPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 60px 60px;
    }
}

@keyframes glowPulse {
    0% {
        opacity: 0.7;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header */
.header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    padding-top: 2rem;
    border-bottom: 1px solid #262626;
    position: relative;
    animation: fadeIn 1.2s ease-out 0.2s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.university-logo-left {
    width: 220px;
    height: 120px;
    object-fit: contain;
    position: fixed;
    top: 0px;
    left: 10px;
    z-index: 100;
    transition: transform 0.4s cubic-bezier(0.4, 0.0, 0.2, 1), filter 0.3s ease;
    animation: slideInLeft 1s ease-out;
}

.university-logo-left:hover {
    transform: scale(1.05) rotate(-2deg);
    filter: drop-shadow(0 0 20px rgba(236, 0, 0, 0.5));
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.university-logo-right {
    width: 140px;
    height: 140px;
    object-fit: contain;
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 100;
    transition: transform 0.4s cubic-bezier(0.4, 0.0, 0.2, 1), filter 0.3s ease;
    animation: slideInRight 1s ease-out;
}

.university-logo-right:hover {
    transform: scale(1.05) rotate(2deg);
    filter: drop-shadow(0 0 20px rgba(236, 0, 0, 0.5));
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.logo-text {
    flex: 1;
    text-align: center;
}

.logo-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    animation: fadeInScale 1s ease-out 0.3s both;
}

.logo-text h1:hover {
    letter-spacing: 2px;
    color: #EC0000;
    text-shadow: 0 0 20px rgba(236, 0, 0, 0.5);
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.logo-text p {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    animation: fadeInScale 1s ease-out 0.4s both;
}

.logo-text p:hover {
    color: #EC0000;
    transform: scale(1.02);
}

.logo-text span {
    font-size: 0.9rem;
    color: #A8A8A8;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
    animation: fadeIn 1s ease-out 0.5s both;
}

.logo-text span:hover {
    color: #EC0000;
    letter-spacing: 2px;
}

/* Main Content */
.main-content {
    padding: 3rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.main-content-left {
    flex: 1;
    text-align: left;
}

.main-content-right {
    flex-shrink: 0;
}

.subtitle {
    display: none;
}

/* Coming Soon */
.coming-soon-wrapper {
    position: relative;
    margin-bottom: 2rem;
    animation: fadeInUp 1.2s ease-out 0.6s both;
}

.coming-soon-text {
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.03em;
    transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.coming-soon-text:hover {
    letter-spacing: 0.02em;
    text-shadow: 0 0 40px rgba(236, 0, 0, 0.6);
}

.word {
    display: block;
    animation: wordSlide 1.5s ease-out both;
}

.word:nth-child(1) {
    animation-delay: 0.7s;
}

.word:nth-child(2) {
    animation-delay: 0.9s;
}

@keyframes wordSlide {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Tape */
.tape {
    position: absolute;
    width: 120%;
    height: 40px;
    background: #EC0000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(236, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.tape:hover {
    background: #FF0000;
    box-shadow: 0 6px 30px rgba(236, 0, 0, 0.6);
    transform: scale(1.02);
}

.tape::before {
    content: 'TECH FEST • COMING SOON • TECH FEST • COMING SOON • TECH FEST • COMING SOON • TECH FEST • COMING SOON • TECH FEST • COMING SOON • TECH FEST • COMING SOON • TECH FEST • COMING SOON • TECH FEST • COMING SOON • ';
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    animation: scroll 25s linear infinite;
    white-space: nowrap;
    position: absolute;
    left: 0;
}

.tape-1 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-20deg);
    animation: tapeFloat1 1.5s ease-out 1.1s both;
}

.tape-2 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(20deg);
    animation: tapeFloat2 1.5s ease-out 1.3s both;
}

@keyframes tapeFloat1 {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(-20deg) translateY(50px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) rotate(-20deg) translateY(0);
    }
}

@keyframes tapeFloat2 {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(20deg) translateY(50px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) rotate(20deg) translateY(0);
    }
}

@keyframes scroll {
    0% { 
        transform: translateX(0); 
    }
    100% { 
        transform: translateX(-50%); 
    }
}

/* Countdown - Ultra-Realistic Flip Clock */
.countdown-header {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #A8A8A8;
    margin-bottom: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeIn 1s ease-out 1.5s both;
}

.countdown-header:hover {
    color: #EC0000;
    letter-spacing: 2.5px;
}

.countdown {
    display: inline-flex;
    gap: 1.5rem;
    justify-content: center;
    padding: 2rem 3rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #262626;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    animation: fadeInUp 1s ease-out 1.6s both;
}

.countdown:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(236, 0, 0, 0.3);
    box-shadow: 0 10px 40px rgba(236, 0, 0, 0.2);
    transform: translateY(-5px);
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.countdown-item:hover {
    transform: scale(1.05);
}

.flip-clock {
    position: relative;
    width: 100px;
    height: 120px;
    font-size: 4rem;
    font-weight: 700;
    line-height: 120px;
    perspective: 800px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

/* Static Upper Half */
.flip-clock .upper {
    position: absolute;
    width: 100%;
    height: 50%;
    top: 0;
    overflow: hidden;
    background: linear-gradient(to bottom, #3a3a3a 0%, #2a2a2a 50%, #222 100%);
    border: 2px solid #4a4a4a;
    border-bottom: 1px solid #0a0a0a;
    border-radius: 10px 10px 0 0;
    box-shadow: 
        0 -2px 10px rgba(0, 0, 0, 0.3),
        inset 0 2px 3px rgba(255, 255, 255, 0.15),
        inset 0 -2px 5px rgba(0, 0, 0, 0.4);
}

.flip-clock .upper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 10px 10px 0 0;
}

.flip-clock .upper .shadow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.2s ease-out;
}

.flip-clock .upper .number {
    position: absolute;
    width: 100%;
    height: 200%;
    top: 0;
    text-align: center;
    color: #fff;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.9),
        0 0 2px rgba(255, 255, 255, 0.4),
        0 1px 0 rgba(255, 255, 255, 0.2);
    font-family: 'Arial Black', sans-serif;
}

/* Static Lower Half */
.flip-clock .lower {
    position: absolute;
    width: 100%;
    height: 50%;
    bottom: 0;
    overflow: hidden;
    background: linear-gradient(to bottom, #1a1a1a 0%, #0f0f0f 50%, #050505 100%);
    border: 2px solid #4a4a4a;
    border-top: 1px solid #666;
    border-radius: 0 0 10px 10px;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.6),
        inset 0 2px 5px rgba(0, 0, 0, 0.6),
        inset 0 -2px 3px rgba(255, 255, 255, 0.05);
}

.flip-clock .lower::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
    border-radius: 0 0 10px 10px;
}

.flip-clock .lower .number {
    position: absolute;
    width: 100%;
    height: 200%;
    bottom: 0;
    text-align: center;
    color: #e8e8e8;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.9),
        0 0 2px rgba(255, 255, 255, 0.3),
        0 -1px 0 rgba(0, 0, 0, 0.5);
    font-family: 'Arial Black', sans-serif;
}

/* Animated Flip Card */
.flip-clock .flip-card {
    position: absolute;
    width: 100%;
    height: 50%;
    top: 0;
    z-index: 5;
    transform-origin: 50% 100%;
    transform-style: preserve-3d;
}

.flip-clock .flip-card.flipping {
    animation: flipDown 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.flip-clock .flip-card .front,
.flip-clock .flip-card .back {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Front of Flip Card (old number) */
.flip-clock .flip-card .front {
    transform: rotateX(0deg);
    background: linear-gradient(to bottom, #3a3a3a 0%, #2a2a2a 50%, #222 100%);
    border: 2px solid #4a4a4a;
    border-bottom: 1px solid #0a0a0a;
    border-radius: 10px 10px 0 0;
    box-shadow: 
        0 -2px 10px rgba(0, 0, 0, 0.3),
        inset 0 2px 3px rgba(255, 255, 255, 0.15),
        inset 0 -2px 5px rgba(0, 0, 0, 0.4);
}

.flip-clock .flip-card .front::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 10px 10px 0 0;
}

/* Back of Flip Card (new number) */
.flip-clock .flip-card .back {
    transform: rotateX(180deg);
    background: linear-gradient(to bottom, #1a1a1a 0%, #0f0f0f 50%, #050505 100%);
    border: 2px solid #4a4a4a;
    border-top: 1px solid #666;
    border-radius: 0 0 10px 10px;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.6),
        inset 0 2px 5px rgba(0, 0, 0, 0.6),
        inset 0 -2px 3px rgba(255, 255, 255, 0.05);
}

.flip-clock .flip-card .back::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
    border-radius: 0 0 10px 10px;
}

.flip-clock .flip-card .number {
    position: absolute;
    width: 100%;
    height: 200%;
    text-align: center;
    color: #fff;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.9),
        0 0 2px rgba(255, 255, 255, 0.4),
        0 1px 0 rgba(255, 255, 255, 0.2);
    font-family: 'Arial Black', sans-serif;
}

.flip-clock .flip-card .front .number {
    top: 0;
}

.flip-clock .flip-card .back .number {
    bottom: 0;
    color: #e8e8e8;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.9),
        0 0 2px rgba(255, 255, 255, 0.3),
        0 -1px 0 rgba(0, 0, 0, 0.5);
}

/* Ultra-Realistic Flip Animation */
@keyframes flipDown {
    0% {
        transform: rotateX(0deg);
    }
    100% {
        transform: rotateX(-180deg);
    }
}

/* Enhanced shine and reflection during flip */
.flip-clock .flip-card.flipping::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        transparent 100%
    );
    z-index: 10;
    pointer-events: none;
    animation: shine 0.6s ease-out;
    border-radius: 10px 10px 0 0;
}

@keyframes shine {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* Add subtle ambient occlusion */
.flip-clock::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 10%;
    right: 10%;
    height: 10px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.4) 0%, transparent 70%);
    filter: blur(5px);
    z-index: -1;
}

.countdown-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #A8A8A8;
    font-weight: 500;
    transition: all 0.3s ease;
}

.countdown-item:hover .countdown-label {
    color: #EC0000;
    letter-spacing: 1.5px;
}

.stay-tuned {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: #A8A8A8;
    text-transform: uppercase;
    margin-top: 2rem;
    transition: all 0.3s ease;
    animation: fadeIn 1s ease-out 1.8s both;
}

.stay-tuned:hover {
    color: #EC0000;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(236, 0, 0, 0.5);
}

/* Footer */
.footer {
    padding-top: 2rem;
    border-top: 1px solid #262626;
    animation: fadeIn 1s ease-out 2s both;
}

.footer-emblem {
    width: 40px;
    height: 40px;
    border: 1px solid #262626;
    border-radius: 50%;
    margin: 0 auto 0.75rem;
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.footer-emblem:hover {
    border-color: #EC0000;
    box-shadow: 0 0 20px rgba(236, 0, 0, 0.5);
    transform: rotate(360deg) scale(1.1);
}

.footer p {
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    color: #666666;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.footer p:hover {
    color: #EC0000;
    letter-spacing: 2px;
}

/* Responsive */
@media (max-width: 1024px) {
    .main-content {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .main-content-left {
        text-align: center;
    }

    .countdown {
        gap: 1rem;
        padding: 1.5rem 1.5rem;
    }

    .flip-clock {
        width: 70px;
        height: 84px;
        font-size: 3rem;
        line-height: 84px;
    }
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        position: relative;
        padding-top: 100px;
    }

    .university-logo-left {
        width: 140px;
        height: 140px;
        top: 0px;
        left: 5px;
    }

    .university-logo-right {
        width: 100px;
        height: 100px;
        top: 5px;
        right: 5px;
    }

    .logo-text h1 {
        font-size: 1.5rem;
    }

    .logo-text p {
        font-size: 1rem;
    }

    .logo-text span {
        font-size: 0.7rem;
    }

    .countdown {
        gap: 1rem;
        padding: 1.5rem 1.5rem;
    }

    .flip-clock {
        width: 60px;
        height: 72px;
        font-size: 2.5rem;
        line-height: 72px;
    }

    .tape {
        height: 35px;
    }

    .tape::before {
        font-size: 0.6rem;
    }
}


/* Custom Cursor */
body {
    cursor: none;
}

.cursor-dot,
.cursor-outline {
    pointer-events: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 10000;
    transition: opacity 0.3s ease;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: #EC0000;
    box-shadow: 0 0 10px #EC0000, 0 0 20px #EC0000;
    transition: all 0.15s ease;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(236, 0, 0, 0.5);
    transition: all 0.2s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.cursor-outline.expand {
    width: 60px;
    height: 60px;
    border-color: #EC0000;
    background: rgba(236, 0, 0, 0.1);
    box-shadow: 0 0 20px rgba(236, 0, 0, 0.3);
}

/* Hide custom cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
    body {
        cursor: auto;
    }
    
    .cursor-dot,
    .cursor-outline {
        display: none;
    }
}

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
    .main-content {
        gap: 3rem;
    }

    .coming-soon-text {
        font-size: clamp(3.5rem, 10vw, 8rem);
    }

    .countdown {
        gap: 1rem;
        padding: 1.5rem 2rem;
    }

    .flip-clock {
        width: 80px;
        height: 96px;
        font-size: 3.2rem;
        line-height: 96px;
    }
}

@media (max-width: 1024px) {
    .main-content {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
        padding: 2rem 0;
    }

    .main-content-left {
        text-align: center;
    }

    .main-content-right {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .countdown {
        gap: 1rem;
        padding: 1.5rem 2rem;
    }

    .flip-clock {
        width: 70px;
        height: 84px;
        font-size: 3rem;
        line-height: 84px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    .header {
        padding-top: 140px;
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }

    .logo-text h1 {
        font-size: 1.5rem;
    }

    .logo-text p {
        font-size: 1.1rem;
    }

    .logo-text span {
        font-size: 0.75rem;
    }

    .coming-soon-text {
        font-size: clamp(3rem, 12vw, 6rem);
    }

    .tape {
        height: 35px;
    }

    .tape::before {
        font-size: 0.6rem;
    }

    .countdown {
        gap: 0.75rem;
        padding: 1.25rem 1.5rem;
        flex-wrap: wrap;
    }

    .flip-clock {
        width: 60px;
        height: 72px;
        font-size: 2.5rem;
        line-height: 72px;
    }

    .countdown-label {
        font-size: 0.65rem;
    }

    .stay-tuned {
        font-size: 0.85rem;
    }

    .footer {
        padding-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding-top: 120px;
    }

    .logo-text h1 {
        font-size: 1.2rem;
    }

    .logo-text p {
        font-size: 0.95rem;
    }

    .logo-text span {
        font-size: 0.65rem;
    }

    .coming-soon-text {
        font-size: clamp(2.5rem, 15vw, 5rem);
    }

    .countdown-header {
        font-size: 0.7rem;
    }

    .countdown {
        gap: 0.5rem;
        padding: 1rem 1rem;
    }

    .flip-clock {
        width: 50px;
        height: 60px;
        font-size: 2rem;
        line-height: 60px;
    }

    .countdown-label {
        font-size: 0.6rem;
    }

    .tape {
        height: 30px;
    }

    .tape::before {
        font-size: 0.5rem;
    }

    .stay-tuned {
        font-size: 0.75rem;
    }

    .footer-emblem {
        width: 35px;
        height: 35px;
    }

    .footer p {
        font-size: 0.65rem;
    }
}

@media (max-width: 360px) {
    .flip-clock {
        width: 45px;
        height: 54px;
        font-size: 1.75rem;
        line-height: 54px;
    }

    .countdown {
        gap: 0.4rem;
        padding: 0.75rem 0.75rem;
    }
}
