/* =========================================================
   HUNT GAMES — NAVIGATION HUB
   ========================================================= */

.mv-hunt {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}


/* ---------------------------------------------------------
   HERO — Full screen with curved background
   --------------------------------------------------------- */

.mv-hunt-hero-wrapper {
    position: relative;
    margin: -32px -24px 0;
    padding: 80px 24px 100px;
    background: #0a0a0f;
    background-image: 
        radial-gradient(ellipse at 30% 20%, rgba(124, 58, 237, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(124, 58, 237, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(124, 58, 237, 0.03) 0%, transparent 70%),
    overflow: hidden;
}

/* Curved bottom */
.mv-hunt-hero-wrapper::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: #ffffff;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.mv-hunt-hero {
    max-width: 1180px;
    margin: 0 auto;
    padding: 40px 0 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Animated glow orb */
.mv-hunt-hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: mv-glow-float 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes mv-glow-float {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

.mv-hunt-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    padding: 6px 16px 6px 12px;
    border-radius: 100px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.15);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 1;
}

.mv-hunt-hero-eyebrow svg {
    flex: 0 0 14px;
    width: 14px;
    height: 14px;
}

.mv-hunt-hero-eyebrow .mv-dot {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #7c3aed;
    box-shadow: 0 0 12px rgba(124, 58, 237, 0.6);
    margin-right: 4px;
}

.mv-hunt-hero h1 {
    margin: 0 auto;
    max-width: 700px;
    font-size: clamp(40px, 6vw, 68px);
    line-height: 1.02;
    letter-spacing: -0.04em;
    font-weight: 800;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.mv-hunt-hero h1 .mv-highlight {
    background: linear-gradient(135deg, #a78bfa, #7c3aed, #6d28d9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mv-hunt-hero p {
    max-width: 520px;
    margin: 20px auto 0;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 1;
}

/* CTA buttons */
.mv-hunt-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.mv-hunt-hero-actions .mv-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    border-radius: 14px;
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 30px rgba(124, 58, 237, 0.3);
}

.mv-hunt-hero-actions .mv-btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 40px rgba(124, 58, 237, 0.4);
}

.mv-hunt-hero-actions .mv-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.mv-hunt-hero-actions .mv-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Streak badge in hero */
.mv-hunt-hero-streak {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    padding: 10px 24px;
    border-radius: 100px;
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.1);
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    position: relative;
    z-index: 1;
}

.mv-hunt-hero-streak svg {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
}

.mv-hunt-hero-streak strong {
    color: #a78bfa;
    font-weight: 700;
}


/* ---------------------------------------------------------
   GRID
   --------------------------------------------------------- */

.mv-hunt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 22px;
    padding: 60px 0 80px;
    position: relative;
    z-index: 2;
}


/* ---------------------------------------------------------
   CARD
   --------------------------------------------------------- */

