:root {
    --bg-color: #0B0C10;
    --text-color: #F8F9FA;
    --accent-primary: #00E5FF;
    --accent-secondary: #B026FF;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, .logo {
    font-family: 'Outfit', sans-serif;
}

/* Background Blobs */
.blob {
    position: absolute;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.5;
    animation: drift 20s infinite alternate ease-in-out;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-secondary), transparent 70%);
}

.blob-2 {
    bottom: 20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-primary), transparent 70%);
}

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.1); }
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    background: rgba(11, 12, 16, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-primary);
}

.btn-primary {
    background: linear-gradient(90deg, var(--accent-secondary), var(--accent-primary));
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    color: white !important;
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.3);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80vh;
    padding: 0 5%;
    gap: 2rem;
}

.hero-content {
    flex: 1;
}

h1.glitch {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    position: relative;
}

.hero-content p {
    font-size: 1.2rem;
    color: #a0a0a0;
    margin-bottom: 2.5rem;
    max-width: 500px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.btn-store img {
    height: 50px;
    transition: transform 0.3s ease;
}

.btn-store:hover img {
    transform: translateY(-5px);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.hero-image img {
    max-width: 100%;
    width: 450px;
    border-radius: 30px;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
}

.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px) rotateX(5deg) rotateY(-5deg); }
    50% { transform: translateY(-20px) rotateX(10deg) rotateY(0deg); }
    100% { transform: translateY(0px) rotateX(5deg) rotateY(-5deg); }
}

/* Features */
.features {
    padding: 5rem 5%;
    text-align: center;
}

.features h2 {
    font-size: 3rem;
    margin-bottom: 4rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s;
}

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

.icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.glass-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.glass-card p {
    color: #a0a0a0;
    line-height: 1.6;
}

/* Omni Section */
.omni-section {
    padding: 5rem 5%;
    display: flex;
    justify-content: center;
}

.omni-content {
    max-width: 800px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.omni-content::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--accent-secondary), transparent 30%);
    animation: spin 10s linear infinite;
    z-index: -1;
    opacity: 0.3;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

.omni-lore {
    font-style: italic;
    font-size: 1.3rem;
    color: var(--accent-primary);
    margin: 2rem 0;
}

/* Footer */
footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3rem 5%;
    border-top: 1px solid var(--glass-border);
    color: #666;
    margin-top: 5rem;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    margin-left: 1.5rem;
}

.footer-links a:hover {
    color: var(--text-color);
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 4rem;
    }
    
    .hero-content p {
        margin: 0 auto 2.5rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    h1.glitch {
        font-size: 3.5rem;
    }
    
    .nav-links a:not(.btn-primary) {
        display: none;
    }
}
