:root {
    --bg-dark-cosmic: #0a091d;
    --bg-card-dark: #131129;
    --text-purple: #9d4edf;
    --text-blue: #3a86ff;
    --grad-primary: linear-gradient(135deg, #8a2be2 0%, #4a00e0 100%);
    --grad-cta: linear-gradient(90deg, #9d4edf 0%, #5e17eb 100%);
}

.hero-section {
    background-color: var(--bg-dark-cosmic);
    background-image: radial-gradient(circle at 75% 40%, rgba(157, 78, 223, 0.22) 0%, transparent 60%);
    position: relative;
}

.badge-tag {
    background: rgba(255, 255, 255, 0.07);
    color: #b5b3cd;
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 700;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    display: inline-block;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.text-gradient-purple {
    background: linear-gradient(45deg, #c77dff, #9d4edf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-blue {
    background: linear-gradient(45deg, #4ea8de, #3a86ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-gradient-cta {
    background: var(--grad-cta);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(157, 78, 223, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-gradient-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(157, 78, 223, 0.6);
    color: white;
}

.hero-render-space {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-coin {
    position: absolute;
    color: #ffd700;
    opacity: 0.8;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
    z-index: 4;
}

.coin-1 {
    top: 15%;
    left: 10%;
    font-size: 1.8rem;
    animation: floatController 4s ease-in-out infinite alternate;
}

.coin-2 {
    bottom: 35%;
    right: 5%;
    font-size: 1.5rem;
    animation: floatController 6s ease-in-out infinite alternate-reverse;
}

.feature-floating-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.07);
    margin-top: -60px;
    position: relative;
    z-index: 10;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.feature-box {
    display: flex;
    align-items: center;
    padding: 0.5rem;
}

.feature-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-right: 1.2rem;
    flex-shrink: 0;
}

.icon-games { background: #f3eeff; color: #7b2cbf; }
.icon-rewards { background: #edf4ff; color: #3a86ff; }
.icon-secure { background: #e8f9f2; color: #10b981; }
.icon-community { background: #fff6ed; color: #f97316; }

.feature-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #0f172a;
}

.feature-desc {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 0;
    line-height: 1.4;
}

.section-divider {
    color: #94a3b8;
    display: flex;
    align-items: center;
    text-align: center;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

.section-divider::before, .section-divider::after {
    content: '';
    flex: 1;
    border-bottom:2px dashed #cbd5e1;
}

.section-divider:not(:empty)::before { margin-right: 1.5rem; }
.section-divider:not(:empty)::after { margin-left: 1.5rem; }

.step-card {
    text-align: left;
    position: relative;
}

.step-icon-circle {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.step-number {
    position: absolute;
    top: -4px;
    left: -4px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-arrow {
    position: absolute;
    top: 32px;
    right: -15%;
    color: #cbd5e1;
    font-size: 1.2rem;
}