:root {
    --bg-color: #05050b;
    --accent-purple: #a855f7;
    --accent-blue: #3b82f6;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Stars */
.stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, #111 0%, #05050b 100%);
    z-index: -1;
}

/* Navigation */
.glass-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    padding: 15px 30px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(45deg, var(--accent-blue), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    margin-left: 20px;
    font-weight: 400;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 10%;
    text-align: center;
}

.hero-content h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    margin-bottom: 20px;
}

.glow-text {
    text-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
}

.accent {
    color: var(--accent-purple);
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

/* Buttons */
.btn-glow {
    padding: 15px 40px;
    background: linear-gradient(45deg, var(--accent-blue), var(--accent-purple));
    border-radius: 30px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.5);
    transition: 0.3s;
}

.btn-glow:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(168, 85, 247, 0.8);
}

.btn-secondary {
    margin-left: 20px;
    padding: 15px 30px;
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    color: white;
    text-decoration: none;
    backdrop-filter: blur(5px);
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 100px 10%;
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 24px;
    transition: 0.3s;
}

.glass:hover {
    border-color: var(--accent-purple);
    transform: translateY(-10px);
}

.feature-card .icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
}

/* Download Section */
.download-section {
    padding: 100px 10%;
    text-align: center;
}

.download-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.download-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: white;
    width: 200px;
}

.download-card img {
    margin-bottom: 15px;
}

/* Footer */
footer {
    padding: 50px 10%;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--text-secondary);
}

.footer-links {
    margin-top: 15px;
}

.footer-links a {
    color: var(--text-secondary);
    margin: 0 10px;
    text-decoration: none;
}

/* Animations */
.aura-sphere {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.2) 0%, transparent 70%);
    filter: blur(50px);
    animation: pulse 10s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(74, 222, 128, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

@keyframes fadeInBlur {
    from { opacity: 0; filter: blur(20px); transform: translateY(20px); }
    to { opacity: 1; filter: blur(0); transform: translateY(0); }
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(74, 222, 128, 0.1);
    border-radius: 20px;
    margin-bottom: 20px;
    animation: fadeInBlur 1s ease-out;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #4ade80;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-text {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1rem;
    color: #4ade80;
}

.glow-text {
    text-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
    animation: fadeInBlur 1.5s ease-out;
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    .download-grid { flex-direction: column; align-items: center; }
}
