:root {
    --font-primary: 'Space Grotesk', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    --text-gradient: linear-gradient(135deg, #ffffff 0%, #C0C0C0 100%);
}

.hero-bg {
    min-height: 100vh;
    background: linear-gradient(135deg, #2a2a2a 0%, #3d3d3d 100%);
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

#smoke-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.8;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    min-height: calc(100vh - 4rem);
}

.hero-left {
    flex: 1;
    padding: 2rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left h1 {
    font-family: var(--font-primary);
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    background: var(--text-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.hero-left h1::after {
    content: '';
    position: absolute;
    bottom: -0.2em;
    left: 0;
    width: 100%;
    height: 0.1em;
    background: var(--text-gradient);
    opacity: 0.5;
    transform: scaleX(0.8);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.hero-left:hover h1::after {
    transform: scaleX(1);
}

.hero-left .subheadline {
    font-family: var(--font-secondary);
    font-size: 1.75rem;
    font-weight: 500;
    color: #C0C0C0;
    margin-bottom: 2.5rem;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.02em;
    max-width: 600px;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

#coin-animation {
    width: 100%;
    height: 100%;
    position: relative;
    margin: 0 auto;
    z-index: 2;
}

#coin-animation canvas {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
}

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

.primary-btn, .secondary-btn {
    font-family: var(--font-primary);
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.primary-btn {
    background: rgba(192, 192, 192, 0.9);
    color: #1a1a1a;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.secondary-btn {
    background: rgba(192, 192, 192, 0.1);
    color: #C0C0C0;
    border: 2px solid rgba(192, 192, 192, 0.3);
    backdrop-filter: blur(5px);
}

.primary-btn:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.05em;
}

.secondary-btn:hover {
    background: rgba(192, 192, 192, 0.15);
    transform: translateY(-2px);
    border-color: rgba(192, 192, 192, 0.5);
    letter-spacing: 0.05em;
}

/* Metrics Section Styles */
.metrics-section {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 4rem 0;
    position: relative;
}

.metrics-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.metrics-ticker {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    background: rgba(0, 0, 0, 0.4);
    padding: 2.5rem;
    border-radius: 16px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(192, 192, 192, 0.1);
}

.metric {
    text-align: center;
}

.metric-value {
    font-family: var(--font-primary);
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #C0C0C0;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.02em;
}

.metric-label {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    font-weight: 500;
    color: #808080;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Content Preview Indicator */
.hero-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(10, 10, 10, 0.3));
    pointer-events: none;
    z-index: 1;
}





@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding-top: 4rem;
    }

    .hero-left {
        max-width: 100%;
    }

    .hero-right {
        height: 400px;
        width: 100%;
    }

    .cta-buttons {
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .subheadline {
        font-size: 1.5rem;
    }

    .metric-value {
        font-size: 2.5rem;
    }

    .metrics-ticker {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.75rem;
    }

    .subheadline {
        font-size: 1.25rem;
    }

    .metrics-ticker {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .hero-right {
        height: 300px;
    }

    .metric-value {
        font-size: 2.25rem;
    }

    .primary-btn, .secondary-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
} 