body {
    margin: 0;
    padding: 0;
    background-color: #0c0c0c;
    color: white;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.container {
    text-align: center;
    width: 90%;
    max-width: 600px;
    position: relative;
}

header {
    margin-bottom: 2rem;
}

header p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
}

header h1 {
    font-size: 2.2rem;
    margin-top: 0.5rem;
}

.logo-area {
    margin-bottom: 3rem;
}

.main-logo {
    max-width: 250px;
    height: auto;
}

.countdown-section {
    position: relative;
    margin-bottom: 3rem;
}

.timer-ring {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto;
}

#countdown {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    font-weight: bold;
}

.circular-chart {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.circle-bg {
    fill: none;
    stroke: #333;
    stroke-width: 1.5;
}

.circle {
    fill: none;
    stroke: #FF4500;
    stroke-width: 1.5;
    stroke-linecap: round;
    transition: stroke-dasharray 1s linear;
}

footer {
    font-size: 1rem;
    line-height: 1.5;
    position: relative;
}

footer .manual-link {
    font-size: 0.9rem;
    opacity: 0.8;
}

footer a {
    color: white;
    text-decoration: none;
    border-bottom: 1px solid white;
    padding-bottom: 2px;
}

footer a:hover {
    border-bottom: 2px solid #FF4500;
    color: #FF4500;
}

/* Background Elements Simulation */
body::before,
body::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background-color: transparent;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="[http://www.w3.org/2000/svg](http://www.w3.org/2000/svg)" width="100" height="100"><circle cx="50" cy="50" r="48" stroke="%23333" stroke-width="1" fill="none"/></svg>');
    background-size: cover;
    opacity: 0.15;
    z-index: -1;
    border-radius: 50%;
}

body::before {
    top: -150px;
    left: -150px;
}

body::after {
    bottom: -150px;
    right: -150px;
}