.coming-soon-container {
    position: relative;
    min-height: 100vh;
    background-color: #f8fdff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #333333;
}

.dark .coming-soon-container {
    background-color: #111827;
    color: #f9fafb;
}

/* Subtle animated wave background */
.waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    z-index: 1;
}

.wave {
    position: absolute;
    bottom: 0;
    width: 200%;
    height: 300px;
    background: linear-gradient(transparent, #f8fdff);
    animation: wave 15s linear infinite;
}

.dark .wave {
    background: linear-gradient(transparent, #111827);
}

.wave1 {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 300'%3E%3Cpath fill='%2320abe2' fill-opacity='0.15' d='M0,160L48,176C96,192,192,224,288,213.3C384,203,480,149,576,133.3C672,117,768,139,864,165.3C960,192,1056,224,1152,213.3C1248,203,1344,149,1392,122.7L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") bottom repeat-x;
    animation-duration: 20s;
}

.wave2 {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 300'%3E%3Cpath fill='%23e48b25' fill-opacity='0.1' d='M0,96L48,122.7C96,149,192,203,288,213.3C384,224,480,192,576,176C672,160,768,160,864,165.3C960,171,1056,181,1152,176C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") bottom repeat-x;
    animation-duration: 25s;
    animation-direction: reverse;
}

@keyframes wave {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.coming-soon-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 60px 30px;
    text-align: center;
    animation: fadeIn 1.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.logo {
    width: 140px;
    height: 140px;
    margin: 0 auto 40px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.coming-soon-content h1 {
    font-size: 4rem;
    font-weight: 700;
    color: #20abe2;
    margin-bottom: 20px;
}

.dark .coming-soon-content h1 {
    color: #38bdf8;
}

.coming-soon-content .description {
    font-size: 1.3rem;
    color: #666666;
    margin-bottom: 50px;
    line-height: 1.6;
}

.dark .coming-soon-content .description {
    color: #d1d5db;
}

.email-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto 50px;
    box-shadow: 0 10px 30px rgba(32, 171, 226, 0.15);
    border-radius: 12px;
    overflow: hidden;
}

.email-form input[type="email"] {
    flex: 1;
    padding: 20px 28px;
    border: none;
    font-size: 1.1rem;
    outline: none;
}

.email-form input[type="email"]::placeholder {
    color: #aaa;
}

.email-form button {
    padding: 20px 40px;
    background: #20abe2;
    color: white;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
}

.email-form button:hover {
    background: #e48b25;
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(228, 139, 37, 0.3);
}

.social a {
    color: #666666;
    font-size: 2.2rem;
    margin: 0 20px;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.dark .social a {
    color: #d1d5db;
}

.social a:hover {
    color: #20abe2;
    transform: translateY(-5px);
}

.dark .social a:hover {
    color: #38bdf8;
}

/* Responsive */
@media (max-width: 640px) {
    .coming-soon-content h1 { font-size: 3rem; }
    .email-form { flex-direction: column; }
    .email-form button { border-radius: 12px; }
    .logo { width: 110px; height: 110px; }
}
.illustration {
    width: 220px;
    height: 220px;
    margin: 0 auto 50px;
}

.gavel {
    animation: swing 4s infinite ease-in-out;
    transform-origin: center bottom;
}

.documents {
    animation: floatDoc 6s infinite ease-in-out;
}

.arrows {
    animation: bounce 3s infinite;
}

@keyframes swing {
    0%, 100% { transform: rotate(-10deg); }
    50% { transform: rotate(10deg); }
}

@keyframes floatDoc {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 640px) {
    .illustration { width: 180px; height: 180px; }
}

.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.logo {
    height: 300px; /* adjust as needed */
    width: auto;
    animation: float 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
