/* ============================================================
   arenaplus.homes - design-fbe2.css
   All custom classes use the "v26c-" prefix.
   Mobile-first, max-width 430px, rem units (root font 62.5%).
   Palette: #A0522D | #FF4500 | #0D1117 | #6A5ACD | #D8BFD8
   ============================================================ */

/* CSS variables - brand tokens */
:root {
  --v26c-primary: #FF4500;
  --v26c-secondary: #A0522D;
  --v26c-accent: #6A5ACD;
  --v26c-soft: #D8BFD8;
  --v26c-bg: #0D1117;
  --v26c-bg-alt: #161b22;
  --v26c-card: #1c2330;
  --v26c-text: #f5f3f0;
  --v26c-text-muted: #b9b4ad;
  --v26c-border: rgba(216, 191, 216, 0.18);
  --v26c-gold: #f5c451;
  --v26c-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
  --v26c-radius: 14px;
}

/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 62.5%; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--v26c-bg);
  color: var(--v26c-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--v26c-gold); text-decoration: none; }

/* Layout containers */
.v26c-container { width: 100%; max-width: 430px; margin: 0 auto; padding: 0 1.2rem; }
.v26c-wrapper { padding: 2rem 0; }
.v26c-section { padding: 2.4rem 0; border-top: 1px solid var(--v26c-border); }
.v26c-section-alt { background: var(--v26c-bg-alt); }

/* Header */
.v26c-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13, 17, 23, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--v26c-border);
}
.v26c-header-inner {
  max-width: 430px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 5.6rem; padding: 0 1.2rem;
}
.v26c-brand { display: flex; align-items: center; gap: 0.6rem; }
.v26c-brand img { width: 28px; height: 28px; border-radius: 6px; }
.v26c-brand-name { font-size: 1.8rem; font-weight: 800; color: var(--v26c-primary); letter-spacing: 0.3px; }
.v26c-header-actions { display: flex; align-items: center; gap: 0.6rem; }
.v26c-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  font-size: 1.3rem; font-weight: 700;
  border: none; border-radius: 10px;
  padding: 0.7rem 1.1rem;
  cursor: pointer; min-height: 40px; min-width: 44px;
  transition: transform 0.15s ease, opacity 0.15s ease;
  background: var(--v26c-primary); color: #fff;
}
.v26c-btn:active { transform: scale(0.95); }
.v26c-btn-outline { background: transparent; border: 1.5px solid var(--v26c-soft); color: var(--v26c-soft); }
.v26c-btn-ghost { background: rgba(106, 90, 205, 0.25); color: var(--v26c-soft); }
.v26c-menu-btn {
  background: transparent; color: var(--v26c-text);
  font-size: 1.8rem; border: 1px solid var(--v26c-border);
  border-radius: 8px; padding: 0.5rem 0.8rem; cursor: pointer;
  min-width: 44px; min-height: 44px;
}

/* Mobile menu drawer */
.v26c-mobile-menu {
  position: fixed; top: 5.6rem; left: 0; right: 0;
  background: var(--v26c-bg-alt);
  border-bottom: 1px solid var(--v26c-border);
  padding: 1.2rem 1.4rem 1.6rem;
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease;
  z-index: 9999;
}
.v26c-mobile-menu.v26c-menu-open { max-height: 480px; padding: 1.2rem 1.4rem 1.6rem; overflow-y: auto; }
.v26c-mobile-menu a {
  display: block; padding: 0.9rem 0.4rem;
  color: var(--v26c-text); font-size: 1.35rem; font-weight: 600;
  border-bottom: 1px solid var(--v26c-border);
}
.v26c-mobile-menu a i { margin-right: 0.6rem; color: var(--v26c-primary); }

/* Main content offset for fixed header */
main { padding-top: 5.6rem; }
@media (max-width: 768px) { main { padding-bottom: 80px; } }

