:root {
    --bg-dark: #050a07;
    --primary-emerald: #008f58;
    --accent-gold: #ffd700;
    --text-white: #ffffff;
    --text-dim: rgba(255, 255, 255, 0.7);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-main);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Fluid Background */
.fluid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    /* Increased duration for smoother, longer flow, but more movement range below */
    animation: float 25s infinite ease-in-out;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: var(--primary-emerald);
    animation-delay: 0s;
    animation-duration: 25s;
}

.blob-2 {
    bottom: -10%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: var(--accent-gold);
    animation-delay: -5s;
    animation-duration: 30s;
    /* Different duration to avoid sync */
}

.blob-3 {
    top: 40%;
    left: 40%;
    width: 40vw;
    height: 40vw;
    background: #004433;
    animation-delay: -10s;
    animation-duration: 28s;
}

.blur-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(60px);
    /* Smooth out the blobs */
}

/* App Container */
.app-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Navigation */
.glass-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 60px;
}

.logo {
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.nav-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    background: var(--glass-bg);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff88;
    animation: pulse 2s infinite;
}

/* Hero Section */
.hero-section {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 700;
}

.gradient-text {
    background: linear-gradient(135deg, #fff 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-dim);
    max-width: 600px;
}

/* Glass Card */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Ticker Card */
.ticker-card {
    min-width: 300px;
    text-align: center;
    margin: 20px 0;
    transition: transform 0.3s ease;
}

.ticker-card:hover {
    transform: translateY(-5px);
}

.ticker-header {
    display: flex;
    justify-content: center;
    /* Centered since label is gone */
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trend {
    color: var(--primary-emerald);
    font-weight: 700;
}

.price-display {
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-gold);
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.currency {
    font-size: 2rem;
}

.unit {
    font-size: 1rem;
    color: var(--text-dim);
    font-weight: 400;
}

.ticker-footer {
    margin-top: 10px;
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* CTAs */
.cta-group {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.magnetic-btn {
    position: relative;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.magnetic-btn.primary {
    background: var(--text-white);
    color: var(--bg-dark);
}

.magnetic-btn.secondary {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-white);
}

.magnetic-btn:hover {
    transform: scale(1.05);
}

/* Stats Section */
.stats-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--glass-border);
}

/* Features Grid */
.features-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    width: 100%;
    margin-bottom: 60px;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    transition: background 0.3s;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
}

.icon {
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    color: var(--accent-gold);
}

.feature-card p {
    color: var(--text-dim);
    line-height: 1.5;
}

/* Process Section */
.process-section {
    text-align: center;
    margin-bottom: 60px;
}

.process-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--text-white);
}

.steps-container {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.step-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    margin-bottom: 10px;
}

.step h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-emerald);
}

.step p {
    color: var(--text-dim);
    font-size: 0.9rem;
}

/* Footer */
.simple-footer {
    text-align: center;
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-top: auto;
    padding-top: 40px;
}

/* Animations */
@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(20vw, 10vh) scale(1.1);
    }

    50% {
        transform: translate(-10vw, 20vh) scale(0.9);
    }

    75% {
        transform: translate(-20vw, -10vh) scale(1.05);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .cta-group {
        flex-direction: column;
        width: 100%;
    }

    .magnetic-btn {
        width: 100%;
    }

    .stat-divider {
        display: none;
    }

    .stats-section {
        flex-direction: column;
        gap: 30px;
    }

    .steps-container {
        flex-direction: column;
    }
}