/* -------------------------------------------
   Mobile Landing Page Specifics
   ------------------------------------------- */

/* Hero Stats Grid */
.wprs-hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 15px;
}

.wprs-stat-card {
    border-radius: 16px;
    padding: 15px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.wprs-stat-card i {
    font-size: 24px;
    margin-bottom: 5px;
    display: block;
}

.wprs-stat-val {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.2;
}

.wprs-stat-label {
    font-size: 0.75rem;
    opacity: 0.9;
    margin-top: 4px;
}

/* Background Utility Classes */
.wprs-bg-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.wprs-bg-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.wprs-bg-green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.wprs-bg-orange {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

/* Section Titles */
.wprs-section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 15px 5px 15px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--wprs-text-main);
}

.wprs-refresh-btn {
    font-size: 0.8rem;
    color: var(--wprs-primary);
    text-decoration: none;
    background: rgba(99, 102, 241, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
}

/* Promo Slider */
.wprs-promo-slider {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 15px;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    /* Hide scrollbar IE/Edge */
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
}

.wprs-promo-slider::-webkit-scrollbar {
    display: none;
}

.wprs-promo-card {
    min-width: 260px;
    height: 140px;
    border-radius: 18px;
    color: white;
    position: relative;
    scroll-snap-align: center;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Unlock Code Grid */
.wprs-unlock-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 15px;
}

.wprs-unlock-card {
    background: white;
    padding: 15px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.wprs-play-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wprs-unlock-val {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--wprs-text-main);
    margin: 5px 0 10px 0;
}

.wprs-unlock-btn {
    display: block;
    width: 100%;
    padding: 8px;
    background: var(--wprs-secondary);
    /* Sky Blue */
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
}