@charset "UTF-8";
/*!
 * pt gameplay - style-9927.css
 * Class prefix : g272-
 * Color palette: #DC143C / #212F3D / #808080 / #FF1493 / #DEB887 / #9966CC
 * Mobile-first responsive layout (max 430px on small screens).
 * All comments in English.
 */

:root {
  --g272-primary: #DC143C;
  --g272-bg: #212F3D;
  --g272-bg-deep: #18222d;
  --g272-text: #f4f6f8;
  --g272-muted: #808080;
  --g272-pink: #FF1493;
  --g272-gold: #DEB887;
  --g272-purple: #9966CC;
  --g272-card: #243344;
  --g272-card-border: rgba(222, 184, 135, 0.18);
  --g272-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  --g272-radius: 14px;
  --g272-radius-sm: 9px;
  --g272-header-h: 58px;
  --g272-bottom-h: 62px;
  --g272-max-w: 430px;
}

* { box-sizing: border-box; }

html {
  font-size: 62.5%; /* 1rem = 10px baseline for rem-based rhythm */
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", system-ui, -apple-system, Arial, sans-serif;
  background: linear-gradient(160deg, #18222d 0%, #212F3D 55%, #1a2433 100%);
  color: var(--g272-text);
  line-height: 1.5rem;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--g272-gold); text-decoration: none; }
a:hover { color: var(--g272-pink); }

h1, h2, h3, h4 { margin: 0 0 0.6rem; line-height: 1.3; font-weight: 700; }
h1 { font-size: 2.2rem; }
h2 { font-size: 1.9rem; }
h3 { font-size: 1.55rem; }
h4 { font-size: 1.25rem; }
p  { margin: 0 0 1rem; }

/* ============ Layout container ============ */
.g272-wrapper {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 431px) {
  .g272-wrapper { max-width: var(--g272-max-w); box-shadow: var(--g272-shadow); }
}
.g272-container {
  width: 100%;
  padding: 0 1.4rem;
}

/* ============ Header / top navigation ============ */
.g272-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--g272-header-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(24,34,45,0.85), rgba(33,47,61,0.85));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(222, 184, 135, 0.18);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.g272-header-solid {
  background: linear-gradient(90deg, #18222d, #212F3D);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}
.g272-header .g272-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}
.g272-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex: 1;
  min-width: 0;
}
.g272-brand img {
  width: 30px; height: 30px;
  border-radius: 8px;
  box-shadow: 0 0 0 2px rgba(222, 184, 135, 0.35);
}
.g272-brand-text {
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0.4px;
  color: var(--g272-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.g272-brand-text span { color: var(--g272-primary); }

.g272-header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.g272-menu-btn {
  width: 38px; height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: var(--g272-text);
  border: 1px solid rgba(222, 184, 135, 0.25);
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.6rem;
}
.g272-menu-btn:hover { background: rgba(220, 20, 60, 0.25); }

/* ============ Buttons ============ */
.g272-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 40px;
  padding: 0 1.1rem;
  border-radius: 999px;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  border: 0;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-align: center;
}
.g272-btn-primary {
  background: linear-gradient(135deg, var(--g272-primary), var(--g272-pink));
  color: #fff;
  box-shadow: 0 8px 18px rgba(220, 20, 60, 0.35);
}
.g272-btn-primary:hover { transform: translateY(-1px); color: #fff; }
.g272-btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--g272-text);
  border: 1px solid rgba(222, 184, 135, 0.35);
}
.g272-btn-ghost:hover { background: rgba(222, 184, 135, 0.2); color: var(--g272-text); }
.g272-btn-gold {
  background: linear-gradient(135deg, var(--g272-gold), #c89b5e);
  color: #1a1a1a;
  box-shadow: 0 6px 14px rgba(222, 184, 135, 0.35);
}
.g272-btn-block { display: flex; width: 100%; }

/* ============ Mobile expandable menu ============ */
.g272-mobile-menu {
  position: fixed;
  top: var(--g272-header-h);
  left: 0; right: 0;
  background: linear-gradient(180deg, #1b2632, #18222d);
  border-bottom: 1px solid rgba(222, 184, 135, 0.2);
  max-height: 0;
  overflow: hidden;
  z-index: 9999;
  transition: max-height 0.32s ease;
}
.g272-mobile-menu.g272-menu-open { max-height: 80vh; overflow-y: auto; }
.g272-mobile-menu-inner { padding: 1.2rem 1.4rem 1.6rem; }
.g272-mobile-menu-inner a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 0.6rem;
  font-size: 1.35rem;
  color: var(--g272-text);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.07);
}
.g272-mobile-menu-inner a i,
.g272-mobile-menu-inner a span.material-icons-outlined {
  color: var(--g272-gold);
  font-size: 1.6rem;
}
.g272-mobile-menu-inner a:hover { color: var(--g272-pink); background: rgba(255, 20, 147, 0.08); }

