* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(135deg, #0B3C5D, #061d2f);
    color: #ffffff;
}

.coming-soon {
    min-height: 100vh;
}

.logo {
    max-width: 180px;
}

h1 {
    font-size: 3rem;
    font-weight: 600;
}

p {
    opacity: 0.8;
}

.flip-clock {
    gap: 25px;
}

.time-group span {
    margin-top: 10px;
    display: block;
    font-size: 0.85rem;
    opacity: 0.7;
}

.flip-card {
    position: relative;
    width: 110px;
    height: 120px;
    perspective: 1000px;
}

.flip-card .top,
.flip-card .bottom {
    position: absolute;
    width: 100%;
    height: 50%;
    background: #0e2a40;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    font-weight: 600;
}

.flip-card .top {
    top: 0;
}

.flip-card .bottom {
    bottom: 0;
    transform-origin: top;
}

.flip {
    animation: flipDown 0.6s ease-in-out;
}

@keyframes flipDown {
    from { transform: rotateX(0deg); }
    to { transform: rotateX(-180deg); }
}

.trademark {
    margin-top: 40px;
    font-size: 12px;
    opacity: 0.55;
}

.trademark strong {
    color: #1E88E5;
}
