/* 8889.click Core Base Styles
   Prefix: pg60-
   Palette: #FFD700 | #FF8C00 | #F0F0F0 | #262626
   Mobile-first, max-width 430px
   Comments in English. */

/* CSS Variables - brand palette and shared tokens */
:root {
  --pg60-primary: #FFD700;
  --pg60-accent: #FF8C00;
  --pg60-bg: #262626;
  --pg60-bg-light: #2f2f2f;
  --pg60-bg-card: #333333;
  --pg60-text: #F0F0F0;
  --pg60-text-muted: #b8b8b8;
  --pg60-border: #3d3d3d;
  --pg60-success: #4caf50;
  --pg60-danger: #e53935;
  --pg60-radius: 10px;
  --pg60-radius-lg: 16px;
  --pg60-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
  --pg60-shadow-glow: 0 0 24px rgba(255, 215, 0, 0.35);
  --pg60-transition: 0.25s ease;
}

/* Base reset scoped to 8889 base pages */
.pg60-page *,
.pg60-page *::before,
.pg60-page *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.pg60-page {
  font-family: "Segoe UI", "Noto Sans Bengali", "SolaimanLipi", system-ui, -apple-system, sans-serif;
  background: var(--pg60-bg);
  color: var(--pg60-text);
  line-height: 1.5rem;
  font-size: 1.6rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.pg60-page body {
  background: var(--pg60-bg);
  color: var(--pg60-text);
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Skip link for accessibility */
.pg60-skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--pg60-primary);
  color: var(--pg60-bg);
  padding: 8px 14px;
  border-radius: 0 0 var(--pg60-radius) 0;
  z-index: 2000;
}
.pg60-skip-link:focus {
  left: 0;
}

/* Layout helpers */
.pg60-container {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 12px;
}
.pg60-wrapper {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
}
.pg60-section {
  padding: 22px 0;
}
.pg60-section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--pg60-primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pg60-section-title i,
.pg60-section-title .material-icons-outlined,
.pg60-section-title .ion {
  color: var(--pg60-accent);
  font-size: 22px;
}
.pg60-section-sub {
  color: var(--pg60-text-muted);
  font-size: 1.35rem;
  margin-bottom: 14px;
}
.pg60-divider {
  height: 1px;
  background: var(--pg60-border);
  margin: 18px 0;
  border: 0;
}

/* Header */
.pg60-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  background: linear-gradient(135deg, #1f1f1f 0%, #2f2f2f 100%);
  border-bottom: 2px solid var(--pg60-primary);
  z-index: 1000;
  box-shadow: var(--pg60-shadow);
}
.pg60-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  gap: 8px;
}
.pg60-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}
.pg60-logo-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--pg60-primary), var(--pg60-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pg60-bg);
  font-weight: 900;
  font-size: 16px;
}
.pg60-logo-text {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--pg60-primary);
  letter-spacing: 0.5px;
}
.pg60-logo-text span {
  color: var(--pg60-text);
}
.pg60-header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}
.pg60-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 0;
  border-radius: var(--pg60-radius);
  padding: 8px 14px;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--pg60-transition), box-shadow var(--pg60-transition), background var(--pg60-transition);
  min-height: 40px;
  line-height: 1;
}
.pg60-btn i,
.pg60-btn .material-icons-outlined,
.pg60-btn .ion {
  font-size: 16px;
}
.pg60-btn-login {
  background: transparent;
  color: var(--pg60-text);
  border: 1px solid var(--pg60-border);
}
.pg60-btn-login:hover {
  border-color: var(--pg60-primary);
  color: var(--pg60-primary);
}
.pg60-btn-register {
  background: linear-gradient(135deg, var(--pg60-primary), var(--pg60-accent));
  color: var(--pg60-bg);
  box-shadow: 0 2px 8px rgba(255, 140, 0, 0.4);
}
.pg60-btn-register:hover {
  transform: translateY(-1px);
  box-shadow: var(--pg60-shadow-glow);
}
.pg60-btn-block {
  width: 100%;
  padding: 12px 16px;
  font-size: 1.5rem;
}
.pg60-btn-ghost {
  background: transparent;
  color: var(--pg60-primary);
  border: 1px solid var(--pg60-primary);
}
.pg60-btn-ghost:hover {
  background: rgba(255, 215, 0, 0.12);
}