.mv-hunt-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 32px 32px 28px;
    box-sizing: border-box;
    border-radius: var(--mv-game-radius-medium, 20px);
    border: 1px solid var(--mv-game-border, #e7e7eb);
    background: var(--mv-game-surface-white, #fff);
    text-decoration: none !important;
    color: inherit;
    opacity: 0;
    transform: translateY(14px);
    animation: mv-hunt-rise 0.5s ease forwards;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.mv-hunt-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 21px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.06), transparent 50%, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.mv-hunt-grid a.mv-hunt-card:hover {
    transform: translateY(-4px);
    border-color: var(--mv-game-purple-light, #a78bfa);
    box-shadow: 0 20px 50px rgba(124, 58, 237, 0.1), 0 0 40px rgba(124, 58, 237, 0.04);
}

.mv-hunt-grid a.mv-hunt-card:hover::before {
    opacity: 1;
}

.mv-hunt-card:nth-child(1) { animation-delay: 0.05s; }
.mv-hunt-card:nth-child(2) { animation-delay: 0.15s; }
.mv-hunt-card:nth-child(3) { animation-delay: 0.25s; }

@keyframes mv-hunt-rise {
    to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    .mv-hunt-card { opacity: 1; transform: none; animation: none; }
}


/* Card top */
.mv-hunt-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 22px;
    gap: 12px;
}

.mv-hunt-card-badge {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mv-game-purple, #7c3aed);
    background: rgba(124, 58, 237, 0.08);
    padding: 4px 12px;
    border-radius: 6px;
}

.mv-hunt-card-timing {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;
    font-size: 11px;
    line-height: 1.3;
    font-weight: 600;
    color: var(--mv-game-text-subtle, #8d8d98);
}

.mv-hunt-card-timing .mv-timing-label {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--mv-game-text-muted, #777780);
}

.mv-hunt-card-timing .mv-timing-value {
    font-weight: 700;
    color: var(--mv-game-text, #151519);
}

.mv-hunt-card-timing .mv-timing-value.is-purple {
    color: var(--mv-game-purple, #7c3aed);
}


/* Icon */
.mv-hunt-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    border-radius: 14px;
    background: linear-gradient(145deg, #faf7ff, #f2eaff);
    border: 1px solid #e2d5ff;
    color: var(--mv-game-purple, #7c3aed);
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.06);
    transition: box-shadow 0.2s ease;
}

.mv-hunt-card-icon svg {
    width: 22px;
    height: 22px;
}

.mv-hunt-grid a.mv-hunt-card:hover .mv-hunt-card-icon {
    box-shadow: 0 4px 24px rgba(124, 58, 237, 0.14);
}


/* Text */
.mv-hunt-card h3 {
    margin: 0;
    font-size: 21px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-weight: 800;
    color: var(--mv-game-text, #151519);
}

.mv-hunt-card p {
    margin: 10px 0 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--mv-game-text-muted, #777780);
}

.mv-hunt-card .mv-hunt-desc {
    font-size: 13px;
    color: var(--mv-game-text-subtle, #8d8d98);
    margin-top: 4px;
}


/* Footer CTA — Black background */
.mv-hunt-card-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 26px;
    padding: 14px 18px;
    border-radius: 12px;
    background: #0a0a0f;
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 13px;
    font-weight: 750;
    color: rgba(255, 255, 255, 0.9);
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.mv-hunt-grid a.mv-hunt-card:hover .mv-hunt-card-cta {
    background: #0f0f1a;
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.06);
}

.mv-hunt-card-cta .mv-cta-label {
    color: rgba(255, 255, 255, 0.7);
}

.mv-hunt-card-cta .mv-cta-label strong {
    color: #ffffff;
}

.mv-hunt-card-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--mv-game-purple, #7c3aed);
    color: #fff;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.mv-hunt-card-arrow svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mv-hunt-grid a.mv-hunt-card:hover .mv-hunt-card-arrow {
    transform: translateX(3px);
    background: var(--mv-game-purple-dark, #6d28d9);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
}


/* ---------------------------------------------------------
   TABLET / MOBILE
   --------------------------------------------------------- */

@media (max-width: 600px) {

    .mv-hunt-hero-wrapper {
        margin: -32px -24px 0;
        padding: 60px 24px 80px;
    }

    .mv-hunt-hero-wrapper::after {
        height: 40px;
    }

    .mv-hunt-hero {
        padding: 20px 0;
    }

    .mv-hunt-hero h1 {
        font-size: 34px;
    }

    .mv-hunt-hero p {
        font-size: 16px;
    }

    .mv-hunt-hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .mv-hunt-hero-actions .mv-btn-primary,
    .mv-hunt-hero-actions .mv-btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .mv-hunt-hero-streak {
        font-size: 12px;
        padding: 8px 18px;
    }

    .mv-hunt-grid {
        padding: 40px 0 56px;
        grid-template-columns: 1fr;
    }

    .mv-hunt-card {
        padding: 26px 24px 22px;
    }

    .mv-hunt-card-top {
        flex-wrap: wrap;
    }

    .mv-hunt-card-timing {
        align-items: flex-start;
    }

    .mv-hunt-card-cta {
        padding: 12px 16px;
    }

}