/* ============ Main content area ============ */
main.g272-main {
  padding-top: calc(var(--g272-header-h) + 6px);
  padding-bottom: calc(var(--g272-bottom-h) + 24px);
}
@media (max-width: 768px) {
  main.g272-main { padding-bottom: calc(var(--g272-bottom-h) + 26px); }
}
.g272-section { padding: 1.8rem 0; }
.g272-section-alt {
  background: rgba(36, 51, 68, 0.5);
  border-top: 1px solid var(--g272-card-border);
  border-bottom: 1px solid var(--g272-card-border);
}
.g272-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
}
.g272-section-head h2 {
  font-size: 1.7rem;
  color: var(--g272-text);
  display: flex; align-items: center; gap: 0.6rem;
}
.g272-section-head h2 .g272-accent { color: var(--g272-primary); }
.g272-more-link { font-size: 1.2rem; color: var(--g272-gold); }

/* ============ Hero carousel ============ */
.g272-carousel {
  position: relative;
  border-radius: var(--g272-radius);
  overflow: hidden;
  box-shadow: var(--g272-shadow);
  margin-bottom: 1.2rem;
}
.g272-carousel-viewport { overflow: hidden; }
.g272-carousel-track {
  display: flex;
  width: 100%;
  transition: transform 0.55s ease;
}
.g272-carousel-slide {
  flex: 0 0 100%;
  position: relative;
  cursor: pointer;
}
.g272-carousel-slide img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; }
.g272-carousel-cap {
  position: absolute;
  left: 1.2rem; right: 1.2rem; bottom: 1.2rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  padding: 1rem;
  border-radius: 12px;
}
.g272-carousel-cap h3 { font-size: 1.55rem; color: #fff; margin-bottom: 0.3rem; }
.g272-carousel-cap p { font-size: 1.15rem; color: #ffe; margin: 0; }
.g272-carousel-dots {
  position: absolute;
  bottom: 8px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 6px;
}
.g272-carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 0; padding: 0; cursor: pointer;
}
.g272-carousel-dot.g272-dot-active { background: var(--g272-primary); width: 22px; border-radius: 5px; }

/* ============ Quick category chips ============ */
.g272-chips {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  padding: 0.4rem 0 1rem;
  -webkit-overflow-scrolling: touch;
}
.g272-chips::-webkit-scrollbar { height: 3px; }
.g272-chip {
  flex: 0 0 auto;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--g272-text);
  font-size: 1.2rem;
  font-weight: 600;
  border: 1px solid rgba(222, 184, 135, 0.22);
  cursor: pointer;
}
.g272-chip:hover { background: rgba(220, 20, 60, 0.25); color: #fff; }

/* ============ Game grid & cards ============ */
.g272-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}
@media (min-width: 430px) { .g272-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.g272-card {
  background: var(--g272-card);
  border: 1px solid var(--g272-card-border);
  border-radius: var(--g272-radius-sm);
  overflow: hidden;
  text-align: center;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.g272-card:hover {
  transform: translateY(-2px);
  border-color: rgba(220, 20, 60, 0.6);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
}
.g272-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #0f1620;
}
.g272-card-name {
  padding: 0.5rem 0.4rem 0.7rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--g272-text);
  line-height: 1.25;
  min-height: 32px;
}
.g272-card:hover .g272-card-name { color: var(--g272-gold); }

