* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    min-height: 100vh;
    background: #0d1117;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
}

/* Glowing Background Blur Effects */
.background-globes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.globe {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.45;
}

.globe-1 {
    width: 380px;
    height: 380px;
    background: #6366f1;
    top: -50px;
    left: -50px;
}

.globe-2 {
    width: 420px;
    height: 420px;
    background: #ec4899;
    bottom: -100px;
    right: -100px;
}

/* Container & Glassmorphism Card */
.container {
    z-index: 10;
    padding: 20px;
    width: 100%;
    max-width: 600px;
}

.maintenance-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px 35px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

/* Rotating Gear Animations */
.icon-container {
    position: relative;
    height: 80px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gear-1 {
    font-size: 55px;
    color: #6366f1;
    animation: spin 10s linear infinite;
}

.gear-2 {
    font-size: 35px;
    color: #ec4899;
    position: absolute;
    top: 15px;
    margin-left: 55px;
    animation: spin-reverse 8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spin-reverse {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

/* Badge */
.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: #818cf8;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Typography */
h1 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff, #a5b4fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 35px;
}

/* Subscription Form */
.subscribe-form {
    display: flex;
    gap: 10px;
    max-width: 450px;
    margin: 0 auto 10px;
}

.subscribe-form input {
    flex: 1;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 0.9rem;
    outline: none;
    transition: border 0.3s ease;
}

.subscribe-form input:focus {
    border-color: #6366f1;
}

.subscribe-form button {
    padding: 14px 22px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.subscribe-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.form-message {
    font-size: 0.85rem;
    margin-bottom: 30px;
    min-height: 20px;
}

/* Social Media Icons */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #6366f1;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
    .maintenance-card {
        padding: 35px 20px;
    }

    h1 {
        font-size: 1.7rem;
    }

    .subscribe-form {
        flex-direction: column;
    }
}