/* --- CSS Variables matched to your Logo --- */
:root {
    --primary: #041E42; /* Deep Navy Blue from the logo */
    --secondary: #00D2C6; /* Vibrant Cyan/Teal from the logo */
    --text-light: #E0E0E0;
    --white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: radial-gradient(circle at center, #0B2B5E, var(--primary));
    color: var(--white);
    height: 100vh;
    overflow: hidden; 
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px; 
}

/* --- Floating 3D Background Shapes --- */
.bg-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), transparent);
    filter: blur(40px);
    animation: float 8s infinite alternate ease-in-out;
}

.shape-1 { width: 350px; height: 350px; top: -10%; left: -5%; }
.shape-2 { width: 250px; height: 250px; bottom: -5%; right: 5%; animation-delay: 2s; }
.shape-3 { width: 150px; height: 150px; top: 40%; left: 50%; animation-delay: 4s; opacity: 0.5; }

@keyframes float {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-40px) scale(1.1); }
}

/* --- Glassmorphism 3D Card --- */
.coming-soon-wrapper {
    z-index: 10;
    width: 100%;
    max-width: 800px;
    padding: 20px;
    transform-style: preserve-3d;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.5);
    transform-style: preserve-3d;
    transition: transform 0.1s ease;
}

/* Push elements outward for 3D Depth */
.brand, .main-title, .description, .notify-form, .social-links {
    transform: translateZ(40px);
}

/* --- Logo Styling --- */
.brand {
    margin-bottom: 20px;
}
.brand-logo {
    max-width: 180px; 
    height: auto;
    filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.4)); /* 3D pop effect */
    border-radius: 50%;
}

.main-title { font-size: 3.5rem; margin-bottom: 15px; }
.main-title span { color: var(--secondary); text-shadow: 0 0 10px rgba(0, 210, 198, 0.3); }

.description { font-size: 1.1rem; line-height: 1.6; color: var(--text-light); margin-bottom: 40px; }
.description strong { color: var(--white); }

/* --- Notify Form --- */
.notify-form { display: flex; justify-content: center; gap: 10px; margin-bottom: 30px; }

.notify-form input {
    padding: 12px 20px;
    width: 60%;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    outline: none;
    font-size: 1rem;
    transition: 0.3s;
}

.notify-form input::placeholder { color: #aaa; }
.notify-form input:focus { border-color: var(--secondary); background: rgba(255,255,255,0.15); box-shadow: 0 0 15px rgba(0, 210, 198, 0.2); }

.btn-notify {
    padding: 12px 30px;
    border-radius: 30px;
    border: none;
    background: var(--secondary);
    color: var(--primary); /* Dark text for contrast against cyan */
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 210, 198, 0.3);
}

.btn-notify:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0, 210, 198, 0.5); }

/* --- Social Links --- */
.social-links { display: flex; justify-content: center; gap: 15px; transform: translateZ(30px); }
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-decoration: none;
    transition: 0.3s;
}
.social-links a:hover { background: var(--secondary); color: var(--primary); transform: translateY(-3px); }

/* --- Responsive Design --- */
@media(max-width: 768px) {
    .main-title { font-size: 2.5rem; }
    .notify-form { flex-direction: column; align-items: center; }
    .notify-form input { width: 100%; }
    .btn-notify { width: 100%; }
}