/* 23Win Com - style-ae60.css
 * All classes use prefix v0dc- to avoid collision.
 * Mobile-first responsive design. Root font 62.5% (1rem = 10px).
 * Color palette: #0097A7 | #008B8B | #2D2D2D
 */

:root {
  --v0dc-primary: #0097A7;
  --v0dc-secondary: #008B8B;
  --v0dc-bg: #2D2D2D;
  --v0dc-bg-light: #3a3a3a;
  --v0dc-text: #f5f5f5;
  --v0dc-text-muted: #b0b0b0;
  --v0dc-accent: #FFC107;
  --v0dc-accent-red: #E53935;
  --v0dc-border: rgba(255, 255, 255, 0.08);
  --v0dc-card-bg: #343434;
  --v0dc-radius: 12px;
}

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

html {
  font-size: 62.5%;
}

body {
  font-family: "Be Vietnam Pro", "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--v0dc-bg);
  color: var(--v0dc-text);
  line-height: 1.5;
  font-size: 1.5rem;
  -webkit-font-smoothing: antialiased;
  max-width: 430px;
  margin: 0 auto;
  position: relative;
  min-height: 100vh;
}

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

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

.v0dc-container {
  width: 100%;
  padding: 0 1.2rem;
}

.v0dc-wrapper {
  max-width: 430px;
  margin: 0 auto;
  position: relative;
}

/* ===== Header ===== */
.v0dc-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  background: linear-gradient(135deg, var(--v0dc-primary), var(--v0dc-secondary));
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1rem;
  height: 56px;
}

.v0dc-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
  font-weight: 700;
  font-size: 1.6rem;
}

.v0dc-logo img {
  width: 30px;
  height: 30px;
  border-radius: 6px;
}

.v0dc-logo span {
  white-space: nowrap;
}

.v0dc-header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.v0dc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-size: 1.3rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  min-height: 36px;
  white-space: nowrap;
}

.v0dc-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.v0dc-btn-register {
  background: var(--v0dc-accent);
  color: #2D2D2D;
}

.v0dc-btn-login {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.v0dc-menu-btn {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  padding: 0.4rem;
  min-width: 40px;
  min-height: 40px;
}

/* ===== Mobile Menu ===== */
.v0dc-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.v0dc-mobile-menu.v0dc-open {
  opacity: 1;
  pointer-events: auto;
}

.v0dc-mobile-menu-inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 78%;
  max-width: 320px;
  height: 100%;
  background: var(--v0dc-bg);
  padding: 5rem 1.5rem 2rem;
  transform: translateX(100%);
  transition: transform 0.25s;
  overflow-y: auto;
}

.v0dc-mobile-menu.v0dc-open .v0dc-mobile-menu-inner {
  transform: translateX(0);
}

.v0dc-menu-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
}

.v0dc-menu-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 0.6rem;
  color: var(--v0dc-text);
  font-size: 1.4rem;
  border-bottom: 1px solid var(--v0dc-border);
  transition: color 0.15s;
}

.v0dc-menu-link:hover {
  color: var(--v0dc-accent);
}

.v0dc-menu-link i {
  font-size: 1.8rem;
  color: var(--v0dc-primary);
  width: 24px;
}

/* ===== Main ===== */
main {
  padding-top: 56px;
}

.v0dc-section {
  padding: 2rem 0;
}

.v0dc-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--v0dc-text);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-left: 4px solid var(--v0dc-primary);
  padding-left: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.v0dc-section-title i {
  color: var(--v0dc-primary);
}

.v0dc-text-muted {
  color: var(--v0dc-text-muted);
}

/* ===== Hero / Carousel ===== */
.v0dc-carousel {
  position: relative;
  width: 100%;
  border-radius: var(--v0dc-radius);
  overflow: hidden;
  margin-bottom: 1rem;
}

.v0dc-slide {
  display: none;
  position: relative;
  cursor: pointer;
}

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

.v0dc-slide-cap {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
}

.v0dc-dots {
  text-align: center;
  padding: 0.5rem 0;
}

.v0dc-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  margin: 0 3px;
  cursor: pointer;
  transition: background 0.2s;
}

.v0dc-dot.v0dc-active {
  background: var(--v0dc-primary);
  width: 22px;
  border-radius: 4px;
}