/* Carousel */
.v26c-carousel { position: relative; overflow: hidden; border-radius: var(--v26c-radius); }
.v26c-slide {
  display: none; position: relative; cursor: pointer;
}
.v26c-slide.v26c-slide-active { display: block; }
.v26c-slide img { width: 100%; height: 180px; object-fit: cover; border-radius: var(--v26c-radius); }
.v26c-slide-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1rem 1.2rem;
  background: linear-gradient(to top, rgba(13,17,23,0.92), transparent);
  color: #fff; font-weight: 700;
}
.v26c-slide-cap span { color: var(--v26c-primary); }
.v26c-carousel-dots { position: absolute; bottom: 0.6rem; right: 1rem; display: flex; gap: 0.4rem; z-index: 5; }
.v26c-carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; }
.v26c-carousel-dot.v26c-dot-active { background: var(--v26c-primary); }

/* Hero / H1 */
.v26c-hero { padding: 1.6rem 0 0.4rem; }
.v26c-h1 { font-size: 2rem; font-weight: 800; line-height: 1.35; color: var(--v26c-text); margin-bottom: 0.6rem; }
.v26c-h1 span { color: var(--v26c-primary); }
.v26c-sub { color: var(--v26c-text-muted); font-size: 1.35rem; margin-bottom: 1.2rem; }
.v26c-h2 { font-size: 1.7rem; font-weight: 800; color: #fff; margin-bottom: 0.6rem; }
.v26c-h2 .v26c-accent { color: var(--v26c-primary); }
.v26c-h3 { font-size: 1.45rem; font-weight: 700; color: var(--v26c-soft); margin: 1rem 0 0.4rem; }
.v26c-lead { color: var(--v26c-text-muted); font-size: 1.3rem; margin-bottom: 1rem; }

/* CTA row */
.v26c-cta-row { display: flex; gap: 0.8rem; margin: 1.2rem 0; flex-wrap: wrap; }
.v26c-cta-row .v26c-btn { flex: 1; min-height: 44px; }
.v26c-text-link { color: var(--v26c-primary); font-weight: 700; }
.v26c-text-link:hover { text-decoration: underline; }

/* Filter tabs */
.v26c-filter-bar { display: flex; gap: 0.5rem; overflow-x: auto; padding: 0.6rem 0 1rem; -webkit-overflow-scrolling: touch; }
.v26c-filter-tab {
  flex: 0 0 auto; padding: 0.55rem 1rem; border-radius: 20px;
  font-size: 1.2rem; font-weight: 700; cursor: pointer;
  background: var(--v26c-card); color: var(--v26c-text-muted);
  border: 1px solid var(--v26c-border); white-space: nowrap; min-height: 36px;
}
.v26c-filter-tab.v26c-tab-active { background: var(--v26c-primary); color: #fff; border-color: var(--v26c-primary); }

/* Game grid - compact */
.v26c-game-group { margin-bottom: 1.4rem; }
.v26c-game-group-title {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 1.4rem; font-weight: 800; color: var(--v26c-gold);
  margin-bottom: 0.7rem; padding-bottom: 0.4rem; border-bottom: 1px solid var(--v26c-border);
}
.v26c-game-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.6rem;
}
.v26c-game-item { display: block; text-align: center; cursor: pointer; }
.v26c-game-item img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 10px; border: 1px solid var(--v26c-border); transition: transform 0.15s ease; }
.v26c-game-item:active img { transform: scale(0.94); }
.v26c-game-name { font-size: 1rem; color: var(--v26c-text-muted); margin-top: 0.25rem; line-height: 1.2; word-break: break-word; }

/* Info / feature cards */
.v26c-card {
  background: var(--v26c-card); border: 1px solid var(--v26c-border);
  border-radius: var(--v26c-radius); padding: 1.3rem; margin-bottom: 1rem;
}
.v26c-card-row { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 0.9rem; }
.v26c-card-row:last-child { margin-bottom: 0; }
.v26c-card-icon { font-size: 2.2rem; color: var(--v26c-primary); min-width: 32px; }
.v26c-card h3 { margin: 0 0 0.3rem; }
.v26c-card p { color: var(--v26c-text-muted); font-size: 1.25rem; }

/* RTP / stats compact */
.v26c-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.6rem; margin: 1rem 0; }
.v26c-stat-box { background: var(--v26c-card); border: 1px solid var(--v26c-border); border-radius: 12px; padding: 1rem; text-align: center; }
.v26c-stat-num { font-size: 2rem; font-weight: 800; color: var(--v26c-primary); }
.v26c-stat-label { font-size: 1.1rem; color: var(--v26c-text-muted); }

