/*!
 * 58wi.click - design-8750.css
 * Mobile-first styling. All custom classes use the "v00c-" prefix.
 * Palette: #26A69A teal | #495057 slate | #008000 green | #2E4057 deep slate
 */

:root {
  --v00c-primary: #26A69A;
  --v00c-secondary: #495057;
  --v00c-accent: #008000;
  --v00c-deep: #2E4057;
  --v00c-bg: #0f1c2b;
  --v00c-bg-alt: #15324a;
  --v00c-text: #f3f7f6;
  --v00c-muted: #a9bbc6;
  --v00c-gold: #ffd073;
  --v00c-danger: #ff5a5f;
  --v00c-radius: 12px;
  --v00c-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  font-size: 62.5%;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  background: var(--v00c-bg);
  color: var(--v00c-text);
  line-height: 1.5rem;
  font-size: 1.6rem;
  max-width: 430px;
  margin: 0 auto;
  overflow-x: hidden;
}

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

a {
  color: var(--v00c-primary);
  text-decoration: none;
}

/* ===== Header ===== */
.v00c-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 14px;
  background: linear-gradient(135deg, var(--v00c-deep), var(--v00c-bg-alt));
  border-bottom: 2px solid var(--v00c-primary);
  max-width: 430px;
}

.v00c-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--v00c-text);
  font-weight: 800;
  font-size: 1.8rem;
}

.v00c-brand img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}

.v00c-brand span {
  color: var(--v00c-primary);
}

.v00c-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.v00c-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.3rem;
  padding: 8px 14px;
  border-radius: 999px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.2s ease;
  min-height: 36px;
}

.v00c-btn:active {
  transform: scale(0.96);
}

.v00c-btn-register {
  background: linear-gradient(135deg, var(--v00c-accent), #06a84e);
  color: #fff;
  box-shadow: var(--v00c-shadow);
}

.v00c-btn-login {
  background: linear-gradient(135deg, var(--v00c-primary), #1b8378);
  color: #fff;
  box-shadow: var(--v00c-shadow);
}

.v00c-icon-btn {
  background: rgba(255, 255, 255, 0.08);
  color: var(--v00c-text);
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 1.8rem;
  cursor: pointer;
  border: none;
}

/* ===== Expandable nav menu ===== */
.v00c-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 78%;
  max-width: 320px;
  height: 100%;
  background: var(--v00c-deep);
  padding: 70px 18px 24px;
  z-index: 9999;
  transition: right 0.28s ease;
  overflow-y: auto;
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.4);
}

.v00c-mobile-menu.v00c-menu-open {
  right: 0;
}

.v00c-mobile-menu h3 {
  font-size: 1.4rem;
  color: var(--v00c-muted);
  text-transform: uppercase;
  margin: 14px 0 6px;
  letter-spacing: 0.5px;
}

.v00c-mobile-menu a {
  display: block;
  padding: 10px 12px;
  margin: 4px 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--v00c-text);
  font-size: 1.4rem;
  transition: background 0.15s ease;
}

.v00c-mobile-menu a:hover,
.v00c-mobile-menu a:focus {
  background: var(--v00c-primary);
  color: #fff;
}

.v00c-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  display: none;
}

.v00c-menu-overlay.v00c-menu-open {
  display: block;
}

/* ===== Layout ===== */
main {
  padding: 0 0 90px;
}

.v00c-container,
.v00c-wrapper {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 14px;
}

.v00c-section {
  padding: 22px 0 8px;
}

.v00c-section-title {
  font-size: 2rem;
  color: var(--v00c-text);
  margin-bottom: 10px;
  padding-left: 10px;
  border-left: 4px solid var(--v00c-primary);
}

.v00c-lead {
  color: var(--v00c-muted);
  font-size: 1.45rem;
  margin-bottom: 12px;
}

/* ===== Carousel ===== */
.v00c-carousel {
  position: relative;
  border-radius: var(--v00c-radius);
  overflow: hidden;
  margin: 12px 0;
  box-shadow: var(--v00c-shadow);
}

.v00c-slide {
  display: none;
  cursor: pointer;
}

.v00c-slide.v00c-slide-active {
  display: block;
}

