body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
.container {
    text-align: center;
    background-color: #fff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    position: relative;
    z-index: 1;
}
h1 {
    color: #333;
    margin-bottom: 20px;
}
p {
    color: #666;
}
.countdown {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
.countdown-item {
    margin: 0 10px;
    text-align: center;
}
.countdown-value {
    font-size: 36px;
    font-weight: bold;
    color: #007bff;
}
.countdown-label {
    font-size: 14px;
    color: #999;
}
.gears {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.gear-1 {
    position: absolute;
    top: 20%;
    left: 20%;
    animation: rotate 8s linear infinite;
}
.gear-2 {
    position: absolute; 
    bottom: 10%;
    right: 25%;
    animation: rotate-reverse 12s linear infinite;
}
.gear-3 {
    position: absolute;
    top: 15%;
    right: 15%; 
    animation: rotate 6s linear infinite;
}
@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(359deg); }
}
@keyframes rotate-reverse {
    0% { transform: rotate(359deg); }
    100% { transform: rotate(0deg); }
}