/* arena-plus.css - Arena Plus core stylesheet
   All custom classes use the v735- prefix to isolate the namespace.
   Palette: #2E4057 | #BC8F8F | #6F4E37 | #FAF0E6 | #CCCCCC
   Dark tones for backgrounds, light tones for text. Mobile-first. */

:root {
  --v735-primary: #2E4057;
  --v735-secondary: #BC8F8F;
  --v735-accent: #6F4E37;
  --v735-bg: #FAF0E6;
  --v735-text: #FAF0E6;
  --v735-muted: #CCCCCC;
  --v735-dark: #2E4057;
  --v735-darker: #243447;
  --v735-gold: #d9b38c;
  --v735-card: #35506b;
  --v735-border: rgba(250, 240, 230, 0.14);
  --v735-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.28);
  --v735-radius: 1.2rem;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 62.5%; -webkit-text-size-adjust: 100%; }

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.6rem;
  line-height: 1.5rem;
  color: var(--v735-text);
  background: linear-gradient(160deg, #2E4057 0%, #243447 60%, #6F4E37 100%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: var(--v735-gold); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 { line-height: 1.4; font-weight: 700; color: #fff; }

.v735-container { max-width: 430px; margin: 0 auto; padding: 0 1.2rem; }
.v735-wrapper { width: 100%; }

/* ==================== HEADER ==================== */
.v735-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: linear-gradient(90deg, #243447, #2E4057);
  border-bottom: 0.2rem solid var(--v735-secondary);
  box-shadow: var(--v735-shadow);
}
.v735-header-inner {
  max-width: 430px; margin: 0 auto; height: 6rem; padding: 0 1.2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.v735-brand { display: flex; align-items: center; gap: 0.8rem; min-width: 0; }
.v735-brand img { width: 3rem; height: 3rem; border-radius: 0.6rem; }
.v735-brand-name {
  font-size: 1.8rem; font-weight: 800; color: #fff; letter-spacing: 0.05rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.v735-brand-name span { color: var(--v735-gold); }

.v735-header-actions { display: flex; align-items: center; gap: 0.6rem; }
.v735-btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.8rem 1.4rem; border-radius: 2rem; font-size: 1.3rem; font-weight: 700;
  border: none; cursor: pointer; transition: transform 0.15s, filter 0.15s;
  min-height: 3.6rem; text-decoration: none;
}
.v735-btn:hover { transform: translateY(-0.1rem); text-decoration: none; }
.v735-btn-register {
  background: linear-gradient(90deg, #BC8F8F, #d9b38c); color: #2E4057;
}
.v735-btn-login {
  background: transparent; color: #fff; border: 0.2rem solid var(--v735-secondary);
}
.v735-menu-btn {
  background: transparent; border: none; color: #fff; font-size: 2.2rem;
  cursor: pointer; padding: 0.4rem; min-width: 4rem; min-height: 4rem;
}

/* ==================== MOBILE MENU ==================== */
.v735-mobile-menu {
  position: fixed; top: 6rem; left: 0; right: 0; z-index: 9999;
  background: #243447; border-bottom: 0.2rem solid var(--v735-secondary);
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
}
.v735-mobile-menu.v735-menu-open { max-height: 60rem; }
.v735-mobile-menu-inner {
  max-width: 430px; margin: 0 auto; padding: 1rem 1.2rem 1.6rem;
  display: flex; flex-direction: column; gap: 0.4rem;
}
.v735-mobile-menu a {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 1.2rem 1rem; color: #fff; font-size: 1.5rem; font-weight: 600;
  border-radius: 0.8rem; border-left: 0.3rem solid transparent;
}
.v735-mobile-menu a:hover {
  background: rgba(188, 143, 143, 0.18); border-left-color: var(--v735-secondary);
  text-decoration: none;
}
.v735-mobile-menu a i { color: var(--v735-gold); font-size: 1.8rem; width: 2.2rem; text-align: center; }
.v735-no-scroll { overflow: hidden; }

/* ==================== CAROUSEL ==================== */
.v735-carousel {
  position: relative; margin-top: 7rem; border-radius: var(--v735-radius);
  overflow: hidden; box-shadow: var(--v735-shadow);
}
.v735-carousel-track { position: relative; height: 20rem; }
.v735-carousel-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 0.6s ease;
  cursor: pointer;
}
.v735-carousel-slide.v735-slide-active { opacity: 1; }
.v735-carousel-slide img { width: 100%; height: 100%; object-fit: cover; }
.v735-carousel-cap {
  position: absolute; left: 1.2rem; bottom: 1.4rem; right: 1.2rem;
  background: linear-gradient(90deg, rgba(46,64,87,0.85), rgba(111,78,55,0.7));
  padding: 0.8rem 1.2rem; border-radius: 0.8rem; color: #fff; font-size: 1.4rem; font-weight: 700;
}
.v735-carousel-dots {
  position: absolute; bottom: 0.6rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.5rem;
}
.v735-carousel-dot {
  width: 0.8rem; height: 0.8rem; border-radius: 50%; background: rgba(250,240,230,0.5);
  cursor: pointer; border: none;
}
.v735-carousel-dot.v735-dot-active { background: var(--v735-gold); }

/* ==================== SECTIONS ==================== */
.v735-section { padding: 2rem 0 1rem; }
.v735-section-title {
  font-size: 2rem; margin-bottom: 1rem; padding-bottom: 0.6rem;
  border-bottom: 0.2rem solid var(--v735-secondary); color: #fff;
  display: flex; align-items: center; gap: 0.6rem;
}
.v735-section-title i { color: var(--v735-gold); }
.v735-section-intro { color: var(--v735-muted); font-size: 1.4rem; margin-bottom: 1.2rem; }

.v735-h1 {
  font-size: 2.4rem; margin: 1.5rem 0 0.8rem; color: #fff; text-align: center;
  line-height: 1.3;
}
.v735-h1 span { color: var(--v735-gold); }
.v735-lead {
  text-align: center; color: var(--v735-muted); font-size: 1.4rem; margin-bottom: 1.5rem;
}

/* ==================== FILTER CHIPS ==================== */
.v735-filter-bar {
  display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.2rem;
}
.v735-filter-chip {
  padding: 0.6rem 1.2rem; border-radius: 2rem; font-size: 1.3rem; font-weight: 600;
  background: var(--v735-card); color: #fff; border: 0.15rem solid transparent;
  cursor: pointer;
}
.v735-filter-chip.v735-chip-active {
  background: var(--v735-secondary); color: #2E4057; border-color: var(--v735-gold);
}

/* ==================== GAME GRID ==================== */
.v735-game-group { margin-bottom: 1.6rem; }
.v735-game-group-title {
  font-size: 1.6rem; color: var(--v735-gold); margin: 1rem 0 0.8rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.v735-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem;
}
.v735-game-card {
  background: var(--v735-card); border-radius: 0.8rem; overflow: hidden;
  border: 0.1rem solid var(--v735-border); cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s; display: block;
}
.v735-game-card:hover { transform: translateY(-0.2rem); box-shadow: var(--v735-shadow); text-decoration: none; }
.v735-game-card img { width: 100%; aspect-ratio: 1; object-fit: cover; background: #1a2632; }
.v735-game-name {
  font-size: 1.1rem; color: #fff; padding: 0.5rem 0.4rem; text-align: center;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 600;
}

/* ==================== CARDS / FEATURES ==================== */
.v735-card {
  background: var(--v735-card); border-radius: var(--v735-radius); padding: 1.4rem;
  margin-bottom: 1.2rem; border: 0.1rem solid var(--v735-border);
}
.v735-card h3 { font-size: 1.6rem; margin-bottom: 0.6rem; color: var(--v735-gold); }
.v735-card p { font-size: 1.35rem; color: var(--v735-muted); line-height: 1.5; }
.v735-card ul { list-style: none; margin-top: 0.6rem; }
.v735-card li { font-size: 1.35rem; color: var(--v735-muted); padding: 0.4rem 0 0.4rem 1.6rem; position: relative; }
.v735-card li::before { content: "▸"; position: absolute; left: 0; color: var(--v735-gold); }

.v735-feature-grid { display: grid; grid-template-columns: 1fr; gap: 0.8rem; }
.v735-feature-item {
  background: var(--v735-card); border-radius: 1rem; padding: 1.2rem;
  display: flex; gap: 1rem; align-items: flex-start;
  border-left: 0.3rem solid var(--v735-secondary);
}
.v735-feature-item i { font-size: 2.4rem; color: var(--v735-gold); flex-shrink: 0; }
.v735-feature-item h4 { font-size: 1.4rem; color: #fff; margin-bottom: 0.3rem; }
.v735-feature-item p { font-size: 1.3rem; color: var(--v735-muted); }

/* ==================== CTA ==================== */
.v735-cta {
  background: linear-gradient(90deg, #6F4E37, #BC8F8F); border-radius: var(--v735-radius);
  padding: 1.6rem; text-align: center; margin: 1.2rem 0; color: #fff;
}
.v735-cta h3 { color: #fff; font-size: 1.8rem; margin-bottom: 0.4rem; }
.v735-cta p { font-size: 1.3rem; margin-bottom: 1rem; color: #FAF0E6; }
.v735-cta .v735-btn { background: #fff; color: #6F4E37; font-size: 1.5rem; }

/* ==================== TESTIMONIALS ==================== */
.v735-testimonial {
  background: var(--v735-card); border-radius: 1rem; padding: 1.2rem; margin-bottom: 0.8rem;
  border-left: 0.3rem solid var(--v735-gold);
}
.v735-testimonial-stars { color: var(--v735-gold); font-size: 1.3rem; margin-bottom: 0.4rem; }
.v735-testimonial p { font-size: 1.3rem; color: var(--v735-muted); font-style: italic; }
.v735-testimonial-author { font-size: 1.2rem; color: #fff; margin-top: 0.4rem; font-weight: 600; }

/* ==================== WINNERS ==================== */
.v735-winner-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.8rem 1rem; background: var(--v735-card); border-radius: 0.8rem;
  margin-bottom: 0.5rem; font-size: 1.3rem;
}
.v735-winner-name { color: #fff; font-weight: 600; }
.v735-winner-game { color: var(--v735-muted); font-size: 1.2rem; }
.v735-winner-amount { color: var(--v735-gold); font-weight: 700; }

/* ==================== PAYMENT ==================== */
.v735-payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.6rem; }
.v735-payment-item {
  background: #fff; border-radius: 0.6rem; padding: 0.8rem; text-align: center;
  color: #2E4057; font-size: 1.1rem; font-weight: 700; min-height: 3.6rem;
  display: flex; align-items: center; justify-content: center;
}

/* ==================== RTP TABLE ==================== */
.v735-rpt-row {
  display: flex; justify-content: space-between; padding: 0.7rem 0;
  border-bottom: 0.1rem solid var(--v735-border); font-size: 1.3rem;
}
.v735-rpt-row span:first-child { color: #fff; }
.v735-rpt-row span:last-child { color: var(--v735-gold); font-weight: 700; }

/* ==================== APP DOWNLOAD ==================== */
.v735-app-box {
  background: linear-gradient(120deg, #6F4E37, #2E4057); border-radius: var(--v735-radius);
  padding: 1.6rem; text-align: center; color: #fff; margin: 1.2rem 0;
}
.v735-app-box h3 { color: #fff; margin-bottom: 0.4rem; }
.v735-app-box p { font-size: 1.3rem; margin-bottom: 1rem; color: #FAF0E6; }
.v735-app-buttons { display: flex; gap: 0.6rem; justify-content: center; flex-wrap: wrap; }
.v735-app-buttons .v735-btn { background: #fff; color: #2E4057; }

/* ==================== FAQ ==================== */
.v735-faq-item {
  background: var(--v735-card); border-radius: 0.8rem; margin-bottom: 0.6rem;
  overflow: hidden; border: 0.1rem solid var(--v735-border);
}
.v735-faq-q { padding: 1rem 1.2rem; font-size: 1.4rem; color: #fff; font-weight: 600; }
.v735-faq-a { padding: 0 1.2rem 1rem; font-size: 1.3rem; color: var(--v735-muted); }

/* ==================== FOOTER ==================== */
.v735-footer {
  background: #1a2632; padding: 2rem 0 7rem; margin-top: 2rem;
  border-top: 0.2rem solid var(--v735-secondary);
}
.v735-footer-inner { max-width: 430px; margin: 0 auto; padding: 0 1.2rem; }
.v735-footer-brand { font-size: 1.4rem; color: var(--v735-muted); margin-bottom: 1rem; line-height: 1.5; }
.v735-footer-links { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1rem; }
.v735-footer-links a {
  font-size: 1.2rem; color: var(--v735-muted); padding: 0.4rem 0.8rem;
  background: rgba(250,240,230,0.06); border-radius: 0.6rem;
}
.v735-footer-links a:hover { background: var(--v735-secondary); color: #2E4057; text-decoration: none; }
.v735-footer-promo { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1rem; }
.v735-footer-promo .v735-btn { font-size: 1.2rem; padding: 0.6rem 1rem; }
.v735-footer-copy { font-size: 1.2rem; color: var(--v735-muted); text-align: center; padding-top: 1rem; border-top: 0.1rem solid var(--v735-border); }

/* ==================== BOTTOM NAV ==================== */
.v735-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000; height: 6.2rem;
  background: linear-gradient(180deg, #2E4057, #1a2632);
  border-top: 0.2rem solid var(--v735-secondary);
  display: flex; justify-content: space-around; align-items: center;
  box-shadow: 0 -0.4rem 1rem rgba(0,0,0,0.3);
}
.v735-bottom-nav-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.2rem; min-width: 6rem; min-height: 6rem; background: none; border: none;
  color: var(--v735-muted); font-size: 1.1rem; cursor: pointer; flex: 1;
  transition: color 0.15s, transform 0.15s; text-decoration: none;
}
.v735-bottom-nav-btn i { font-size: 2.2rem; }
.v735-bottom-nav-btn:hover { color: var(--v735-gold); transform: translateY(-0.1rem); text-decoration: none; }
.v735-bottom-nav-btn.v735-nav-current { color: var(--v735-gold); }
.v735-bottom-nav-btn.v735-nav-current i { transform: scale(1.1); }
.v735-bnav-badge {
  position: absolute; top: 0.4rem; right: 1.6rem; background: #BC8F8F; color: #fff;
  font-size: 0.9rem; font-weight: 700; border-radius: 50%; min-width: 1.6rem; height: 1.6rem;
  display: flex; align-items: center; justify-content: center; padding: 0 0.3rem;
}

/* ==================== DESKTOP ==================== */
@media (min-width: 769px) {
  .v735-bottom-nav { display: none; }
  .v735-container { max-width: 760px; }
  .v735-grid { grid-template-columns: repeat(5, 1fr); }
  .v735-feature-grid { grid-template-columns: 1fr 1fr; }
  .v735-payment-grid { grid-template-columns: repeat(6, 1fr); }
}

@media (max-width: 768px) {
  main.v735-main { padding-bottom: 8rem; }
}
