body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #000000;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
    padding-top: 100px; /* Increased margin to center content below logo */
}
.logo {
    position: absolute;
    top: 20px;
    width: 150px;
    height: auto;
    z-index: 2;
}
.container {
    max-width: 800px;
    padding: 20px;
    z-index: 1;
    text-align: center;
    width: 90%;
    margin-top: auto;
    margin-bottom: auto;
}
h1 {
    font-size: 2em;
    margin-bottom: 15px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transition: opacity 0.5s;
}
h1 .fixed-text {
    font-weight: bold;
}
h1 .dynamic-text {
    opacity: 1;
    transition: opacity 0.5s;
}
.coming-soon {
    font-size: 1.2em;
    color: #f4a261;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}
p {
    font-size: 1em;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #ffffff;
}
.countdown {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.countdown div {
    background: linear-gradient(to bottom, #d97706, #f4a261);
    color: #ffffff;
    padding: 15px;
    border-radius: 10px;
    min-width: 60px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}
.countdown div:hover {
    transform: scale(1.1);
}
.countdown span {
    display: block;
    font-size: 1.8em;
    font-weight: bold;
}
.countdown p {
    margin: 5px 0 0;
    font-size: 0.9em;
    color: #ffffff;
}
.flying-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 15s infinite linear;
    pointer-events: none;
}
.wave {
    position: absolute;
    background: linear-gradient(to right, #d97706, #f4a261);
    opacity: 0.3;
    border-radius: 50%;
    animation: wave 20s infinite ease-in-out;
    pointer-events: none;
}
@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(50vw, 20vh) rotate(90deg); }
    50% { transform: translate(100vw, 50vh) rotate(180deg); }
    75% { transform: translate(50vw, 80vh) rotate(270deg); }
    100% { transform: translate(0, 100vh) rotate(360deg); }
}
@keyframes wave {
    0% { transform: scale(0) translate(-50%, -50%); opacity: 0.3; }
    50% { transform: scale(1.5) translate(-50%, -50%); opacity: 0.1; }
    100% { transform: scale(2) translate(-50%, -50%); opacity: 0; }
}
.background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/african-pattern.png');
    opacity: 0.1;
    z-index: -1;
}
@media (max-width: 600px) {
    .logo {
        width: 120px;
        top: 10px;
    }
    .container {
        padding: 10px;
    }
    h1 {
        font-size: 1.5em;
    }
    .coming-soon {
        font-size: 1em;
    }
    .countdown div {
        min-width: 50px;
        padding: 10px;
    }
    .countdown span {
        font-size: 1.5em;
    }
    .countdown p {
        font-size: 0.8em;
    }
    .flying-element {
        width: 15px;
        height: 15px;
    }
    .wave {
        width: 80px;
        height: 80px;
    }
}
@media (min-width: 601px) and (max-width: 900px) {
    .logo {
        width: 130px;
    }
    h1 {
        font-size: 1.8em;
    }
    .coming-soon {
        font-size: 1.1em;
    }
    .countdown div {
        min-width: 60px;
        padding: 12px;
    }
    .countdown span {
        font-size: 1.6em;
    }
    .flying-element {
        width: 20px;
        height: 20px;
    }
    .wave {
        width: 120px;
        height: 120px;
    }
}
@media (min-width: 901px) {
    .logo {
        width: 150px;
    }
    h1 {
        font-size: 2em;
    }
    .flying-element {
        width: 40px;
        height: 40px;
    }
    .wave {
        width: 200px;
        height: 200px;
    }
}