/* ============================================================================
   GENX EMPIRE - PREMIUM AESTHETIC OVERRIDES (INDEX PAGE)
   ============================================================================ */
/* This file strictly modifies colors, borders, shadows, backgrounds, and glows.
   It DOES NOT touch grid, flex, padding, margins, sizing, or relative positioning 
   to ensure the layout NEVER breaks. */

/* === 1. GLOBAL GLASSMORPHISM & REDEFINING SURFACES === */
.glass-card {
    background: rgba(15, 15, 20, 0.4) !important;
    backdrop-filter: blur(20px) saturate(150%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(150%) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.1),
        0 15px 35px rgba(0, 0, 0, 0.4) !important;
}

.glass-card:hover {
    border-color: rgba(225, 29, 72, 0.5) !important;
    box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.2),
        0 20px 50px rgba(225, 29, 72, 0.15) !important;
}

/* === 2. BUTTONS UPGRADE === */
.btn-primary {
    background: linear-gradient(135deg, #E11D48 0%, #ff1549 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
    box-shadow: 0 8px 30px rgba(225, 29, 72, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.2) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    font-weight: 700 !important;
}

.btn-primary:hover {
    box-shadow: 0 15px 40px rgba(225, 29, 72, 0.6), inset 0 2px 0 rgba(255, 255, 255, 0.3) !important;
    filter: brightness(1.1) !important;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(225, 29, 72, 0.6) !important;
    box-shadow: 0 10px 25px rgba(225, 29, 72, 0.2) !important;
}

/* === 3. HERO & TYPOGRAPHY GLOW === */
.gradient-text {
    background: linear-gradient(to right, #ff4b4b, #ff0055, #ff4b4b) !important;
    background-size: 200% auto !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    animation: gradientShine 4s linear infinite !important;
}

@keyframes gradientShine {
    to {
        background-position: 200% center;
    }
}

.hero h1 {
    text-shadow: 0 10px 30px rgba(225, 29, 72, 0.1) !important;
}

.text-glow {
    text-shadow: 0 0 40px rgba(225, 29, 72, 0.8), 0 0 20px rgba(225, 29, 72, 0.4) !important;
}

.hero-glow {
    /* Make the hero subtle red glow behind text much more premium */
    background: radial-gradient(circle, rgba(225, 29, 72, 0.15) 0%, transparent 60%) !important;
    filter: blur(40px) !important;
}

/* Polaroids */
.hero-polaroid {
    border-radius: 8px !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.hero-polaroid:hover {
    box-shadow: 0 35px 70px rgba(225, 29, 72, 0.25) !important;
    border-color: rgba(225, 29, 72, 0.5) !important;
}

/* === 4. STATS SECTION === */
.stat-num {
    background: linear-gradient(to bottom, #ffffff 0%, #a1a1aa 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    text-shadow: none !important;
    /* Removing basic text shadow for cleaner gradient text */
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.2)) !important;
}

/* === 5. FEATURE / ECOSYSTEM CARDS === */
.feature-card {
    background: rgba(15, 15, 20, 0.4) !important;
    backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.feature-card:hover {
    background: rgba(25, 25, 30, 0.6) !important;
    border-color: rgba(225, 29, 72, 0.4) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 0 30px rgba(225, 29, 72, 0.05) !important;
}

.feature-icon {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.feature-icon.red {
    box-shadow: 0 10px 25px rgba(225, 29, 72, 0.4) !important;
}

/* === 6. BLUEPRINT SECTION === */
.blueprint-card {
    background: rgba(10, 10, 15, 0.6) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
}

.blueprint-card:hover {
    border-color: #E11D48 !important;
    box-shadow: 0 20px 40px rgba(225, 29, 72, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

.blueprint-num {
    color: transparent !important;
    -webkit-text-stroke: 1px rgba(225, 29, 72, 0.4) !important;
    transition: all 0.4s ease !important;
}

.blueprint-card:hover .blueprint-num {
    color: #E11D48 !important;
    -webkit-text-stroke: 0 !important;
    text-shadow: 0 0 25px rgba(225, 29, 72, 0.5) !important;
}

/* === 7. REVIEWS/TESTIMONIALS GRID === */
.review-card {
    background: rgba(20, 20, 25, 0.7) !important;
    backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-top: 4px solid #E11D48 !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3) !important;
    border-radius: 20px !important;
}

.review-card:hover {
    border-color: rgba(225, 29, 72, 0.3) !important;
    box-shadow: 0 25px 50px rgba(225, 29, 72, 0.15) !important;
}

.slider-btn {
    background: rgba(20, 20, 25, 0.8) !important;
    backdrop-filter: blur(5px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.slider-btn:hover {
    background: #E11D48 !important;
    border-color: #ff1549 !important;
    box-shadow: 0 10px 25px rgba(225, 29, 72, 0.5) !important;
}

/* === 8. MENTOR IMAGE ENHANCEMENT === */
.mentor-image img {
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6) !important;
    filter: grayscale(100%) contrast(1.1) brightness(0.9) !important;
}

.mentor-image:hover img {
    filter: grayscale(0%) contrast(1.0) brightness(1.0) !important;
    box-shadow: 0 30px 60px rgba(225, 29, 72, 0.3) !important;
}

/* === 9. ENROLL / PRICING UPGRADES === */
.enroll-card {
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), 0 0 50px rgba(225, 29, 72, 0.1) !important;
}

.enroll-left {
    background: linear-gradient(135deg, rgba(30, 30, 35, 0.95), rgba(15, 15, 17, 0.95)) !important;
}

/* Old Price Badge Redesign */
.old-price-badge {
    background: linear-gradient(135deg, #FFD700 0%, #f59e0b 100%) !important;
    border: 1px solid #fbbf24 !important;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4), inset 0 2px 5px rgba(255, 255, 255, 0.4) !important;
    padding: 8px 24px 8px 18px !important;
    border-radius: 50px !important;
    margin-bottom: -18px !important;
    z-index: 5 !important;
}

.old-label {
    background: #E11D48 !important;
    color: white !important;
    border-radius: 20px !important;
    font-size: 0.70rem !important;
    font-weight: 700 !important;
    padding: 5px 12px !important;
    box-shadow: 0 2px 10px rgba(225, 29, 72, 0.3) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5) !important;
    letter-spacing: 1px !important;
}

.old-amount {
    color: #1a1a1a !important;
    font-size: 1.6rem !important;
    font-weight: 900 !important;
    text-decoration-color: #E11D48 !important;
    text-decoration-thickness: 3px !important;
    text-shadow: none !important;
}

.old-amount sup {
    font-size: 0.85rem !important;
}

/* Current Price Box Redesign */
.current-price-box {
    background: linear-gradient(180deg, rgba(20, 20, 25, 0.95) 0%, rgba(10, 10, 12, 0.98) 100%) !important;
    backdrop-filter: blur(20px) !important;
    box-shadow: inset 0 2px 1px rgba(255, 255, 255, 0.05), inset 0 0 30px rgba(245, 158, 11, 0.05), 0 25px 50px rgba(0, 0, 0, 0.5) !important;
    border: 1px solid rgba(245, 158, 11, 0.4) !important;
    padding: 30px 40px 25px !important;
    border-radius: 20px !important;
    width: 100% !important;
}

.price-label {
    color: #fcd34d !important;
    font-weight: 700 !important;
    letter-spacing: 3px !important;
    font-size: 0.9rem !important;
    text-shadow: 0 0 15px rgba(245, 158, 11, 0.3) !important;
}

.price-amount {
    color: white !important;
    font-size: 4.5rem !important;
    font-weight: 900 !important;
    text-shadow: 0 10px 40px rgba(245, 158, 11, 0.3) !important;
    line-height: 1 !important;
    margin: 10px 0 15px !important;
    font-family: 'Space Grotesk', sans-serif !important;
}

.price-amount sup {
    font-size: 2rem !important;
    color: #fcd34d !important;
    font-weight: 700 !important;
}

.pkr-price-inline {
    background: rgba(245, 158, 11, 0.1) !important;
    border: 1px solid rgba(245, 158, 11, 0.3) !important;
    color: #fef3c7 !important;
    padding: 8px 20px !important;
    border-radius: 50px !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}

.btn-enroll {
    background: linear-gradient(135deg, #E11D48 0%, #ff1549 100%) !important;
    box-shadow: 0 10px 30px rgba(225, 29, 72, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.btn-enroll:hover {
    box-shadow: 0 20px 50px rgba(225, 29, 72, 0.6), inset 0 2px 0 rgba(255, 255, 255, 0.3) !important;
    filter: brightness(1.1) !important;
}

/* === 10. POLAROID GALLERY EFFECTS === */
.polaroid {
    border-radius: 4px !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4) !important;
}

.polaroid:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7), inset 0 0 0 1px rgba(225, 29, 72, 0.2) !important;
}