/* Mobile menu toggle */
.pg60-menu-toggle {
  background: transparent;
  border: 1px solid var(--pg60-border);
  border-radius: 8px;
  width: 38px;
  height: 38px;
  color: var(--pg60-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.pg60-menu-toggle:hover {
  border-color: var(--pg60-primary);
}

/* Slide menu */
.pg60-menu {
  position: fixed;
  top: 0;
  left: -85%;
  width: 75%;
  max-width: 320px;
  height: 100vh;
  background: #1c1c1c;
  z-index: 9999;
  transition: left 0.3s ease;
  overflow-y: auto;
  padding: 70px 14px 24px;
  border-right: 1px solid var(--pg60-border);
}
.pg60-menu.pg60-menu-open {
  left: 0;
  box-shadow: 6px 0 30px rgba(0, 0, 0, 0.6);
}
.pg60-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9998;
  display: none;
}
.pg60-menu-overlay.pg60-menu-open {
  display: block;
}
.pg60-menu-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: 0;
  color: var(--pg60-text);
  font-size: 22px;
  cursor: pointer;
}
.pg60-menu-title {
  font-size: 1.6rem;
  color: var(--pg60-primary);
  margin-bottom: 10px;
  font-weight: 800;
}
.pg60-menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pg60-menu-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--pg60-text);
  text-decoration: none;
  font-size: 1.4rem;
  border: 1px solid transparent;
  transition: background var(--pg60-transition), border var(--pg60-transition);
}
.pg60-menu-list a:hover,
.pg60-menu-list a:focus {
  background: rgba(255, 215, 0, 0.08);
  border-color: var(--pg60-border);
}
.pg60-menu-list a i,
.pg60-menu-list a .material-icons-outlined {
  color: var(--pg60-accent);
  font-size: 18px;
  width: 22px;
  text-align: center;
}

/* Main content - offset for fixed header */
.pg60-main {
  padding-top: 64px;
  padding-bottom: 24px;
}

/* Hero / Carousel */
.pg60-hero {
  position: relative;
  margin: 14px 0 4px;
  border-radius: var(--pg60-radius-lg);
  overflow: hidden;
  box-shadow: var(--pg60-shadow);
}
.pg60-carousel {
  position: relative;
  border-radius: var(--pg60-radius-lg);
  overflow: hidden;
}
.pg60-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}
.pg60-slide {
  min-width: 100%;
  position: relative;
}
.pg60-slide img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  cursor: pointer;
}
.pg60-slide-caption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(0, 0, 0, 0.55);
  color: var(--pg60-primary);
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 1.4rem;
  font-weight: 700;
  max-width: 80%;
}
.pg60-carousel-dots {
  position: absolute;
  bottom: 8px;
  right: 12px;
  display: flex;
  gap: 6px;
}
.pg60-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(240, 240, 240, 0.5);
  border: 0;
  cursor: pointer;
  transition: background var(--pg60-transition);
}
.pg60-carousel-dot.pg60-active {
  background: var(--pg60-primary);
  width: 18px;
  border-radius: 4px;
}