/* RTP table */
.v26c-rtp-table { width: 100%; border-collapse: collapse; margin-top: 0.8rem; }
.v26c-rtp-table th, .v26c-rtp-table td { padding: 0.7rem 0.5rem; font-size: 1.15rem; border-bottom: 1px solid var(--v26c-border); text-align: left; }
.v26c-rtp-table th { color: var(--v26c-gold); font-weight: 700; }
.v26c-rtp-table td.v26c-rtp-high { color: #4ade80; font-weight: 700; }
.v26c-rtp-table td.v26c-rtp-mid { color: var(--v26c-gold); font-weight: 700; }

/* Testimonials */
.v26c-review { background: var(--v26c-card); border: 1px solid var(--v26c-border); border-radius: 12px; padding: 1.1rem; margin-bottom: 0.8rem; }
.v26c-review-head { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.5rem; }
.v26c-review-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--v26c-primary); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; }
.v26c-review-name { font-weight: 700; font-size: 1.25rem; }
.v26c-review-stars { color: var(--v26c-gold); font-size: 1.2rem; }
.v26c-review-text { color: var(--v26c-text-muted); font-size: 1.2rem; }

/* Winners */
.v26c-winner { display: flex; align-items: center; gap: 0.7rem; padding: 0.6rem 0; border-bottom: 1px dashed var(--v26c-border); }
.v26c-winner:last-child { border-bottom: none; }
.v26c-winner-amount { margin-left: auto; font-weight: 800; color: var(--v26c-primary); }

/* Payment methods */
.v26c-pay-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; margin-top: 0.8rem; }
.v26c-pay-item { background: var(--v26c-card); border: 1px solid var(--v26c-border); border-radius: 10px; padding: 0.8rem; text-align: center; font-size: 1.1rem; color: var(--v26c-text-muted); }
.v26c-pay-item i { display: block; font-size: 1.8rem; color: var(--v26c-soft); margin-bottom: 0.3rem; }

/* VIP / club tiers */
.v26c-tier { display: flex; gap: 0.8rem; padding: 0.9rem; background: var(--v26c-card); border: 1px solid var(--v26c-border); border-radius: 10px; margin-bottom: 0.7rem; }
.v26c-tier-badge { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--v26c-primary), var(--v26c-accent)); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.v26c-tier-info h4 { font-size: 1.35rem; color: var(--v26c-gold); margin-bottom: 0.2rem; }
.v26c-tier-info p { font-size: 1.15rem; color: var(--v26c-text-muted); }

/* Achievement / security list */
.v26c-list { list-style: none; margin: 0.8rem 0; }
.v26c-list li { padding: 0.5rem 0 0.5rem 1.8rem; position: relative; color: var(--v26c-text-muted); font-size: 1.25rem; }
.v26c-list li::before { content: "\2714"; position: absolute; left: 0; color: var(--v26c-primary); font-weight: 800; }

/* Promo banner */
.v26c-promo { background: linear-gradient(135deg, rgba(106,90,205,0.35), rgba(255,69,0,0.22)); border: 1px solid var(--v26c-border); border-radius: var(--v26c-radius); padding: 1.4rem; margin: 1rem 0; }
.v26c-promo h3 { color: var(--v26c-gold); }
.v26c-promo p { color: var(--v26c-text-muted); font-size: 1.25rem; margin-bottom: 0.8rem; }

/* App download CTA */
.v26c-app-cta { text-align: center; background: var(--v26c-card); border: 1px solid var(--v26c-border); border-radius: var(--v26c-radius); padding: 1.6rem 1.2rem; margin: 1.2rem 0; }
.v26c-app-cta h3 { color: var(--v26c-primary); font-size: 1.6rem; }
.v26c-app-cta p { color: var(--v26c-text-muted); font-size: 1.25rem; margin: 0.5rem 0 1rem; }
.v26c-app-buttons { display: flex; gap: 0.6rem; justify-content: center; flex-wrap: wrap; }
.v26c-app-buttons .v26c-btn { min-height: 46px; }

