/* ariom - w3096 prefixed stylesheet for ariom.click */
/* Color palette: #DC143C | #0C0C0C | #4682B4 | #191970 | #ADD8E6 */

:root {
  --w3096-primary: #DC143C;
  --w3096-bg: #0C0C0C;
  --w3096-blue: #4682B4;
  --w3096-midnight: #191970;
  --w3096-light: #ADD8E6;
  --w3096-text: #f5f7fb;
  --w3096-muted: #9aa3b2;
  --w3096-card: #15151f;
  --w3096-border: #232334;
}

* { box-sizing: border-box; }

html { font-size: 62.5%; }

body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: radial-gradient(circle at 20% 0%, #1a1f3a 0%, var(--w3096-bg) 60%);
  color: var(--w3096-text);
  line-height: 1.5rem;
  -webkit-font-smoothing: antialiased;
}

.w3096-wrapper {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
  background: var(--w3096-bg);
  position: relative;
  overflow-x: hidden;
}

/* ===== Header ===== */
.w3096-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  max-width: 430px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: linear-gradient(135deg, var(--w3096-midnight), var(--w3096-bg));
  border-bottom: 2px solid var(--w3096-primary);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.w3096-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--w3096-text);
}

.w3096-brand img { width: 28px; height: 28px; border-radius: 6px; }
.w3096-brand-name {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  background: linear-gradient(90deg, var(--w3096-light), #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.w3096-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 36px;
  padding: 0 14px;
  border: none;
  border-radius: 20px;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.w3096-btn:active { transform: scale(0.95); }

.w3096-btn-login {
  background: linear-gradient(135deg, var(--w3096-blue), var(--w3096-midnight));
  box-shadow: 0 2px 8px rgba(70, 130, 180, 0.4);
}
.w3096-btn-register {
  background: linear-gradient(135deg, var(--w3096-primary), #ff3b66);
  box-shadow: 0 2px 10px rgba(220, 20, 60, 0.5);
}

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

/* ===== Mobile Menu ===== */
.w3096-mobile-menu {
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  z-index: 9999;
  max-width: 430px;
  margin: 0 auto;
  background: var(--w3096-card);
  border-bottom: 1px solid var(--w3096-border);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.w3096-mobile-menu.w3096-menu-open { max-height: 460px; }
.w3096-mobile-menu ul { list-style: none; margin: 0; padding: 8px 12px; }
.w3096-mobile-menu li { border-bottom: 1px solid var(--w3096-border); }
.w3096-mobile-menu li:last-child { border-bottom: none; }
.w3096-mobile-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 6px;
  color: var(--w3096-text);
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 600;
}
.w3096-mobile-menu a .material-icons,
.w3096-mobile-menu a i { color: var(--w3096-light); font-size: 20px; }

/* ===== Main ===== */
main.w3096-main {
  padding-top: 60px;
  padding-bottom: 80px;
}

.w3096-section { padding: 18px 14px; }

.w3096-section-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0 0 12px;
  padding-left: 10px;
  border-left: 4px solid var(--w3096-primary);
  color: var(--w3096-text);
}

/* ===== Hero / Carousel ===== */
.w3096-carousel {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  margin: 0 14px 8px;
  height: 180px;
}
.w3096-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  cursor: pointer;
}
.w3096-slide.w3096-slide-active { opacity: 1; }
.w3096-slide img { width: 100%; height: 100%; object-fit: cover; border-radius: 14px; }
.w3096-slide-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
}
.w3096-slide-overlay h2 { margin: 0 0 4px; font-size: 1.7rem; color: #fff; }
.w3096-slide-overlay p { margin: 0; font-size: 1.2rem; color: var(--w3096-light); }

.w3096-dots {
  position: absolute;
  bottom: 8px;
  right: 12px;
  display: flex;
  gap: 6px;
}
.w3096-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
}

