/* Hero Section Block Styles (Frontend - Dark Theme) */

.mobcash-hero-wrapper {
    background-color: var(--bg-main);
    width: 100%;
}

/* Hero Section */
.hero-section {
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-section.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

.hero-section.active {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Background glow effects */
.hero-glow-1 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(110, 50, 249, 0.15) 0%, rgba(0,0,0,0) 70%);
    top: -100px;
    left: -100px;
    z-index: 0;
    pointer-events: none;
}

.hero-glow-2 {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 229, 153, 0.1) 0%, rgba(0,0,0,0) 70%);
    bottom: -200px;
    right: -100px;
    z-index: 0;
    pointer-events: none;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(0, 229, 153, 0.1);
    border: 1px solid rgba(0, 229, 153, 0.3);
    color: var(--accent-cyan);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.hero-title {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--text-white);
    letter-spacing: -1.5px;
}

.hero-title span {
    background: linear-gradient(90deg, #FFFFFF, #8A92A6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-primary {
    background-color: var(--accent-purple);
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: #5b28d6;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

/* Visual content */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.visual-glass-card {
    width: 380px;
    height: 380px;
    background: rgba(30, 35, 48, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(255,255,255,0.05);
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.hero-video-mask {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 229, 153, 0.2);
}

.hero-video-mask video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title { font-size: 42px; }
    .hero-container { gap: 30px; }
    .visual-glass-card { width: 300px; height: 300px; }
    .hero-video-mask { width: 220px; height: 220px; }
}

@media (max-width: 768px) {
    .hero-section { padding: 40px 0 60px; }
    .hero-container { flex-direction: column; text-align: center; }
    .hero-content { align-items: center; display: flex; flex-direction: column; }
    .hero-title { font-size: 36px; }
    .hero-subtitle { margin: 0 auto 30px; }
    .hero-btns { flex-direction: column; width: 100%; }
    .hero-btns a { width: 100%; justify-content: center; }
    .hero-visual { order: -1; margin-bottom: 20px; }
    .hero-section.reveal {
        transition-duration: 0.8s;
        transform: translateY(15px);
    }
    .visual-glass-card { width: 250px; height: 250px; }
    .hero-video-mask { width: 180px; height: 180px; }
}
