/* Hann Casino Resort - Core Stylesheet
   Prefix: pg60-
   Mobile-first design for Philippine market
   Palette: #0A0A0A | #FFC0CB | #999999 | #FF1493 | #E91E63 */

:root {
  --pg60-bg: #0A0A0A;
  --pg60-bg-alt: #1A0F1A;
  --pg60-bg-card: #161016;
  --pg60-text: #FFC0CB;
  --pg60-text-soft: #999999;
  --pg60-primary: #FF1493;
  --pg60-accent: #E91E63;
  --pg60-gold: #FFD700;
  --pg60-border: rgba(255, 192, 203, 0.12);
  --pg60-shadow: 0 4px 20px rgba(255, 20, 147, 0.25);
  --pg60-radius: 12px;
  --pg60-radius-sm: 8px;
}

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

html { font-size: 62.5%; scroll-behavior: smooth; }

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

a { color: var(--pg60-primary); text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== Header ===== */
.pg60-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(10,10,10,0.98), rgba(10,10,10,0.92));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--pg60-border);
  max-width: 430px;
  margin: 0 auto;
}
.pg60-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  gap: 0.6rem;
}
.pg60-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
}
.pg60-logo-img { width: 28px; height: 28px; border-radius: 6px; }
.pg60-logo-txt {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pg60-text);
  white-space: nowrap;
}
.pg60-logo-txt span { color: var(--pg60-primary); }

.pg60-header-actions { display: flex; align-items: center; gap: 0.5rem; }
.pg60-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: none;
  border-radius: 999px;
  padding: 0.7rem 1.2rem;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  min-height: 36px;
}
.pg60-btn:active { transform: scale(0.95); }
.pg60-btn-login {
  background: transparent;
  color: var(--pg60-text);
  border: 1px solid var(--pg60-primary);
}
.pg60-btn-register {
  background: linear-gradient(90deg, var(--pg60-primary), var(--pg60-accent));
  color: #fff;
  box-shadow: var(--pg60-shadow);
}

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

/* ===== Mobile Menu Drawer ===== */
.pg60-mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: var(--pg60-bg-alt);
  z-index: 9999;
  transition: right 0.3s ease;
  padding: 6rem 1.5rem 2rem;
  overflow-y: auto;
  border-left: 1px solid var(--pg60-border);
}
.pg60-mobile-menu.pg60-is-open { right: 0; }
.pg60-menu-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: transparent;
  border: none;
  color: var(--pg60-text);
  font-size: 2rem;
  cursor: pointer;
}
.pg60-menu-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--pg60-primary);
}
.pg60-menu-link {
  display: block;
  padding: 1rem 0.8rem;
  color: var(--pg60-text);
  font-size: 1.4rem;
  border-bottom: 1px solid var(--pg60-border);
}
.pg60-menu-link:active { background: rgba(255,20,147,0.1); }
.pg60-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
  display: none;
}
.pg60-overlay.pg60-is-visible { display: block; }

/* ===== Layout ===== */
.pg60-main { padding-top: 64px; }
.pg60-section { padding: 2rem 1.2rem; }
.pg60-section-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--pg60-text);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.pg60-section-title .pg60-accent-bar {
  width: 4px; height: 1.8rem;
  background: linear-gradient(180deg, var(--pg60-primary), var(--pg60-accent));
  border-radius: 2px;
}
.pg60-subtitle {
  font-size: 1.4rem;
  color: var(--pg60-text-soft);
  margin-bottom: 1.2rem;
}

/* ===== Hero Carousel ===== */
.pg60-hero {
  margin: 1rem 1.2rem;
  border-radius: var(--pg60-radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--pg60-shadow);
}
.pg60-carousel { position: relative; }
.pg60-carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.pg60-carousel-track::-webkit-scrollbar { display: none; }
.pg60-carousel-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  position: relative;
  cursor: pointer;
}
.pg60-carousel-slide img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.pg60-carousel-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(180deg, transparent, rgba(10,10,10,0.9));
  padding: 1.2rem;
}
.pg60-carousel-caption h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.3rem;
}
.pg60-carousel-caption p {
  font-size: 1.2rem;
  color: var(--pg60-text);
}
.pg60-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem;
}
.pg60-carousel-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--pg60-text-soft);
  cursor: pointer;
  border: none;
}
.pg60-carousel-dot.pg60-is-active { background: var(--pg60-primary); width: 18px; border-radius: 4px; }

