/* ---------------------------------------------------------
   Prime Zone — Homepage hero (orbit style) + Browse by Game
   Loaded on every frontend page (frontend/includes/header.php),
   used by index.php.
--------------------------------------------------------- */
.fe-hero-v2{
    position:relative;margin:0 0 6px;border-radius:22px;overflow:hidden;padding:0;
    background:linear-gradient(155deg,#151233,#0A0E1F);border:1px solid var(--border);
}
[data-theme="light"] .fe-hero-v2{border:1px solid rgba(15,23,42,0.08);}

/* full banner image, no crop — height follows the image's own aspect ratio */
.fe-hero-v2 .hero-banner{display:block;line-height:0;}
.fe-hero-v2 .hero-banner img{width:100%;height:auto;display:block;}
.fe-hero-v2 .hero-banner.no-link{cursor:default;}

.fe-hero-v2 .hero-caption{position:relative;z-index:2;padding:16px 20px 4px;}
.fe-hero-v2 .hero-caption h2{font-family:inherit;font-size:19px;line-height:1.32;margin:0 0 6px;font-weight:700;color:#fff;}
.fe-hero-v2 .hero-caption p{color:#B7C0D6;font-size:13px;line-height:1.55;margin:0;}
.fe-hero-v2 .hero-cta{display:inline-flex;align-items:center;gap:6px;margin-top:14px;padding:10px 16px;border-radius:99px;
    background:rgba(255,255,255,0.08);border:1px solid rgba(255,255,255,0.18);color:#fff;font-size:12.5px;font-weight:600;
    text-decoration:none;}

.fe-hero-v2 .hero-body{position:relative;z-index:2;padding:16px 20px 20px;}
.fe-hero-v2 .feature-row{display:flex;gap:8px;flex-wrap:wrap;}
.fe-hero-v2 .feature-chip{flex:1;min-width:90px;display:flex;flex-direction:column;align-items:center;gap:4px;
    padding:10px 6px;border-radius:13px;background:rgba(255,255,255,0.05);border:1px solid rgba(255,255,255,0.1);
    text-align:center;}
.fe-hero-v2 .feature-chip .ico{font-size:16px;}
.fe-hero-v2 .feature-chip b{font-size:10.5px;color:#fff;font-weight:600;display:block;}
.fe-hero-v2 .feature-chip span{font-size:9px;color:#9AA5BD;}

.fe-section-games .fe-section-header h2{border-left:3px solid var(--brand-primary);padding-left:10px;}

.fe-hero-v2 .fe-hero-dots{position:static;transform:none;left:auto;bottom:auto;justify-content:center;margin:12px 0 0;}
.fe-hero-v2 .fe-hero-dots span{background:var(--border);}
.fe-hero-v2 .fe-hero-dots span.active{background:linear-gradient(90deg,var(--brand-primary),#9B7CFF);width:20px;border-radius:99px;}

/* ---- Browse by Game: colorful cards ---- */
.game-grid{display:grid;grid-template-columns:repeat(3, minmax(0,1fr));gap:10px;}
.game-card-wrap{display:flex;flex-direction:column;gap:8px;min-width:0;
    text-decoration:none;color:inherit;}
.game-card-v2{height:90px;border-radius:16px;position:relative;overflow:hidden;
    transition:transform .2s ease;background-size:cover;background-position:center;
    background-color:var(--card-bg);}
@media (max-width: 380px) {
    .game-grid{grid-template-columns:repeat(2, minmax(0,1fr));}
}
.game-card-wrap:hover .game-card-v2{transform:translateY(-3px);}
.game-card-v2.g1{background-image:linear-gradient(135deg,#1E4FD9,#1B2B6B);}
.game-card-v2.g2{background-image:linear-gradient(135deg,#B23AE0,#5B1F8C);}
.game-card-v2.g3{background-image:linear-gradient(135deg,#0EA5A0,#0A3F52);}
.game-card-v2 .glow{position:absolute;width:80px;height:80px;border-radius:50%;background:rgba(255,255,255,0.25);
    filter:blur(24px);bottom:-20px;right:-10px;}
.game-card-v2 .tag{position:absolute;top:9px;left:9px;display:flex;align-items:center;gap:4px;
    padding:4px 9px;border-radius:99px;background:rgba(0,0,0,0.4);backdrop-filter:blur(4px);
    font-size:10px;font-weight:700;color:#fff;}
.game-card-wrap h3{margin:0;padding:0 2px;font-size:13px;font-weight:700;color:var(--text);
    white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}

