:root {
    --bg-color: #020b1c;
    /* Deep Navy from reference */
    --text-color: #ffffff;
    --accent-primary: #00e5ff;
    /* Cyan/Bright Blue */
    --accent-secondary: #0077be;
    /* Medium Blue */
    --accent-green: #00a859;
    /* User defined Green */
    --accent-glow: rgba(0, 229, 255, 0.6);
    --glass-bg: rgba(2, 11, 28, 0.6);
    --glass-border: rgba(0, 229, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    background-image: radial-gradient(circle at 80% 20%, rgba(0, 168, 89, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(0, 229, 255, 0.1) 0%, transparent 40%);
    color: var(--text-color);
    font-family: var(--font-main);
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

#antigravity-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* Behind content */
}

.glass-container {
    position: relative;
    z-index: 10;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 4rem 3rem;
    max-width: 800px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 3rem;
    animation: fadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}

.logo-img {
    height: 60px;
    /* Adjust based on logo aspect ratio */
    width: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 15px rgba(0, 229, 255, 0.3));
    /* Subtle glow matching theme */
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 25px rgba(0, 229, 255, 0.5));
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-title span {
    display: block;
    background: linear-gradient(135deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title .line-2 {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(0, 168, 89, 0.3));
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

/* Button styles removed as requested */

footer {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: auto;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .glass-container {
        padding: 2rem;
        width: 95%;
    }
}