/* ===== H1 Hero Title ===== */
.pg60-h1-hero {
  text-align: center;
  padding: 1.5rem 1.2rem 0.5rem;
}
.pg60-h1-hero h1 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--pg60-text);
  line-height: 1.25;
  margin-bottom: 0.6rem;
}
.pg60-h1-hero h1 span { color: var(--pg60-primary); }
.pg60-h1-hero p { font-size: 1.3rem; color: var(--pg60-text-soft); }

/* ===== Game Grid ===== */
.pg60-game-block { margin-bottom: 2rem; }
.pg60-game-gird {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}
.pg60-game-card {
  background: var(--pg60-bg-card);
  border: 1px solid var(--pg60-border);
  border-radius: var(--pg60-radius-sm);
  padding: 0.5rem;
  text-align: center;
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease;
  overflow: hidden;
}
.pg60-game-card:active {
  transform: scale(0.96);
  border-color: var(--pg60-primary);
}
.pg60-game-card img {
  width: 100%;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 0.4rem;
}
.pg60-game-card-name {
  font-size: 1.1rem;
  color: var(--pg60-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 600;
}
.pg60-cat-badge {
  display: inline-block;
  background: linear-gradient(90deg, var(--pg60-primary), var(--pg60-accent));
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 0.8rem;
  text-transform: capitalize;
}

/* ===== Info / Feature Cards ===== */
.pg60-card {
  background: var(--pg60-bg-card);
  border: 1px solid var(--pg60-border);
  border-radius: var(--pg60-radius);
  padding: 1.4rem;
  margin-bottom: 1rem;
}
.pg60-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pg60-primary);
  margin-bottom: 0.6rem;
}
.pg60-card p {
  font-size: 1.3rem;
  color: var(--pg60-text);
  margin-bottom: 0.5rem;
}
.pg60-card .pg60-link-inline {
  color: var(--pg60-primary);
  font-weight: 700;
  text-decoration: underline;
}

.pg60-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}
.pg60-feature-item {
  background: var(--pg60-bg-card);
  border: 1px solid var(--pg60-border);
  border-radius: var(--pg60-radius-sm);
  padding: 1rem;
  text-align: center;
}
.pg60-feature-icon {
  font-size: 2.4rem;
  color: var(--pg60-primary);
  margin-bottom: 0.5rem;
}
.pg60-feature-item h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--pg60-text);
  margin-bottom: 0.3rem;
}
.pg60-feature-item p { font-size: 1.1rem; color: var(--pg60-text-soft); }

/* ===== RTP compact table ===== */
.pg60-rtp-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--pg60-bg-card);
  border-radius: var(--pg60-radius-sm);
  overflow: hidden;
}
.pg60-rtp-table th, .pg60-rtp-table td {
  padding: 0.7rem 0.8rem;
  font-size: 1.2rem;
  text-align: left;
  border-bottom: 1px solid var(--pg60-border);
}
.pg60-rtp-table th { background: rgba(255,20,147,0.12); color: var(--pg60-text); font-weight: 700; }
.pg60-rtp-table td { color: var(--pg60-text-soft); }
.pg60-rtp-table tr:last-child td { border-bottom: none; }
.pg60-rtp-bar {
  display: inline-block;
  height: 6px;
  background: linear-gradient(90deg, var(--pg60-primary), var(--pg60-gold));
  border-radius: 3px;
  vertical-align: middle;
}