/* ===== Hero CTA ===== */
.w3096-hero-cta {
  margin: 6px 14px 18px;
  padding: 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--w3096-midnight), #2a2f5e);
  border: 1px solid var(--w3096-blue);
  text-align: center;
}
.w3096-hero-cta h1 {
  font-size: 2.1rem;
  margin: 0 0 8px;
  color: #fff;
  line-height: 1.25;
}
.w3096-hero-cta p { margin: 0 0 12px; color: var(--w3096-light); font-size: 1.3rem; }
.w3096-btn-cta {
  background: linear-gradient(135deg, var(--w3096-primary), #ff3b66);
  padding: 12px 28px;
  font-size: 1.5rem;
}

/* ===== Game grid ===== */
.w3096-cat-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 16px 14px 10px;
}
.w3096-cat-head .material-icons,
.w3096-cat-head i { color: var(--w3096-light); font-size: 22px; }
.w3096-cat-head h2 { margin: 0; font-size: 1.7rem; color: #fff; }

.w3096-game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 0 14px;
}
.w3096-game-card {
  background: var(--w3096-card);
  border: 1px solid var(--w3096-border);
  border-radius: 10px;
  padding: 6px;
  text-align: center;
  text-decoration: none;
  color: var(--w3096-text);
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.w3096-game-card:hover, .w3096-game-card:active {
  transform: translateY(-2px);
  border-color: var(--w3096-primary);
}
.w3096-game-card img {
  width: 100%;
  height: 78px;
  object-fit: cover;
  border-radius: 8px;
}
.w3096-game-card .w3096-game-name {
  display: block;
  font-size: 1.1rem;
  margin-top: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ===== Info cards / content blocks ===== */
.w3096-card {
  background: var(--w3096-card);
  border: 1px solid var(--w3096-border);
  border-radius: 12px;
  padding: 14px;
  margin: 0 14px 12px;
}
.w3096-card h2 { margin: 0 0 8px; font-size: 1.7rem; color: #fff; }
.w3096-card h3 { margin: 12px 0 6px; font-size: 1.4rem; color: var(--w3096-light); }
.w3096-card p { margin: 0 0 8px; font-size: 1.3rem; color: var(--w3096-text); }
.w3096-card ul { margin: 0; padding-left: 18px; }
.w3096-card li { font-size: 1.3rem; margin-bottom: 4px; }

.w3096-inline-link {
  color: var(--w3096-light);
  font-weight: 700;
  text-decoration: underline;
}

.w3096-promo-link {
  display: inline-block;
  padding: 8px 16px;
  margin: 4px 0;
  background: linear-gradient(135deg, var(--w3096-primary), #ff3b66);
  color: #fff;
  border-radius: 18px;
  font-weight: 700;
  font-size: 1.3rem;
  text-decoration: none;
}

/* ===== Feature grid ===== */
.w3096-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 0 14px;
  margin-bottom: 14px;
}
.w3096-feature-item {
  background: var(--w3096-card);
  border: 1px solid var(--w3096-border);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
}
.w3096-feature-item .material-icons,
.w3096-feature-item i {
  font-size: 26px;
  color: var(--w3096-primary);
  margin-bottom: 6px;
}
.w3096-feature-item h3 { margin: 0 0 4px; font-size: 1.3rem; color: #fff; }
.w3096-feature-item p { margin: 0; font-size: 1.15rem; color: var(--w3096-muted); }

/* ===== RTP table ===== */
.w3096-rtp-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed var(--w3096-border);
  font-size: 1.3rem;
}
.w3096-rtp-row span:last-child { color: var(--w3096-light); font-weight: 700; }

/* ===== Testimonial ===== */
.w3096-testimonial {
  background: var(--w3096-card);
  border-left: 3px solid var(--w3096-primary);
  padding: 10px 12px;
  border-radius: 8px;
  margin-bottom: 8px;
}
.w3096-testimonial .w3096-name { font-size: 1.3rem; font-weight: 700; color: var(--w3096-light); }
.w3096-testimonial p { margin: 4px 0 0; font-size: 1.2rem; }

/* ===== Payment / winners ===== */
.w3096-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 14px;
  margin-bottom: 12px;
}
.w3096-badge {
  background: var(--w3096-card);
  border: 1px solid var(--w3096-border);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 1.2rem;
  color: var(--w3096-text);
  display: flex;
  align-items: center;
  gap: 6px;
}

.w3096-winner {
  display: flex;
  justify-content: space-between;
  padding: 8px 12px;
  background: var(--w3096-card);
  border-radius: 8px;
  margin-bottom: 6px;
  font-size: 1.2rem;
}
.w3096-winner span:last-child { color: var(--w3096-primary); font-weight: 700; }

/* ===== Footer ===== */
.w3096-footer {
  background: linear-gradient(135deg, var(--w3096-midnight), var(--w3096-bg));
  padding: 18px 14px 24px;
  margin-top: 18px;
  border-top: 2px solid var(--w3096-primary);
}
.w3096-footer p { font-size: 1.2rem; color: var(--w3096-muted); margin: 0 0 10px; }
.w3096-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.w3096-footer-links a {
  padding: 5px 10px;
  background: var(--w3096-card);
  border: 1px solid var(--w3096-border);
  border-radius: 14px;
  color: var(--w3096-light);
  text-decoration: none;
  font-size: 1.15rem;
}
.w3096-footer-copy { font-size: 1.1rem; color: var(--w3096-muted); margin-top: 8px; }

/* ===== Bottom nav ===== */
.w3096-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  max-width: 430px;
  margin: 0 auto;
  height: 62px;
  background: linear-gradient(135deg, var(--w3096-midnight), #0a0a14);
  border-top: 2px solid var(--w3096-primary);
  display: flex;
  justify-content: space-around;
  align-items: center;
  box-shadow: 0 -3px 14px rgba(0, 0, 0, 0.6);
}
.w3096-bottom-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 60px;
  background: transparent;
  border: none;
  color: var(--w3096-muted);
  cursor: pointer;
  text-decoration: none;
  gap: 2px;
  transition: transform 0.15s ease, color 0.15s ease;
}
.w3096-bottom-nav-btn:active { transform: scale(0.92); }
.w3096-bottom-nav-btn .material-icons,
.w3096-bottom-nav-btn i { font-size: 24px; }
.w3096-bottom-nav-btn span.w3096-nav-label { font-size: 1rem; }
.w3096-bottom-nav-btn.w3096-nav-active { color: var(--w3096-primary); }
.w3096-bottom-nav-btn.w3096-nav-active .material-icons,
.w3096-bottom-nav-btn.w3096-nav-active i { color: var(--w3096-primary); }

/* Desktop: hide bottom nav, expand wrapper */
@media (min-width: 769px) {
  .w3096-bottom-nav { display: none; }
  main.w3096-main { padding-bottom: 30px; }
}

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