:root {
    --bg-dark: #0a0b10;
    --cyan: #00e5ff;
    --purple: #9d00ff;
    --gold: #ffb300;
    --text-main: #e2e8f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Space Grotesk', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    position: relative;
}

/* Subtle animated grid background to match the network nodes in the logo */
.grid-background {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(0, 229, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 229, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: -1;
    animation: panGrid 20s linear infinite;
}

@keyframes panGrid {
    0% { transform: translateY(0); }
    100% { transform: translateY(30px); }
}

.container {
    text-align: center;
    z-index: 1;
    padding: 2rem;
    max-width: 800px;
}

.hero-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 2rem;
    /* Soft glow around the image to blend it into the background */
    box-shadow: 0 0 40px rgba(157, 0, 255, 0.15), 0 0 80px rgba(0, 229, 255, 0.1);
}

.gradient-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--cyan), var(--purple), var(--gold));
    -webkit-background-clip: text;
    color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
    /* Matches the glowing text effect in the logo */
    text-shadow: 0 0 30px rgba(0, 229, 255, 0.2);
}

.subtitle {
    font-size: 1.2rem;
    color: #94a3b8;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.action-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn {
    padding: 0.8rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: transparent;
    color: var(--cyan);
    border: 1px solid var(--cyan);
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.2) inset;
}

.btn-primary:hover {
    background: rgba(0, 229, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.4) inset, 0 0 20px rgba(0, 229, 255, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--purple);
    border: 1px solid var(--purple);
}

.btn-secondary:hover {
    background: rgba(157, 0, 255, 0.1);
    box-shadow: 0 0 20px rgba(157, 0, 255, 0.4) inset;
}

footer {
    position: absolute;
    bottom: 1rem;
    color: #475569;
    font-size: 0.9rem;
}