/* Play now block */
.v26c-play-now { text-align: center; padding: 1.8rem 1rem; background: linear-gradient(135deg, var(--v26c-secondary), var(--v26c-primary)); border-radius: var(--v26c-radius); margin: 1.5rem 0; }
.v26c-play-now h2 { color: #fff; font-size: 1.9rem; margin-bottom: 0.4rem; }
.v26c-play-now p { color: rgba(255,255,255,0.88); font-size: 1.25rem; margin-bottom: 1rem; }
.v26c-play-now .v26c-btn { background: #fff; color: var(--v26c-primary); padding: 1rem 2.2rem; font-size: 1.4rem; min-height: 48px; }

/* FAQ accordion */
.v26c-faq-item { border: 1px solid var(--v26c-border); border-radius: 10px; margin-bottom: 0.6rem; overflow: hidden; background: var(--v26c-card); }
.v26c-faq-q { padding: 1rem 1.2rem; font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-size: 1.3rem; color: #fff; }
.v26c-faq-q i { color: var(--v26c-primary); transition: transform 0.2s; }
.v26c-faq-item.v26c-faq-open .v26c-faq-q i { transform: rotate(45deg); }
.v26c-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding: 0 1.2rem; color: var(--v26c-text-muted); font-size: 1.2rem; }
.v26c-faq-item.v26c-faq-open .v26c-faq-a { max-height: 320px; padding: 0 1.2rem 1rem; }

/* Footer */
.v26c-footer { background: var(--v26c-bg-alt); border-top: 1px solid var(--v26c-border); padding: 2rem 0 1rem; margin-top: 2rem; }
.v26c-footer-intro { color: var(--v26c-text-muted); font-size: 1.2rem; margin-bottom: 1rem; line-height: 1.6; }
.v26c-footer-promo { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1rem 0; }
.v26c-footer-promo .v26c-btn { font-size: 1.15rem; padding: 0.5rem 0.9rem; min-height: 40px; }
.v26c-footer-links { display: flex; flex-wrap: wrap; gap: 0.6rem 1rem; margin: 0.8rem 0; }
.v26c-footer-links a { font-size: 1.15rem; color: var(--v26c-soft); }
.v26c-footer-links a:hover { color: var(--v26c-primary); }
.v26c-copy { text-align: center; color: var(--v26c-text-muted); font-size: 1.1rem; padding-top: 1rem; border-top: 1px solid var(--v26c-border); }

/* Mobile bottom nav */
.v26c-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0;
  height: 60px; z-index: 1000;
  background: var(--v26c-bg-alt);
  border-top: 1px solid var(--v26c-border);
  display: flex; justify-content: space-around; align-items: center;
  box-shadow: 0 -4px 14px rgba(0,0,0,0.4);
}
.v26c-bottom-nav-btn {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-width: 60px; min-height: 60px; height: 60px;
  background: none; border: none; cursor: pointer;
  color: var(--v26c-text-muted); font-size: 1rem; gap: 2px;
}
.v26c-bottom-nav-btn i, .v26c-bottom-nav-btn .material-icons-outlined, .v26c-bottom-nav-btn ion-icon { font-size: 24px; }
.v26c-bottom-nav-btn ion-icon { width: 24px; height: 24px; }
.v26c-bottom-nav-btn span { font-size: 1rem; line-height: 1; }
.v26c-bottom-nav-btn:active { transform: scale(0.92); }
.v26c-bottom-nav-btn.v26c-nav-current { color: var(--v26c-primary); }
.v26c-bottom-nav-btn.v26c-nav-promo { color: var(--v26c-gold); }
.v26c-bottom-nav-btn.v26c-nav-promo i { color: var(--v26c-primary); }
@media (min-width: 769px) { .v26c-bottom-nav { display: none; } }

/* Back to top */
#sitee26-back-top {
  position: fixed; right: 1.2rem; bottom: 80px; z-index: 900;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--v26c-primary); color: #fff; border: none;
  font-size: 1.6rem; cursor: pointer; opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
#sitee26-back-top.v26c-back-show { opacity: 1; pointer-events: auto; }

/* Desktop tweak */
@media (min-width: 769px) {
  body { background: var(--v26c-bg); }
  .v26c-container { max-width: 760px; }
  .v26c-header-inner { max-width: 760px; }
  .v26c-game-grid { grid-template-columns: repeat(6, 1fr); }
  .v26c-stats { grid-template-columns: repeat(4, 1fr); }
  .v26c-pay-grid { grid-template-columns: repeat(6, 1fr); }
}