/* ===== Testimonials ===== */
.pg60-testimonial {
  background: var(--pg60-bg-card);
  border-left: 3px solid var(--pg60-primary);
  border-radius: var(--pg60-radius-sm);
  padding: 1rem;
  margin-bottom: 0.8rem;
}
.pg60-testimonial p { font-size: 1.25rem; color: var(--pg60-text); margin-bottom: 0.5rem; }
.pg60-testimonial-meta { font-size: 1.1rem; color: var(--pg60-text-soft); }
.pg60-stars { color: var(--pg60-gold); font-size: 1.2rem; }

/* ===== Payment grid ===== */
.pg60-pay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}
.pg60-pay-item {
  background: var(--pg60-bg-card);
  border: 1px solid var(--pg60-border);
  border-radius: var(--pg60-radius-sm);
  padding: 0.8rem;
  text-align: center;
  font-size: 1.1rem;
  color: var(--pg60-text);
}
.pg60-pay-item .pg60-pay-icon {
  font-size: 2rem;
  color: var(--pg60-primary);
  margin-bottom: 0.3rem;
}

/* ===== Winners ===== */
.pg60-winner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--pg60-bg-card);
  border: 1px solid var(--pg60-border);
  border-radius: var(--pg60-radius-sm);
  padding: 0.8rem 1rem;
  margin-bottom: 0.5rem;
}
.pg60-winner-name { font-size: 1.25rem; color: var(--pg60-text); font-weight: 700; }
.pg60-winner-amount { font-size: 1.3rem; color: var(--pg60-gold); font-weight: 800; }

/* ===== FAQ ===== */
.pg60-faq-item {
  background: var(--pg60-bg-card);
  border: 1px solid var(--pg60-border);
  border-radius: var(--pg60-radius-sm);
  margin-bottom: 0.6rem;
  overflow: hidden;
}
.pg60-faq-q {
  padding: 1rem;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--pg60-text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.pg60-faq-q .pg60-faq-icon { color: var(--pg60-primary); transition: transform 0.2s; }
.pg60-faq-item.pg60-is-open .pg60-faq-icon { transform: rotate(45deg); }
.pg60-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1rem;
}
.pg60-faq-item.pg60-is-open .pg60-faq-a { max-height: 320px; padding: 0 1rem 1rem; }
.pg60-faq-a p { font-size: 1.2rem; color: var(--pg60-text-soft); }

