* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    margin: 0;
    background-color: #26262c;
    font-family: Arial, sans-serif;
    color: #efeff1;
}

h1 {
    font-size: 60px;
    font-weight: bold;
    padding: 40px;
}

a {
    color: #efeff1;
}

p {
    text-align: center;
}

.main-wrapper {
    margin: 75px auto 0;
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    animation: fadeInDown 1s ease-out;
}

.page-title {
    margin-bottom: 15px;
}

.countdown-container {
    display: flex;
    gap: 10px;
}

.time-box {
    background: #0e0e10;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.7);
    min-width: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.time-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.7);
}

.time-box span {
    display: inline-block;
    font-size: 50px;
    font-weight: bold;
    color: #a970ff;
    animation: pulse 1s infinite ease-in-out;
}

.time-box p {
    margin: 5px 0 0;
    text-transform: uppercase;
    font-size: 15px;
    color: #efeff1;
}

#info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 40px;
    align-items: center;
    max-width: 1000px;
}

.site-footer {
    background-color: #0e0e10;
    color: #efeff1;
    padding: 20px;
    font-size: 15px;
    width: 100%;
    border-top: 1px solid #333333;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); color: #eb0400; }
    100% { transform: scale(1); }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}