/* ============ Featured / banner ============ */
.g272-feature {
  background: linear-gradient(135deg, rgba(153, 102, 204, 0.35), rgba(255, 20, 147, 0.25));
  border: 1px solid rgba(222, 184, 135, 0.3);
  border-radius: var(--g272-radius);
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.g272-feature h3 { color: #fff; font-size: 1.6rem; }
.g272-feature p { font-size: 1.2rem; color: #f6e9d8; margin-bottom: 0.6rem; }

/* ============ Info / FAQ accordion ============ */
.g272-faq-item {
  background: var(--g272-card);
  border: 1px solid var(--g272-card-border);
  border-radius: var(--g272-radius-sm);
  margin-bottom: 0.8rem;
  overflow: hidden;
}
.g272-faq-q {
  padding: 1rem 1.1rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--g272-text);
  display: flex; justify-content: space-between; align-items: center;
}
.g272-faq-q i { color: var(--g272-gold); }
.g272-faq-a {
  padding: 0 1.1rem 1rem;
  font-size: 1.15rem;
  color: #d6dde4;
}
.g272-faq-a a { font-weight: 700; }

/* ============ Testimonial / winner ============ */
.g272-testimonial {
  background: var(--g272-card);
  border-left: 4px solid var(--g272-primary);
  border-radius: var(--g272-radius-sm);
  padding: 1rem 1.1rem;
  margin-bottom: 0.7rem;
  font-size: 1.15rem;
}
.g272-testimonial strong { color: var(--g272-gold); }
.g272-stars { color: #f5c542; letter-spacing: 2px; margin-bottom: 0.3rem; }

.g272-winner {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--g272-card);
  border-radius: var(--g272-radius-sm);
  padding: 0.7rem 0.9rem;
  margin-bottom: 0.55rem;
  font-size: 1.15rem;
}
.g272-winner i { font-size: 1.7rem; color: var(--g272-gold); }
.g272-winner span { margin-left: auto; font-weight: 700; color: #6ad17a; }

/* ============ Payment icons ============ */
.g272-pay-row {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.g272-pay {
  flex: 1 1 30%;
  background: var(--g272-card);
  border: 1px solid var(--g272-card-border);
  border-radius: 10px;
  padding: 0.8rem;
  text-align: center;
  font-size: 1.1rem;
  color: var(--g272-text);
}
.g272-pay i { display: block; font-size: 1.6rem; color: var(--g272-purple); margin-bottom: 0.3rem; }

/* ============ Stat tiles ============ */
.g272-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
}
.g272-stat {
  background: var(--g272-card);
  border: 1px solid var(--g272-card-border);
  border-radius: var(--g272-radius-sm);
  padding: 1rem;
  text-align: center;
}
.g272-stat b { display: block; font-size: 1.7rem; color: var(--g272-primary); }
.g272-stat span { font-size: 1.1rem; color: var(--g272-muted); }

/* ============ Step list (How to Play) ============ */
.g272-steps { counter-reset: step; }
.g272-step {
  position: relative;
  padding: 0.6rem 0.6rem 0.6rem 3.2rem;
  margin-bottom: 0.7rem;
  background: var(--g272-card);
  border-radius: var(--g272-radius-sm);
  border-left: 3px solid var(--g272-pink);
}
.g272-step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0.7rem; top: 50%;
  transform: translateY(-50%);
  width: 2rem; height: 2rem;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--g272-primary), var(--g272-pink));
  color: #fff; border-radius: 50%;
  font-weight: 700; font-size: 1.05rem;
}
.g272-step b { color: var(--g272-gold); }

