:root {
    --midnight: #0a192f;
    --accent: #64ffda;
    --slate: #8892b0;
    --white: #e6f1ff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--midnight);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px; /* Added padding for mobile edges */
}

.geometric-bg {
    position: fixed; /* Changed to fixed for better mobile scrolling */
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(10,25,47,1) 0%, rgba(17,34,64,1) 100%);
    z-index: -1;
}

.geometric-bg::after {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2364ffda' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2v-4h4v-2H6zM36 4V0h-2v4h-4v2h4v4h2v-4h4v-2h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.logo {
    font-weight: 700;
    letter-spacing: 4px;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.symbol { color: var(--accent); margin-right: 10px; }

h1 {
    font-size: clamp(2rem, 8vw, 4.5rem); /* Responsive font sizing */
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.highlight { color: var(--accent); opacity: 0.9; }

.subtitle {
    font-size: 1.1rem;
    color: var(--slate);
    max-width: 600px;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(100, 255, 218, 0.1);
    color: var(--accent);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
}

.dot {
    height: 8px; width: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    margin-right: 10px;
    animation: blink 2s infinite;
}

@keyframes blink { 0% { opacity: 1; } 50% { opacity: 0.3; } 100% { opacity: 1; } }

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(230, 241, 255, 0.1);
    padding-top: 2rem;
}

.info-item h3 {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.info-item p { color: var(--slate); font-size: 0.85rem; }

/* MOBILE FIXES */
@media (max-width: 768px) {
    body {
        align-items: flex-start; /* Start from top on mobile */
        padding-top: 60px;
        overflow-y: auto; /* Allow scrolling if content is tall */
    }
    
    .logo { margin-bottom: 2rem; }
    
    .info-grid {
        grid-template-columns: 1fr; /* Stack items vertically on mobile */
        gap: 1rem;
        margin-top: 2rem;
    }
}