
/* --- Navigation Header --- */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    background: rgba(6, 11, 26, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
}

nav {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 60px; /* Restored to original visible size */
    width: auto;
    border-radius: 50%;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--accent-blue);
}

/* --- Coming Soon Page Styles --- */
.teaser-body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #060b1a;
    overflow: hidden;
    color: white;
    text-align: center;
}

.teaser-container {
    max-width: 600px;
    padding: 20px;
}

/* Animated Ring Effect */
.glow-ring {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    border-radius: 50%;
    border: 2px solid rgba(0, 212, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
}

.glow-ring::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-top: 3px solid #00d4ff;
    border-radius: 50%;
    animation: spin 2s linear infinite;
}

.pulse-icon {
    font-size: 3rem;
    color: #00d4ff;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(0.9); } }

.teaser-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
    color: #ffffff;
}

.teaser-text {
    color: #94a3b8;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}


.back-link-simple {
    color: #64748b;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.back-link-simple:hover {
    color: #00d4ff;
}