/* ============ Footer ============ */
.g272-footer {
  background: #11181f;
  border-top: 2px solid var(--g272-primary);
  padding: 2rem 0 1.4rem;
  color: #c5cdd5;
}
.g272-footer h3 { color: #fff; font-size: 1.45rem; margin-bottom: 0.6rem; }
.g272-footer p { font-size: 1.15rem; color: #aab3bc; }
.g272-footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 0.8rem;
  margin: 1rem 0;
}
.g272-footer-links a {
  font-size: 1.15rem;
  color: #d6dde4;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.g272-footer-links a:hover { color: var(--g272-pink); }
.g272-footer-buttons {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  margin: 1rem 0;
}
.g272-copyright {
  margin-top: 1.2rem;
  text-align: center;
  font-size: 1.1rem;
  color: #8893a0;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
}

/* ============ Mobile bottom navigation ============ */
.g272-bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: var(--g272-bottom-h);
  background: linear-gradient(180deg, #1f2c39, #18222d);
  border-top: 2px solid var(--g272-primary);
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  z-index: 1000;
  box-shadow: 0 -6px 18px rgba(0, 0, 0, 0.45);
}
.g272-bottom-nav-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: transparent;
  border: 0;
  color: #c5cdd5;
  font-size: 1.05rem;
  cursor: pointer;
  min-width: 60px;
  min-height: 60px;
  padding: 4px 2px;
  transition: color 0.18s ease, transform 0.18s ease;
}
.g272-bottom-nav-btn i,
.g272-bottom-nav-btn span.material-icons-outlined,
.g272-bottom-nav-btn ion-icon {
  font-size: 22px;
  color: var(--g272-gold);
  transition: transform 0.18s ease, color 0.18s ease;
}
.g272-bottom-nav-btn:hover {
  transform: translateY(-2px);
  color: #fff;
}
.g272-bottom-nav-btn:hover i,
.g272-bottom-nav-btn:hover span.material-icons-outlined,
.g272-bottom-nav-btn:hover ion-icon {
  color: var(--g272-pink);
  transform: scale(1.12);
}
.g272-bottom-nav-active {
  color: #fff;
}
.g272-bottom-nav-active i,
.g272-bottom-nav-active span.material-icons-outlined,
.g272-bottom-nav-active ion-icon {
  color: var(--g272-primary);
}
.g272-bottom-nav-badge {
  position: relative;
}
.g272-bottom-nav-badge::after {
  content: "1";
  position: absolute;
  top: 4px; right: 18px;
  background: var(--g272-pink);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  width: 14px; height: 14px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
}

/* Hide bottom nav on desktop, hide desktop nav on mobile */
@media (min-width: 769px) {
  .g272-bottom-nav { display: none; }
  main.g272-main { padding-bottom: 36px; }
}
@media (max-width: 768px) {
  .g272-desktop-only { display: none !important; }
}

/* ============ Utility ============ */
.g272-text-gold { color: var(--g272-gold); }
.g272-text-pink { color: var(--g272-pink); }
.g272-text-primary { color: var(--g272-primary); }
.g272-text-muted { color: var(--g272-muted); }
.g272-mt-1 { margin-top: 0.6rem; }
.g272-mt-2 { margin-top: 1.2rem; }
.g272-mb-0 { margin-bottom: 0; }
.g272-pb-0 { padding-bottom: 0; }
.g272-center { text-align: center; }
.g272-prose { font-size: 1.18rem; color: #d6dde4; }
.g272-prose a { font-weight: 700; }
.g272-prose strong { color: var(--g272-gold); }
.g272-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(222,184,135,0.5), transparent);
  margin: 1.4rem 0;
}
.g272-eyebrow {
  display: inline-block;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--g272-gold);
  margin-bottom: 0.4rem;
}
