/* ============================================================
   Arina Plus — Theme stylesheet (sb7c- prefix)
   Mobile-first HTML5 casino/gaming layout
   Palette: #3CB371 | #0A0A0A | #FAFAFA | #00B8D4 | #9AFF9A | #40E0D0
   ============================================================ */

:root {
  --sb7c-primary: #3CB371;
  --sb7c-bg: #0A0A0A;
  --sb7c-text: #FAFAFA;
  --sb7c-cyan: #00B8D4;
  --sb7c-mint: #9AFF9A;
  --sb7c-turquoise: #40E0D0;
  --sb7c-card: #141414;
  --sb7c-card-2: #1c1c1c;
  --sb7c-border: rgba(60, 179, 113, 0.25);
  --sb7c-muted: #b9b9b9;
  --sb7c-gold: #ffd76b;
  --sb7c-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
  --sb7c-radius: 14px;
}

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

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

body {
  font-family: "Segoe UI", "Helvetica Neue", Roboto, Arial, sans-serif;
  background: radial-gradient(circle at top, #10241a 0%, var(--sb7c-bg) 55%);
  color: var(--sb7c-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  overflow-x: hidden;
  padding-bottom: 80px;
  min-height: 100vh;
}

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

a { color: var(--sb7c-mint); text-decoration: none; }
a:hover { color: var(--sb7c-turquoise); }

/* ---------- Container / Wrapper ---------- */
.sb7c-container {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 14px;
}
.sb7c-wrapper { padding: 16px 0; }
.sb7c-section { padding: 22px 0; }

/* ---------- Header ---------- */
.sb7c-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--sb7c-border);
}
.sb7c-header-inner {
  max-width: 430px;
  margin: 0 auto;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.sb7c-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--sb7c-text);
  font-weight: 700;
  font-size: 1.5rem;
}
.sb7c-brand img { width: 28px; height: 28px; border-radius: 6px; }
.sb7c-brand small { color: var(--sb7c-mint); font-size: 1rem; font-weight: 600; }

.sb7c-header-actions { display: flex; align-items: center; gap: 6px; }

.sb7c-menu-btn {
  background: transparent;
  border: 1px solid var(--sb7c-border);
  color: var(--sb7c-text);
  width: 36px; height: 36px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* ---------- Buttons ---------- */
.sb7c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 14px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.25rem;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .2s;
  min-height: 36px;
}
.sb7c-btn:active { transform: scale(0.95); }
.sb7c-btn-primary {
  background: linear-gradient(135deg, var(--sb7c-primary), var(--sb7c-turquoise));
  color: #06140e;
  box-shadow: 0 4px 12px rgba(60, 179, 113, 0.4);
}
.sb7c-btn-outline {
  background: transparent;
  border: 1px solid var(--sb7c-cyan);
  color: var(--sb7c-cyan);
}
.sb7c-btn-gold {
  background: linear-gradient(135deg, var(--sb7c-gold), #ff9d3c);
  color: #2a1500;
}
.sb7c-btn-block { width: 100%; }

/* ---------- Mobile dropdown menu ---------- */
.sb7c-mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: 82%;
  max-width: 340px;
  height: 100vh;
  background: #0c0c0c;
  z-index: 9999;
  padding: 70px 18px 30px;
  overflow-y: auto;
  transition: right .28s ease;
  border-left: 1px solid var(--sb7c-border);
}
.sb7c-mobile-menu.sb7c-open { right: 0; }
.sb7c-overlay {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9998;
  display: none;
}
.sb7c-overlay.sb7c-open { display: block; }
.sb7c-close-btn {
  position: absolute; top: 14px; right: 14px;
  background: transparent; border: none; color: #fff;
  font-size: 1.8rem; cursor: pointer;
}
.sb7c-mobile-menu h3 {
  font-size: 1.3rem;
  color: var(--sb7c-mint);
  margin: 14px 0 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.sb7c-mobile-menu a {
  display: block;
  padding: 11px 12px;
  margin-bottom: 6px;
  border-radius: 10px;
  color: var(--sb7c-text);
  background: #161616;
  font-size: 1.3rem;
  border: 1px solid transparent;
}
.sb7c-mobile-menu a:hover { background: #1f2a23; border-color: var(--sb7c-border); color: var(--sb7c-mint); }

/* ---------- Hero / Carousel ---------- */
.sb7c-hero { padding-top: 70px; }
.sb7c-carousel {
  position: relative;
  border-radius: var(--sb7c-radius);
  overflow: hidden;
  box-shadow: var(--sb7c-shadow);
}
.sb7c-slides { display: flex; scroll-snap-type: x mandatory; overflow-x: auto; }
.sb7c-slides::-webkit-scrollbar { display: none; }
.sb7c-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  position: relative;
}
.sb7c-slide img { width: 100%; height: 200px; object-fit: cover; }
.sb7c-slide-cap {
  position: absolute;
  left: 14px; bottom: 14px;
  background: rgba(0, 0, 0, 0.55);
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 1.25rem;
  font-weight: 700;
}
.sb7c-dots {
  display: flex; justify-content: center; gap: 6px;
  padding: 8px 0;
}
.sb7c-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer; border: none;
}
.sb7c-dot.sb7c-active { background: var(--sb7c-primary); width: 22px; border-radius: 4px; }

