* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", Tahoma, Arial, sans-serif;
}

body {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f3d2e, #1f6b4f);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.container {
    text-align: center;
    padding: 40px 25px;
    max-width: 500px;
    width: 100%;
}

.logo {
    width: 160px;
    margin-bottom: 25px;
}

h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #f1d27a; /* gold */
}

.subtitle {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 35px;
}

.countdown {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 35px;
}

.time-box {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 15px 10px;
    flex: 1;
}

.time-box span {
    font-size: 34px;
    font-weight: bold;
    color: #9be5b4; /* soft green */
}

.time-box small {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    letter-spacing: 1px;
    opacity: 0.8;
}

footer {
    font-size: 13px;
    opacity: 0.7;
}