/* Marquee announcement */
.pg60-marquee {
  background: linear-gradient(90deg, #1f1f1f, #333, #1f1f1f);
  border: 1px solid var(--pg60-border);
  border-radius: var(--pg60-radius);
  padding: 8px 12px;
  margin: 14px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
}
.pg60-marquee-icon {
  color: var(--pg60-primary);
  font-size: 18px;
  flex-shrink: 0;
}
.pg60-marquee-text {
  white-space: nowrap;
  font-size: 1.3rem;
  color: var(--pg60-text-muted);
  animation: pg60-scroll 18s linear infinite;
}
@keyframes pg60-scroll {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* Promo CTA bar */
.pg60-cta-bar {
  display: flex;
  gap: 10px;
  margin: 16px 0;
}
.pg60-cta-bar .pg60-btn {
  flex: 1;
}

/* Category chips */
.pg60-chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 6px 0 10px;
  scrollbar-width: thin;
}
.pg60-chips::-webkit-scrollbar {
  height: 4px;
}
.pg60-chip {
  flex-shrink: 0;
  padding: 7px 14px;
  border-radius: 20px;
  background: var(--pg60-bg-card);
  color: var(--pg60-text);
  font-size: 1.25rem;
  text-decoration: none;
  border: 1px solid var(--pg60-border);
  transition: all var(--pg60-transition);
  white-space: nowrap;
}
.pg60-chip:hover,
.pg60-chip.pg60-active {
  background: linear-gradient(135deg, var(--pg60-primary), var(--pg60-accent));
  color: var(--pg60-bg);
  border-color: transparent;
  font-weight: 700;
}

/* Game grid */
.pg60-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.pg60-card {
  background: var(--pg60-bg-card);
  border: 1px solid var(--pg60-border);
  border-radius: var(--pg60-radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--pg60-transition), box-shadow var(--pg60-transition), border var(--pg60-transition);
  text-align: center;
  display: flex;
  flex-direction: column;
}
.pg60-card:hover,
.pg60-card:focus {
  transform: translateY(-3px);
  border-color: var(--pg60-primary);
  box-shadow: 0 6px 16px rgba(255, 215, 0, 0.25);
}
.pg60-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  background: #1a1a1a;
}
.pg60-card-name {
  font-size: 1.15rem;
  padding: 6px 4px 8px;
  color: var(--pg60-text);
  line-height: 1.25;
  min-height: 38px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pg60-card-badge {
  display: inline-block;
  background: var(--pg60-accent);
  color: var(--pg60-bg);
  font-size: 0.95rem;
  padding: 2px 6px;
  border-radius: 4px;
  margin: 0 0 6px;
  font-weight: 700;
}

/* Feature / info blocks */
.pg60-feature {
  background: linear-gradient(135deg, #2a2a2a, #1f1f1f);
  border: 1px solid var(--pg60-border);
  border-radius: var(--pg60-radius-lg);
  padding: 16px;
  margin-bottom: 14px;
}
.pg60-feature h3 {
  color: var(--pg60-primary);
  font-size: 1.7rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pg60-feature p,
.pg60-feature li {
  color: var(--pg60-text-muted);
  font-size: 1.3rem;
  line-height: 1.5;
}
.pg60-feature ul {
  list-style: none;
  padding-left: 0;
}
.pg60-feature li {
  padding: 6px 0 6px 22px;
  position: relative;
}
.pg60-feature li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--pg60-primary);
  position: absolute;
  left: 0;
  font-size: 12px;
  top: 8px;
}

/* Steps list */
.pg60-steps {
  list-style: none;
  counter-reset: pg60-step;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pg60-steps li {
  counter-increment: pg60-step;
  background: var(--pg60-bg-card);
  border: 1px solid var(--pg60-border);
  border-radius: var(--pg60-radius);
  padding: 12px 14px 12px 46px;
  position: relative;
  font-size: 1.3rem;
  color: var(--pg60-text);
}
.pg60-steps li::before {
  content: counter(pg60-step);
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pg60-primary), var(--pg60-accent));
  color: var(--pg60-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.3rem;
}

/* Testimonials */
.pg60-testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.pg60-testimonial {
  background: var(--pg60-bg-card);
  border-left: 3px solid var(--pg60-primary);
  border-radius: 8px;
  padding: 12px 14px;
}
.pg60-testimonial p {
  font-size: 1.3rem;
  color: var(--pg60-text);
  font-style: italic;
  margin-bottom: 6px;
}
.pg60-testimonial-meta {
  font-size: 1.15rem;
  color: var(--pg60-accent);
  font-weight: 700;
}

/* Winners showcase */
.pg60-winners {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.pg60-winner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--pg60-bg-card);
  border: 1px solid var(--pg60-border);
  border-radius: 8px;
  padding: 10px 12px;
}
.pg60-winner-name {
  font-size: 1.25rem;
  color: var(--pg60-text);
}
.pg60-winner-game {
  font-size: 1.1rem;
  color: var(--pg60-text-muted);
}
.pg60-winner-amount {
  color: var(--pg60-primary);
  font-weight: 800;
  font-size: 1.35rem;
}