/* ---------- Headings ---------- */
.sb7c-h1 {
  font-size: 1.9rem;
  font-weight: 800;
  margin: 14px 0 6px;
  line-height: 1.35;
  background: linear-gradient(120deg, var(--sb7c-mint), var(--sb7c-turquoise));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sb7c-section-title {
  font-size: 1.55rem;
  font-weight: 700;
  margin: 18px 0 10px;
  display: flex; align-items: center; gap: 8px;
}
.sb7c-section-title i { color: var(--sb7c-primary); }
.sb7c-lead { color: var(--sb7c-muted); font-size: 1.25rem; margin-bottom: 10px; }

/* ---------- Game grid ---------- */
.sb7c-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.sb7c-game-card {
  background: var(--sb7c-card);
  border: 1px solid var(--sb7c-border);
  border-radius: 12px;
  padding: 6px;
  text-align: center;
  transition: transform .15s, box-shadow .15s;
  cursor: pointer;
  overflow: hidden;
}
.sb7c-game-card:hover { transform: translateY(-3px); box-shadow: var(--sb7c-shadow); border-color: var(--sb7c-primary); }
.sb7c-game-card img {
  width: 100%; height: 78px; object-fit: cover;
  border-radius: 9px;
  margin-bottom: 5px;
}
.sb7c-game-card span {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--sb7c-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sb7c-cat-label {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(0, 184, 212, 0.15);
  color: var(--sb7c-cyan);
  border-radius: 20px;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
}

/* ---------- Feature / Info cards ---------- */
.sb7c-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.sb7c-card {
  background: var(--sb7c-card);
  border: 1px solid var(--sb7c-border);
  border-radius: 12px;
  padding: 14px;
}
.sb7c-card i { font-size: 2.2rem; color: var(--sb7c-mint); margin-bottom: 6px; }
.sb7c-card h3 { font-size: 1.3rem; margin-bottom: 4px; color: #fff; }
.sb7c-card p { font-size: 1.15rem; color: var(--sb7c-muted); line-height: 1.4; }

/* ---------- RTP table ---------- */
.sb7c-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--sb7c-card);
  border-radius: 10px;
  overflow: hidden;
  font-size: 1.15rem;
}
.sb7c-table th, .sb7c-table td {
  padding: 8px 10px;
  border-bottom: 1px solid #222;
  text-align: left;
}
.sb7c-table th { background: #173a25; color: var(--sb7c-mint); }
.sb7c-table tr:last-child td { border-bottom: none; }

/* ---------- Testimonials ---------- */
.sb7c-quote {
  background: var(--sb7c-card);
  border-left: 3px solid var(--sb7c-primary);
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 8px;
}
.sb7c-quote p { font-size: 1.18rem; color: #ddd; font-style: italic; }
.sb7c-quote .sb7c-author { display: block; margin-top: 6px; color: var(--sb7c-mint); font-size: 1.05rem; font-weight: 700; }

/* ---------- Payment chips ---------- */
.sb7c-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.sb7c-chip {
  background: var(--sb7c-card-2);
  border: 1px solid var(--sb7c-border);
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 1.1rem;
  display: inline-flex; align-items: center; gap: 6px;
  color: #ddd;
}

/* ---------- Winners ticker ---------- */
.sb7c-winner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 10px;
  background: var(--sb7c-card);
  border-radius: 8px;
  margin-bottom: 6px;
  font-size: 1.15rem;
}
.sb7c-winner b { color: var(--sb7c-gold); }

/* ---------- FAQ ---------- */
.sb7c-faq-item {
  background: var(--sb7c-card);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 8px;
  border: 1px solid var(--sb7c-border);
}
.sb7c-faq-item summary {
  font-weight: 700; font-size: 1.2rem; cursor: pointer; color: #fff;
}
.sb7c-faq-item p { margin-top: 6px; color: var(--sb7c-muted); font-size: 1.12rem; }

/* ---------- CTA band ---------- */
.sb7c-cta {
  background: linear-gradient(135deg, #0f3a26, #063b4a);
  border: 1px solid var(--sb7c-border);
  border-radius: var(--sb7c-radius);
  padding: 18px;
  text-align: center;
  margin: 14px 0;
}
.sb7c-cta h2 { color: #fff; margin-bottom: 6px; font-size: 1.5rem; }
.sb7c-cta p { color: var(--sb7c-muted); margin-bottom: 12px; font-size: 1.18rem; }

/* ---------- Footer ---------- */
.sb7c-footer {
  background: #060606;
  border-top: 1px solid var(--sb7c-border);
  padding: 22px 14px;
  margin-top: 14px;
}
.sb7c-footer .sb7c-container { padding: 0; }
.sb7c-footer p { color: var(--sb7c-muted); font-size: 1.15rem; margin-bottom: 10px; line-height: 1.5; }
.sb7c-footer-links {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 10px 0;
}
.sb7c-footer-links a {
  font-size: 1.1rem;
  padding: 6px 10px;
  background: #141414;
  border-radius: 16px;
  border: 1px solid #222;
  color: #ddd;
}
.sb7c-footer-links a:hover { color: var(--sb7c-mint); border-color: var(--sb7c-primary); }
.sb7c-copy { margin-top: 10px; font-size: 1.05rem; color: #777; text-align: center; }

/* ---------- Mobile bottom nav ---------- */
.sb7c-bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 62px;
  background: linear-gradient(180deg, #0c0c0c, #050505);
  border-top: 1px solid var(--sb7c-border);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 -4px 18px rgba(0,0,0,0.5);
}
.sb7c-nav-item {
  flex: 1;
  min-width: 60px;
  min-height: 60px;
  background: transparent;
  border: none;
  color: #cfcfcf;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  cursor: pointer;
  position: relative;
  transition: color .2s, transform .15s;
}
.sb7c-nav-item .material-icons,
.sb7c-nav-item i { font-size: 22px; }
.sb7c-nav-item span { font-size: 1rem; font-weight: 600; }
.sb7c-nav-item:active { transform: scale(0.9); }
.sb7c-nav-item.sb7c-active { color: var(--sb7c-primary); }
.sb7c-nav-item.sb7c-active::before {
  content: "";
  position: absolute; top: 0;
  width: 30px; height: 3px;
  background: var(--sb7c-primary);
  border-radius: 0 0 4px 4px;
}
.sb7c-nav-badge {
  position: absolute;
  top: 6px; right: 14px;
  background: #ff4d4d;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 50%;
  padding: 1px 5px;
  min-width: 14px;
  text-align: center;
}

/* ---------- Utility ---------- */
.sb7c-text-mint { color: var(--sb7c-mint); font-weight: 700; }
.sb7c-text-cyan { color: var(--sb7c-cyan); font-weight: 700; }
.sb7c-mt-10 { margin-top: 10px; }
.sb7c-mb-10 { margin-bottom: 10px; }
.sb7c-hidden { display: none; }

/* ---------- Desktop ---------- */
@media (min-width: 769px) {
  .sb7c-bottom-nav { display: none; }
  body { padding-bottom: 0; }
  .sb7c-container { max-width: 760px; }
  .sb7c-grid { grid-template-columns: repeat(5, 1fr); }
  .sb7c-cards { grid-template-columns: repeat(3, 1fr); }
  .sb7c-desktop-nav { display: flex !important; gap: 14px; align-items: center; }
  .sb7c-desktop-nav a { color: #ddd; font-size: 1.2rem; }
  .sb7c-desktop-nav a:hover { color: var(--sb7c-mint); }
}
.sb7c-desktop-nav { display: none; }
