:root {
    --bg-dark: #0B0E14;
    --bg-panel: rgba(255, 255, 255, 0.03);
    --bg-panel-border: rgba(255, 255, 255, 0.08);
    --text-main: #FFFFFF;
    --text-muted: #94A3B8;
    --accent-primary: #00FF94;
    --accent-secondary: #00D1FF;
    --gradient-glow: linear-gradient(135deg, rgba(0, 255, 148, 0.2) 0%, rgba(0, 209, 255, 0.2) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
}

/* Abstract glowing background blobs */
.ambient-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--gradient-glow);
    filter: blur(120px);
    border-radius: 50%;
    z-index: 0;
    animation: float 15s ease-in-out infinite alternate;
}

.glow-1 {
    top: -200px;
    left: -150px;
}

.glow-2 {
    bottom: -100px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: rgba(0, 209, 255, 0.15);
    animation-delay: -5s;
}

@keyframes float {
    0% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(50px) scale(1.1);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 24px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--bg-panel-border);
    background: rgba(11, 14, 20, 0.7);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: contain;
}

/* Hero Section */
main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 60px;
    z-index: 10;
    position: relative;
}

.grid-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
}

/* Store Buttons */
.store-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: var(--bg-panel);
    border: 1px solid var(--bg-panel-border);
    border-radius: 16px;
    color: var(--text-main);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.store-btn:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.store-btn i {
    font-size: 28px;
}

.store-btn .btn-text {
    display: flex;
    flex-direction: column;
}

.store-btn .small-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.store-btn .large-text {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
}

.coming-soon-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #FF6B6B, #FF4081);
    color: white;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 12px;
    border-bottom-left-radius: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Hero Visual / Features Card */
.glass-card {
    background: var(--bg-panel);
    border: 1px solid var(--bg-panel-border);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(16px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

/* Floating user avatar simulations */
.avatar-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid var(--bg-panel-border);
    padding: 4px;
    background: var(--bg-dark);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    animation: float 6s ease-in-out infinite alternate;
}

.avatar-ring img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.av-1 {
    width: 80px;
    height: 80px;
    top: -30px;
    right: 40px;
    animation-delay: 0s;
    border-color: var(--accent-primary);
}

.av-2 {
    width: 60px;
    height: 60px;
    bottom: 80px;
    left: -20px;
    animation-delay: -2s;
    border-color: var(--accent-secondary);
}

.av-3 {
    width: 50px;
    height: 50px;
    top: 100px;
    right: -25px;
    animation-delay: -4s;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(0, 255, 148, 0.1);
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    border: 1px solid rgba(0, 255, 148, 0.2);
}

.feature-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Decorative live indicator */
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 64, 129, 0.1);
    color: #FF4081;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 64, 129, 0.2);
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #FF4081;
    border-radius: 50%;
    box-shadow: 0 0 10px #FF4081;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 64, 129, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 64, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 64, 129, 0);
    }
}

footer {
    padding: 30px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-top: 1px solid var(--bg-panel-border);
    z-index: 10;
}

@media (max-width: 1024px) {
    .grid-container {
        grid-template-columns: 1fr;
        gap: 80px;
        text-align: center;
    }
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .store-badges {
        justify-content: center;
    }
    .feature-item {
        text-align: left;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    nav {
        padding: 20px 24px;
    }
    .av-1, .av-2, .av-3 {
        display: none;
    }
    .store-badges {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    .store-btn {
        width: 100%;
        justify-content: center;
    }
}