/* Payment methods */
.pg60-payments {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.pg60-payment {
  background: var(--pg60-bg-card);
  border: 1px solid var(--pg60-border);
  border-radius: 8px;
  padding: 10px 4px;
  text-align: center;
  font-size: 1.05rem;
  color: var(--pg60-text-muted);
}
.pg60-payment i,
.pg60-payment .material-icons-outlined,
.pg60-payment .ion {
  font-size: 22px;
  color: var(--pg60-primary);
  display: block;
  margin-bottom: 4px;
}

/* RTP compact table */
.pg60-rtp {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.2rem;
  background: var(--pg60-bg-card);
  border-radius: var(--pg60-radius);
  overflow: hidden;
}
.pg60-rtp th,
.pg60-rtp td {
  padding: 8px 10px;
  text-align: left;
  border-bottom: 1px solid var(--pg60-border);
}
.pg60-rtp th {
  background: #1f1f1f;
  color: var(--pg60-primary);
  font-weight: 700;
  font-size: 1.15rem;
}
.pg60-rtp td.pg60-rtp-value {
  color: var(--pg60-primary);
  font-weight: 700;
}

/* App download CTA */
.pg60-app-cta {
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
  border: 1px solid var(--pg60-primary);
  border-radius: var(--pg60-radius-lg);
  padding: 18px;
  text-align: center;
  margin-bottom: 14px;
}
.pg60-app-cta h3 {
  color: var(--pg60-primary);
  font-size: 1.8rem;
  margin-bottom: 6px;
}
.pg60-app-cta p {
  color: var(--pg60-text-muted);
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.pg60-app-cta-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
}

/* Inline promo link */
.pg60-promo-link {
  color: var(--pg60-primary);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  border-bottom: 1px dashed var(--pg60-primary);
}
.pg60-promo-link:hover {
  color: var(--pg60-accent);
  border-bottom-color: var(--pg60-accent);
}

/* FAQ */
.pg60-faq-item {
  background: var(--pg60-bg-card);
  border: 1px solid var(--pg60-border);
  border-radius: var(--pg60-radius);
  margin-bottom: 8px;
  overflow: hidden;
}
.pg60-faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 12px 14px;
  color: var(--pg60-text);
  font-size: 1.35rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.pg60-faq-q .pg60-faq-icon {
  color: var(--pg60-primary);
  transition: transform var(--pg60-transition);
}
.pg60-faq-item.pg60-open .pg60-faq-icon {
  transform: rotate(180deg);
}
.pg60-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--pg60-text-muted);
  font-size: 1.25rem;
  padding: 0 14px;
}
.pg60-faq-item.pg60-open .pg60-faq-a {
  max-height: 400px;
  padding: 0 14px 12px;
}