/* ===== H1 / Intro ===== */
.v0dc-h1 {
  font-size: 2rem;
  font-weight: 800;
  margin: 1.5rem 0 1rem;
  line-height: 1.3;
  background: linear-gradient(90deg, var(--v0dc-primary), var(--v0dc-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.v0dc-intro {
  font-size: 1.4rem;
  color: var(--v0dc-text-muted);
  margin-bottom: 1.5rem;
}

/* ===== Game Grid ===== */
.v0dc-game-cat {
  margin-bottom: 1.5rem;
}

.v0dc-cat-label {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--v0dc-accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.v0dc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.v0dc-game-card {
  background: var(--v0dc-card-bg);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  border: 1px solid var(--v0dc-border);
  text-align: center;
}

.v0dc-game-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 151, 167, 0.3);
  border-color: var(--v0dc-primary);
}

.v0dc-game-card img {
  width: 100%;
  height: 72px;
  object-fit: cover;
}

.v0dc-game-card .v0dc-game-name {
  font-size: 1.1rem;
  color: var(--v0dc-text);
  padding: 0.4rem 0.3rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
}

/* ===== Info blocks / cards ===== */
.v0dc-info-card {
  background: var(--v0dc-card-bg);
  border-radius: var(--v0dc-radius);
  padding: 1.4rem;
  margin-bottom: 1rem;
  border: 1px solid var(--v0dc-border);
}

.v0dc-info-card h3 {
  font-size: 1.5rem;
  color: var(--v0dc-primary);
  margin-bottom: 0.6rem;
}

.v0dc-info-card p {
  font-size: 1.3rem;
  color: var(--v0dc-text-muted);
  margin-bottom: 0.6rem;
}

.v0dc-step {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.v0dc-step-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--v0dc-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.3rem;
}

.v0dc-step-content {
  font-size: 1.35rem;
  color: var(--v0dc-text-muted);
}

.v0dc-step-content strong {
  color: var(--v0dc-text);
}

/* ===== FAQ ===== */
.v0dc-faq-item {
  background: var(--v0dc-card-bg);
  border: 1px solid var(--v0dc-border);
  border-radius: 10px;
  margin-bottom: 0.8rem;
  overflow: hidden;
}

.v0dc-faq-q {
  padding: 1rem 1.2rem;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--v0dc-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.v0dc-faq-q .v0dc-faq-icon {
  color: var(--v0dc-primary);
  transition: transform 0.2s;
}

.v0dc-faq-item.v0dc-open .v0dc-faq-q .v0dc-faq-icon {
  transform: rotate(45deg);
}

.v0dc-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s;
  padding: 0 1.2rem;
  font-size: 1.3rem;
  color: var(--v0dc-text-muted);
}

.v0dc-faq-item.v0dc-open .v0dc-faq-a {
  max-height: 400px;
  padding-bottom: 1rem;
}

/* ===== RTP / Stats table ===== */
.v0dc-rpt-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--v0dc-card-bg);
  border-radius: 10px;
  overflow: hidden;
}

.v0dc-rpt-table th,
.v0dc-rpt-table td {
  padding: 0.7rem 0.8rem;
  font-size: 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--v0dc-border);
}

.v0dc-rpt-table th {
  background: var(--v0dc-primary);
  color: #fff;
  font-weight: 600;
}

.v0dc-stat-row {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.v0dc-stat-box {
  flex: 1;
  background: var(--v0dc-card-bg);
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  border: 1px solid var(--v0dc-border);
}

.v0dc-stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--v0dc-accent);
  display: block;
}

.v0dc-stat-label {
  font-size: 1.1rem;
  color: var(--v0dc-text-muted);
  margin-top: 0.3rem;
}

/* ===== Promo CTA ===== */
.v0dc-cta {
  background: linear-gradient(135deg, var(--v0dc-primary), var(--v0dc-secondary));
  border-radius: var(--v0dc-radius);
  padding: 1.4rem;
  text-align: center;
  margin: 1.5rem 0;
}

.v0dc-cta h3 {
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.v0dc-cta p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}

.v0dc-cta .v0dc-btn {
  background: var(--v0dc-accent);
  color: #2D2D2D;
  padding: 0.8rem 1.6rem;
  font-size: 1.4rem;
}

/* ===== Inline promo link ===== */
.v0dc-promo-link {
  color: var(--v0dc-accent);
  font-weight: 700;
  cursor: pointer;
}