/* ===== CTA ===== */
.pg60-cta {
  background: linear-gradient(135deg, var(--pg60-primary), var(--pg60-accent));
  border-radius: var(--pg60-radius);
  padding: 2rem 1.4rem;
  text-align: center;
  margin: 1.5rem 1.2rem;
  box-shadow: var(--pg60-shadow);
}
.pg60-cta h3 { font-size: 1.8rem; color: #fff; margin-bottom: 0.6rem; }
.pg60-cta p { font-size: 1.3rem; color: rgba(255,255,255,0.9); margin-bottom: 1rem; }
.pg60-cta .pg60-btn-cta {
  background: #fff;
  color: var(--pg60-primary);
  font-size: 1.5rem;
  font-weight: 800;
  padding: 1rem 2.5rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.pg60-cta .pg60-btn-cta:active { transform: scale(0.96); }

/* ===== App Download ===== */
.pg60-app-cta {
  background: var(--pg60-bg-card);
  border: 1px solid var(--pg60-border);
  border-radius: var(--pg60-radius);
  padding: 1.5rem;
  text-align: center;
  margin: 1.5rem 1.2rem;
}
.pg60-app-cta-icon { font-size: 3rem; color: var(--pg60-primary); margin-bottom: 0.5rem; }
.pg60-app-cta h3 { font-size: 1.6rem; color: var(--pg60-text); margin-bottom: 0.4rem; }
.pg60-app-cta p { font-size: 1.25rem; color: var(--pg60-text-soft); margin-bottom: 1rem; }
.pg60-app-buttons { display: flex; gap: 0.6rem; justify-content: center; flex-wrap: wrap; }
.pg60-app-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(90deg, var(--pg60-primary), var(--pg60-accent));
  color: #fff;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  font-size: 1.3rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
}

/* ===== Security badges ===== */
.pg60-security-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.pg60-security-badge {
  flex: 1 1 45%;
  background: var(--pg60-bg-card);
  border: 1px solid var(--pg60-border);
  border-radius: var(--pg60-radius-sm);
  padding: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.pg60-security-badge .material-icons,
.pg60-security-badge .pg60-icon { color: var(--pg60-primary); font-size: 2rem; }
.pg60-security-badge span { font-size: 1.2rem; color: var(--pg60-text); }

/* ===== Inline promo link ===== */
.pg60-promo-link {
  color: var(--pg60-primary);
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
}
.pg60-link-bold { color: var(--pg60-primary); font-weight: 700; }

/* ===== Footer ===== */
.pg60-footer {
  background: var(--pg60-bg-alt);
  border-top: 1px solid var(--pg60-border);
  padding: 2rem 1.2rem 1.5rem;
  margin-top: 2rem;
}
.pg60-footer-brand {
  font-size: 1.25rem;
  color: var(--pg60-text-soft);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.pg60-footer-brand strong { color: var(--pg60-text); }
.pg60-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-bottom: 1rem;
}
.pg60-footer-links a {
  font-size: 1.15rem;
  color: var(--pg60-text);
}
.pg60-footer-links a:hover { color: var(--pg60-primary); }
.pg60-footer-promo {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.pg60-footer-promo button {
  background: transparent;
  border: 1px solid var(--pg60-primary);
  color: var(--pg60-primary);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
}
.pg60-copyright {
  font-size: 1.1rem;
  color: var(--pg60-text-soft);
  text-align: center;
  border-top: 1px solid var(--pg60-border);
  padding-top: 1rem;
}

/* ===== Mobile Bottom Nav ===== */
.pg60-bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  height: 60px;
  background: linear-gradient(180deg, var(--pg60-bg-alt), #000);
  border-top: 1px solid var(--pg60-border);
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 430px;
  margin: 0 auto;
}
.pg60-nav-btn {
  flex: 1;
  min-width: 60px;
  min-height: 60px;
  background: transparent;
  border: none;
  color: var(--pg60-text-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.15s ease;
  position: relative;
}
.pg60-nav-btn:active { transform: scale(0.9); }
.pg60-nav-btn.pg60-is-active { color: var(--pg60-primary); }
.pg60-nav-btn.pg60-is-active::before {
  content: '';
  position: absolute;
  top: 0;
  width: 30px; height: 3px;
  background: linear-gradient(90deg, var(--pg60-primary), var(--pg60-accent));
  border-radius: 0 0 4px 4px;
}
.pg60-nav-btn i,
.pg60-nav-btn .material-icons,
.pg60-nav-btn ion-icon {
  font-size: 22px;
}
.pg60-nav-btn .pg60-nav-label { font-size: 1rem; font-weight: 600; }
.pg60-nav-badge {
  position: absolute;
  top: 6px; right: 18px;
  background: var(--pg60-gold);
  color: #000;
  font-size: 0.9rem;
  font-weight: 700;
  min-width: 16px; height: 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

/* ===== Desktop ===== */
@media (min-width: 769px) {
  .pg60-bottom-nav { display: none; }
  body { max-width: 100%; }
  .pg60-header { max-width: 100%; }
  .pg60-bottom-nav { max-width: 100%; }
  .pg60-game-gird { grid-template-columns: repeat(5, 1fr); }
  .pg60-feature-grid { grid-template-columns: repeat(4, 1fr); }
  .pg60-pay-grid { grid-template-columns: repeat(6, 1fr); }
}

/* Mobile bottom padding for fixed nav clearance */
@media (max-width: 768px) {
  .pg60-main { padding-bottom: 80px; }
  .pg60-footer { padding-bottom: 80px; }
}

/* Utility */
.pg60-text-center { text-align: center; }
.pg60-mt-1 { margin-top: 1rem; }
.pg60-mb-1 { margin-bottom: 1rem; }
.pg60-hidden { display: none; }