/* Footer */
.pg60-footer {
  background: #1a1a1a;
  border-top: 2px solid var(--pg60-primary);
  padding: 22px 12px 96px;
  margin-top: 22px;
}
.pg60-footer-brand {
  color: var(--pg60-text-muted);
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 14px;
}
.pg60-footer-brand strong {
  color: var(--pg60-primary);
}
.pg60-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.pg60-footer-links a {
  color: var(--pg60-text);
  text-decoration: none;
  font-size: 1.15rem;
  padding: 6px 10px;
  border: 1px solid var(--pg60-border);
  border-radius: 6px;
  transition: all var(--pg60-transition);
}
.pg60-footer-links a:hover {
  border-color: var(--pg60-primary);
  color: var(--pg60-primary);
}
.pg60-footer-promo {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.pg60-footer-promo .pg60-btn {
  flex: 1 1 calc(50% - 8px);
  min-width: 130px;
}
.pg60-footer-copy {
  font-size: 1.1rem;
  color: var(--pg60-text-muted);
  text-align: center;
  border-top: 1px solid var(--pg60-border);
  padding-top: 12px;
}

/* Mobile bottom navigation - unique design */
.pg60-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  height: 62px;
  background: linear-gradient(180deg, #2a2a2a 0%, #161616 100%);
  border-top: 2px solid var(--pg60-primary);
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  z-index: 1000;
  box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.5);
}
.pg60-bottom-nav-btn {
  flex: 1;
  min-width: 60px;
  min-height: 60px;
  background: transparent;
  border: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: var(--pg60-text-muted);
  text-decoration: none;
  cursor: pointer;
  transition: color var(--pg60-transition), transform var(--pg60-transition);
  position: relative;
  padding: 4px 2px;
}
.pg60-bottom-nav-btn i,
.pg60-bottom-nav-btn .material-icons-outlined,
.pg60-bottom-nav-btn .ion,
.pg60-bottom-nav-btn .bi {
  font-size: 22px;
  transition: transform var(--pg60-transition), color var(--pg60-transition);
}
.pg60-bottom-nav-btn span {
  font-size: 10px;
  font-weight: 600;
}
.pg60-bottom-nav-btn:hover,
.pg60-bottom-nav-btn:focus,
.pg60-bottom-nav-btn.pg60-active {
  color: var(--pg60-primary);
}
.pg60-bottom-nav-btn:hover i,
.pg60-bottom-nav-btn.pg60-active i,
.pg60-bottom-nav-btn:hover .material-icons-outlined,
.pg60-bottom-nav-btn.pg60-active .material-icons-outlined,
.pg60-bottom-nav-btn:hover .ion,
.pg60-bottom-nav-btn.pg60-active .ion {
  transform: scale(1.18);
}
.pg60-bottom-nav-btn.pg60-active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--pg60-primary), var(--pg60-accent));
}
.pg60-bottom-nav-btn.pg60-badge::after {
  content: "";
  position: absolute;
  top: 6px;
  right: calc(50% - 16px);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pg60-danger);
  box-shadow: 0 0 6px var(--pg60-danger);
}
.pg60-bottom-nav-btn:hover {
  transform: translateY(-2px);
}

/* Floating action button (mobile) */
.pg60-fab {
  position: fixed;
  right: 14px;
  bottom: 76px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pg60-primary), var(--pg60-accent));
  color: var(--pg60-bg);
  border: 0;
  box-shadow: var(--pg60-shadow-glow);
  font-size: 22px;
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pg60-fab:hover {
  transform: scale(1.08);
}

/* Toast */
.pg60-toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(38, 38, 38, 0.96);
  border: 1px solid var(--pg60-primary);
  color: var(--pg60-text);
  padding: 10px 16px;
  border-radius: 24px;
  font-size: 1.25rem;
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
}
.pg60-toast.pg60-show {
  opacity: 1;
  transform: translate(-50%, -6px);
}

/* Desktop: hide bottom nav and FAB, show desktop nav */
@media (min-width: 769px) {
  .pg60-bottom-nav,
  .pg60-fab {
    display: none;
  }
  .pg60-footer {
    padding-bottom: 30px;
  }
}

/* Mobile bottom padding to clear fixed bottom nav */
@media (max-width: 768px) {
  .pg60-main {
    padding-bottom: 84px;
  }
}

/* Small phone tweaks */
@media (max-width: 360px) {
  .pg60-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
  }
  .pg60-card-name {
    font-size: 1.05rem;
  }
  .pg60-section-title {
    font-size: 1.8rem;
  }
}