.v0dc-promo-link:hover {
  text-decoration: underline;
}

/* ===== Testimonials ===== */
.v0dc-testi {
  background: var(--v0dc-card-bg);
  border-radius: 10px;
  padding: 1.2rem;
  margin-bottom: 0.8rem;
  border-left: 3px solid var(--v0dc-primary);
}

.v0dc-testi-stars {
  color: var(--v0dc-accent);
  margin-bottom: 0.4rem;
  font-size: 1.3rem;
}

.v0dc-testi p {
  font-size: 1.25rem;
  color: var(--v0dc-text-muted);
  margin-bottom: 0.4rem;
}

.v0dc-testi span {
  font-size: 1.15rem;
  color: var(--v0dc-primary);
  font-weight: 600;
}

/* ===== Payment methods ===== */
.v0dc-pay-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
}

.v0dc-pay-item {
  background: var(--v0dc-card-bg);
  border-radius: 8px;
  padding: 0.8rem 0.4rem;
  text-align: center;
  font-size: 1.1rem;
  border: 1px solid var(--v0dc-border);
}

.v0dc-pay-item i {
  font-size: 2rem;
  color: var(--v0dc-primary);
  display: block;
  margin-bottom: 0.3rem;
}

/* ===== Winner showcase ===== */
.v0dc-winner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--v0dc-card-bg);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  margin-bottom: 0.5rem;
  border: 1px solid var(--v0dc-border);
}

.v0dc-winner-name {
  font-size: 1.25rem;
  font-weight: 600;
}

.v0dc-winner-game {
  font-size: 1.1rem;
  color: var(--v0dc-text-muted);
}

.v0dc-winner-prize {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--v0dc-accent);
}

/* ===== Footer ===== */
.v0dc-footer {
  background: #222;
  padding: 2rem 1.2rem 5rem;
  border-top: 2px solid var(--v0dc-primary);
  margin-top: 2rem;
}

.v0dc-footer-brand {
  font-size: 1.4rem;
  color: var(--v0dc-text-muted);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.v0dc-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}

.v0dc-footer-links a {
  font-size: 1.2rem;
  color: var(--v0dc-text-muted);
  padding: 0.3rem 0.7rem;
  background: var(--v0dc-card-bg);
  border-radius: 6px;
  border: 1px solid var(--v0dc-border);
}

.v0dc-footer-links a:hover {
  color: var(--v0dc-accent);
  border-color: var(--v0dc-primary);
}

.v0dc-footer-promo {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}

.v0dc-footer-promo button {
  flex: 1 1 40%;
  background: var(--v0dc-primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.7rem 0.5rem;
  font-size: 1.25rem;
  cursor: pointer;
  font-weight: 600;
}

.v0dc-footer-promo button:hover {
  background: var(--v0dc-secondary);
}

.v0dc-copyright {
  font-size: 1.15rem;
  color: var(--v0dc-text-muted);
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid var(--v0dc-border);
}

/* ===== Mobile bottom nav ===== */
.v0dc-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  height: 62px;
  background: linear-gradient(180deg, var(--v0dc-bg-light), #1f1f1f);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  border-top: 2px solid var(--v0dc-primary);
  box-shadow: 0 -3px 12px rgba(0, 0, 0, 0.5);
}

.v0dc-bottom-nav button,
.v0dc-bottom-nav a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: 60px;
  min-height: 60px;
  background: transparent;
  border: none;
  color: var(--v0dc-text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
  text-decoration: none;
}

.v0dc-bottom-nav button i,
.v0dc-bottom-nav a i {
  font-size: 24px;
}

.v0dc-bottom-nav button:hover,
.v0dc-bottom-nav a:hover,
.v0dc-bottom-nav .v0dc-active {
  color: var(--v0dc-accent);
  transform: scale(1.08);
}

.v0dc-bottom-nav .v0dc-badge {
  position: relative;
}

.v0dc-bottom-nav .v0dc-badge::after {
  content: "Hot";
  position: absolute;
  top: 4px;
  right: 14px;
  background: var(--v0dc-accent-red);
  color: #fff;
  font-size: 0.85rem;
  padding: 1px 4px;
  border-radius: 6px;
  font-weight: 700;
}

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

@media (max-width: 768px) {
  main {
    padding-bottom: 80px;
  }
}

/* Desktop centered preview frame */
@media (min-width: 431px) {
  body {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
  }
}