body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #141E30, #243B55);
    font-family: 'Roboto', sans-serif;
    color: #fff;
    text-align: center;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo {
    max-width: 300px;
    height: auto;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.2rem;
    color: #BBDEFB;
    margin-bottom: 20px;
}

.message {
    margin-bottom: 40px;
}

.message h1 {
    font-size: 2.5rem;
    margin: 0;
    color: #FFCDD2;
}

.message p {
    font-size: 1.2rem;
    color: #C5CAE9;
    margin: 5px 0 20px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.countdown-item {
    text-align: center;
}

.circle {
    position: relative;
    width: 120px;
    height: 120px;
}

.circular-chart {
    display: block;
    margin: 10px auto;
    max-width: 100%;
    max-height: 100%;
}

.circle-bg {
    fill: none;
    stroke: #eee;
    stroke-width: 3.8;
}

.circle {
    fill: none;
    stroke-width: 2.8;
    stroke-linecap: round;
    animation: progress 1s ease-out forwards;
}

.purple .circle {
    stroke: #AB47BC;
}

.green .circle {
    stroke: #66BB6A;
}

.yellow .circle {
    stroke: #FFEB3B;
}

.red .circle {
    stroke: #EF5350;
}

.number {
    font-size: 1.5rem;
    font-weight: bold;
    fill: #fff;
    text-anchor: middle;
    alignment-baseline: middle;
    dominant-baseline: central;
}

.label {
    position: absolute;
    bottom: -20px;
    font-size: 1.2rem;
    width: 100%;
    text-align: center;
    color: #B0BEC5;
}

.footer {
    position: fixed;
    bottom: 20px;
    width: 100%;
    text-align: center;
}

.footer a {
    color: #BBDEFB;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.footer a:hover {
    color: #FFCDD2;
}

@keyframes progress {
    0% {
        stroke-dasharray: 0 100;
    }
}