.v00c-slide img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.v00c-dots {
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

.v00c-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

.v00c-dot.v00c-dot-active {
  background: var(--v00c-gold);
}

/* ===== Hero / CTA ===== */
.v00c-hero {
  background: radial-gradient(circle at 30% 20%, rgba(38, 166, 154, 0.3), transparent 60%),
              linear-gradient(135deg, var(--v00c-deep), var(--v00c-bg));
  padding: 22px 16px;
  text-align: center;
  border-radius: 0 0 22px 22px;
}

.v00c-hero h1 {
  font-size: 2.6rem;
  line-height: 1.25;
  color: var(--v00c-gold);
  margin-bottom: 8px;
}

.v00c-hero p {
  color: var(--v00c-muted);
  font-size: 1.45rem;
  margin-bottom: 14px;
}

.v00c-cta-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.v00c-cta-primary {
  background: linear-gradient(135deg, var(--v00c-gold), #ff9f43);
  color: #2E4057;
  font-weight: 800;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 1.5rem;
  border: none;
  cursor: pointer;
  box-shadow: var(--v00c-shadow);
}

/* ===== Game grid ===== */
.v00c-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.v00c-card {
  background: var(--v00c-bg-alt);
  border-radius: var(--v00c-radius);
  overflow: hidden;
  text-align: center;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.v00c-card:hover,
.v00c-card:active {
  transform: translateY(-3px);
  box-shadow: var(--v00c-shadow);
  border-color: var(--v00c-primary);
}

.v00c-card img {
  width: 100%;
  height: 86px;
  object-fit: cover;
}

.v00c-card-name {
  font-size: 1.15rem;
  color: var(--v00c-text);
  padding: 6px 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ===== Feature / info blocks ===== */
.v00c-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.v00c-tile {
  background: var(--v00c-bg-alt);
  border-radius: var(--v00c-radius);
  padding: 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.v00c-tile .v00c-tile-ico {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--v00c-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}

.v00c-tile h3 {
  font-size: 1.5rem;
  margin-bottom: 4px;
  color: var(--v00c-text);
}

.v00c-tile p {
  font-size: 1.3rem;
  color: var(--v00c-muted);
}

/* ===== RTP table ===== */
.v00c-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--v00c-bg-alt);
  border-radius: var(--v00c-radius);
  overflow: hidden;
}

.v00c-table th,
.v00c-table td {
  padding: 8px 10px;
  font-size: 1.3rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.v00c-table th {
  background: var(--v00c-deep);
  color: var(--v00c-gold);
}

.v00c-table td.v00c-num {
  color: var(--v00c-primary);
  font-weight: 700;
}

/* ===== Testimonials ===== */
.v00c-quote {
  background: var(--v00c-bg-alt);
  border-radius: var(--v00c-radius);
  padding: 14px;
  margin-bottom: 10px;
  border-left: 3px solid var(--v00c-gold);
}

.v00c-quote .v00c-stars {
  color: var(--v00c-gold);
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.v00c-quote p {
  font-size: 1.35rem;
  color: var(--v00c-text);
}

.v00c-quote cite {
  display: block;
  margin-top: 6px;
  color: var(--v00c-muted);
  font-style: normal;
  font-size: 1.2rem;
}

/* ===== Payment row ===== */
.v00c-pay {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.v00c-pay span {
  background: var(--v00c-bg-alt);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 1.3rem;
  color: var(--v00c-text);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* ===== Winners ticker ===== */
.v00c-winner {
  background: linear-gradient(135deg, rgba(0, 128, 0, 0.25), rgba(38, 166, 154, 0.25));
  border-radius: var(--v00c-radius);
  padding: 10px 12px;
  margin-bottom: 8px;
  font-size: 1.3rem;
  display: flex;
  justify-content: space-between;
}

.v00c-winner b {
  color: var(--v00c-gold);
}

/* ===== Inline SEO links ===== */
.v00c-content p {
  margin-bottom: 10px;
  color: var(--v00c-muted);
  font-size: 1.4rem;
}

.v00c-content a {
  color: var(--v00c-primary);
  text-decoration: underline;
  font-weight: 600;
}

.v00c-content strong {
  color: var(--v00c-gold);
}

/* ===== Reveal animation ===== */
.v00c-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.v00c-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Footer ===== */
.v00c-footer {
  background: var(--v00c-deep);
  padding: 22px 16px 14px;
  margin-top: 18px;
  border-top: 2px solid var(--v00c-primary);
}

.v00c-footer p {
  color: var(--v00c-muted);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.v00c-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0;
}

.v00c-footer-links a {
  background: rgba(255, 255, 255, 0.06);
  color: var(--v00c-text);
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 1.2rem;
}

.v00c-footer-copyright {
  color: var(--v00c-muted);
  font-size: 1.15rem;
  text-align: center;
  margin-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 10px;
}

/* ===== Mobile bottom nav (fixed) ===== */
.v00c-bottombar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  height: 62px;
  background: linear-gradient(135deg, var(--v00c-deep), var(--v00c-bg-alt));
  border-top: 2px solid var(--v00c-primary);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.35);
}

.v00c-bottombar a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--v00c-muted);
  font-size: 1.1rem;
  min-width: 60px;
  min-height: 60px;
  padding: 6px 0;
  text-decoration: none;
  transition: color 0.18s ease, transform 0.18s ease;
  position: relative;
}

.v00c-bottombar a:active {
  transform: scale(0.92);
}

.v00c-bottombar a .material-icons,
.v00c-bottombar a ion-icon,
.v00c-bottombar a i {
  font-size: 24px;
}

.v00c-bottombar a span {
  margin-top: 2px;
}

.v00c-bottombar a.v00c-bottom-active,
.v00c-bottombar a:hover {
  color: var(--v00c-gold);
}

.v00c-bottombar a.v00c-bottom-active::after {
  content: "";
  position: absolute;
  bottom: 2px;
  width: 22px;
  height: 3px;
  background: var(--v00c-gold);
  border-radius: 3px;
}

/* ===== Desktop: hide bottom nav ===== */
@media (min-width: 769px) {
  .v00c-bottombar {
    display: none;
  }

  main {
    padding-bottom: 30px;
  }
}

/* ===== Desktop wider content ===== */
@media (min-width: 769px) {
  body,
  .v00c-header,
  .v00c-container,
  .v00c-wrapper {
    max-width: 430px;
  }
}
