/* =========================================================
 * linkbet.click - style-a67d.css
 * All custom classes use the "pga6-" prefix.
 * Palette: #1E1E1E (bg) / #34495E (deep slate) + accent gold.
 * Mobile-first: max-width 430px, scales up to desktop.
 * =======================================================*/

:root {
  --pga6-bg:        #1E1E1E;
  --pga6-bg-2:      #181818;
  --pga6-slate:     #34495E;
  --pga6-slate-2:   #2c3e50;
  --pga6-card:      #262626;
  --pga6-card-2:    #2f2f2f;
  --pga6-text:      #f3f4f6;
  --pga6-muted:     #b7b9c2;
  --pga6-gold:      #f5c542;
  --pga6-gold-2:    #e0a82e;
  --pga6-red:       #e0455a;
  --pga6-green:     #36c98f;
  --pga6-line:      rgba(255,255,255,.08);
  --pga6-radius:    14px;
  --pga6-shadow:    0 8px 28px rgba(0,0,0,.35);
  --pga6-header-h:  60px;
  --pga6-nav-h:     62px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--pga6-bg);
  color: var(--pga6-text);
  font-family: "Segoe UI", "Roboto", "Helvetica Neue", Arial,
               "Be Vietnam Pro", "Noto Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--pga6-gold); text-decoration: none; }
a:hover { text-decoration: underline; }

.pga6-wrap { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 14px; }
.pga6-section { padding: 36px 0; }
.pga6-eyebrow {
  display: inline-block; font-size: 12px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--pga6-gold);
  background: rgba(245,197,66,.08); padding: 4px 10px; border-radius: 999px;
}
.pga6-h2 {
  font-size: 24px; line-height: 1.3; margin: 12px 0 6px; font-weight: 800;
}
.pga6-lead { color: var(--pga6-muted); margin: 0 0 18px; }

/* ============ Header ============ */
.pga6-header {
  position: sticky; top: 0; z-index: 1000;
  background: linear-gradient(180deg, #1a1a1a, #141414);
  border-bottom: 1px solid var(--pga6-line);
  backdrop-filter: blur(8px);
}
.pga6-header-row {
  height: var(--pga6-header-h);
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px;
}
.pga6-brand { display: flex; align-items: center; gap: 10px; min-width: 0; }
.pga6-brand-logo {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--pga6-gold), var(--pga6-gold-2));
  display: flex; align-items: center; justify-content: center;
  color: #1a1a1a; font-weight: 900; font-size: 18px;
}
.pga6-brand-name { font-weight: 800; font-size: 18px; letter-spacing: .02em; }
.pga6-brand-name span { color: var(--pga6-gold); }
.pga6-header-actions { display: flex; align-items: center; gap: 8px; }

.pga6-btn {
  display: inline-flex; align-items: center; gap: 6px;
  border: 0; cursor: pointer; font-weight: 700;
  border-radius: 10px; padding: 9px 14px; font-size: 14px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  text-decoration: none;
}
.pga6-btn:hover { text-decoration: none; transform: translateY(-1px); }
.pga6-btn-primary {
  background: linear-gradient(135deg, var(--pga6-gold), var(--pga6-gold-2));
  color: #1a1a1a; box-shadow: 0 4px 14px rgba(245,197,66,.25);
}
.pga6-btn-ghost {
  background: rgba(255,255,255,.06); color: var(--pga6-text);
  border: 1px solid var(--pga6-line);
}
.pga6-btn-block { width: 100%; justify-content: center; padding: 12px 16px; }

.pga6-menu-btn {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(255,255,255,.06); border: 1px solid var(--pga6-line);
  color: var(--pga6-text); display: inline-flex;
  align-items: center; justify-content: center; cursor: pointer;
  font-size: 22px;
}

/* ============ Top nav (desktop) ============ */
.pga6-topnav {
  display: none; gap: 4px; align-items: center; flex: 1;
  margin-left: 14px;
}
.pga6-topnav a {
  color: var(--pga6-muted); font-size: 14px; font-weight: 600;
  padding: 8px 12px; border-radius: 8px;
}
.pga6-topnav a:hover { color: var(--pga6-text); background: rgba(255,255,255,.05); text-decoration: none; }

/* ============ Mobile slide menu ============ */
.pga6-menu-mask {
  position: fixed; inset: 0; background: rgba(0,0,0,.55);
  opacity: 0; pointer-events: none; transition: opacity .2s ease; z-index: 9998;
}
.pga6-mask-show { opacity: 1; pointer-events: auto; }
.pga6-mobile-menu {
  position: fixed; top: 0; left: 0; bottom: 0; width: 80%; max-width: 320px;
  background: #161616; z-index: 9999; transform: translateX(-100%);
  transition: transform .25s ease; padding: 18px 16px; overflow-y: auto;
  border-right: 1px solid var(--pga6-line);
}
.pga6-menu-open { transform: translateX(0); }
.pga6-menu-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.pga6-menu-head .pga6-brand-name { font-size: 20px; }
.pga6-menu-close {
  width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.06);
  border: 1px solid var(--pga6-line); color: var(--pga6-text); cursor: pointer;
  font-size: 18px;
}
.pga6-menu-section { margin: 12px 0; }
.pga6-menu-title {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--pga6-muted); margin: 14px 6px 6px;
}
.pga6-menu-link {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 10px; color: var(--pga6-text);
  font-weight: 600; font-size: 15px;
}
.pga6-menu-link:hover { background: rgba(255,255,255,.05); text-decoration: none; }
.pga6-menu-link i { color: var(--pga6-gold); font-size: 18px; width: 22px; text-align: center; }

/* ============ Hero ============ */
.pga6-hero {
  position: relative; padding: 26px 0 20px;
  background:
    radial-gradient(900px 380px at 80% -10%, rgba(245,197,66,.15), transparent 60%),
    radial-gradient(700px 320px at -10% 10%, rgba(52,73,94,.55), transparent 60%);
}
.pga6-hero-grid { display: grid; gap: 18px; }
.pga6-hero-title {
  font-size: 30px; line-height: 1.15; font-weight: 900; margin: 10px 0 8px;
}
.pga6-hero-title em { color: var(--pga6-gold); font-style: normal; }
.pga6-hero-sub { color: var(--pga6-muted); font-size: 15px; margin: 0 0 16px; }
.pga6-hero-cta { display: flex; flex-wrap: wrap; gap: 10px; }
.pga6-hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 18px;
}
.pga6-stat-card {
  background: var(--pga6-card); border: 1px solid var(--pga6-line);
  border-radius: 12px; padding: 12px 8px; text-align: center;
}
.pga6-stat-num { font-size: 20px; font-weight: 900; color: var(--pga6-gold); }
.pga6-stat-label { font-size: 11px; color: var(--pga6-muted); margin-top: 2px; }

/* ============ Carousel ============ */
.pga6-carousel {
  position: relative; border-radius: var(--pga6-radius); overflow: hidden;
  box-shadow: var(--pga6-shadow); margin-top: 6px;
}
.pga6-carousel-track { position: relative; }
.pga6-carousel-slide {
  display: none; position: relative; padding: 22px 18px; min-height: 170px;
  background: linear-gradient(135deg, #3a2a12, #1a1a1a);
  border: 1px solid var(--pga6-line); border-radius: var(--pga6-radius);
}
.pga6-slide-active { display: block; }
.pga6-slide-tag {
  display: inline-block; font-size: 11px; font-weight: 700; color: #1a1a1a;
  background: var(--pga6-gold); padding: 4px 10px; border-radius: 999px;
  margin-bottom: 8px;
}
.pga6-slide-title { font-size: 20px; font-weight: 800; margin: 0 0 4px; }
.pga6-slide-text { font-size: 13px; color: var(--pga6-muted); margin: 0 0 12px; }
.pga6-carousel-dots {
  position: absolute; bottom: 10px; right: 14px;
  display: flex; gap: 6px;
}
.pga6-carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.35); cursor: pointer; border: 0; padding: 0;
}
.pga6-dot-active { background: var(--pga6-gold); }

/* ============ Category filter ============ */
.pga6-filter-bar {
  display: flex; gap: 8px; overflow-x: auto; padding: 6px 0 14px;
  -webkit-overflow-scrolling: touch;
}
.pga6-filter-bar::-webkit-scrollbar { display: none; }
.pga6-filter-btn {
  flex: 0 0 auto; border: 1px solid var(--pga6-line); background: var(--pga6-card);
  color: var(--pga6-muted); padding: 8px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 700; cursor: pointer; white-space: nowrap;
}
.pga6-filter-btn:hover { color: var(--pga6-text); }
.pga6-filter-active {
  background: linear-gradient(135deg, var(--pga6-gold), var(--pga6-gold-2));
  color: #1a1a1a; border-color: transparent;
}

/* ============ Section header ============ */
.pga6-sec-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 10px; margin-bottom: 16px;
}
.pga6-sec-head .pga6-h2 { margin: 8px 0 0; }
.pga6-sec-link { font-size: 13px; font-weight: 700; color: var(--pga6-gold); }

/* ============ Game grid ============ */
.pga6-game-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.pga6-game-card {
  position: relative; background: var(--pga6-card);
  border: 1px solid var(--pga6-line); border-radius: 12px; overflow: hidden;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  display: flex; flex-direction: column;
}
.pga6-game-card:hover {
  transform: translateY(-3px); border-color: rgba(245,197,66,.4);
  box-shadow: 0 10px 24px rgba(0,0,0,.35);
}
.pga6-game-thumb {
  position: relative; aspect-ratio: 1 / 1; background: #111; overflow: hidden;
}
.pga6-game-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pga6-game-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .15s ease;
}
.pga6-game-card:hover .pga6-game-overlay { opacity: 1; }
.pga6-game-play {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--pga6-gold); color: #1a1a1a; display: flex;
  align-items: center; justify-content: center; font-size: 18px;
}
.pga6-game-badge {
  position: absolute; top: 6px; left: 6px; font-size: 10px; font-weight: 800;
  background: var(--pga6-red); color: #fff; padding: 3px 7px; border-radius: 6px;
  letter-spacing: .04em;
}
.pga6-game-badge.hot { background: linear-gradient(135deg, #ff7a3c, #e0455a); }
.pga6-game-badge.new { background: var(--pga6-green); }
.pga6-game-name {
  font-size: 12px; font-weight: 700; padding: 8px 8px 10px; text-align: center;
  line-height: 1.3;
}

/* ============ Featured (big card) ============ */
.pga6-featured {
  display: grid; gap: 12px;
}
.pga6-feature-card {
  position: relative; border-radius: var(--pga6-radius); overflow: hidden;
  border: 1px solid var(--pga6-line); background: var(--pga6-card);
}
.pga6-feature-card img { width: 100%; height: 160px; object-fit: cover; }
.pga6-feature-body { padding: 14px; }
.pga6-feature-title { font-size: 18px; font-weight: 800; margin: 0 0 4px; }
.pga6-feature-text { font-size: 13px; color: var(--pga6-muted); margin: 0 0 10px; }

/* ============ Promo CTA banner ============ */
.pga6-cta {
  background: linear-gradient(135deg, var(--pga6-slate), #1d2a36);
  border: 1px solid var(--pga6-line); border-radius: var(--pga6-radius);
  padding: 22px 18px; text-align: center;
}
.pga6-cta h3 { margin: 0 0 6px; font-size: 22px; }
.pga6-cta p { margin: 0 0 14px; color: var(--pga6-muted); font-size: 14px; }

/* ============ SEO long text ============ */
.pga6-prose { color: var(--pga6-muted); font-size: 15px; line-height: 1.8; }
.pga6-prose h2 { color: var(--pga6-text); font-size: 22px; margin: 22px 0 8px; }
.pga6-prose h3 { color: var(--pga6-text); font-size: 18px; margin: 18px 0 6px; }
.pga6-prose p { margin: 0 0 12px; }
.pga6-prose ul { padding-left: 20px; margin: 0 0 14px; }
.pga6-prose li { margin: 0 0 6px; }
.pga6-prose strong { color: var(--pga6-text); }
.pga6-prose a { color: var(--pga6-gold); }

/* ============ Steps ============ */
.pga6-steps { display: grid; gap: 10px; counter-reset: step; }
.pga6-step {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--pga6-card); border: 1px solid var(--pga6-line);
  border-radius: 12px; padding: 14px;
}
.pga6-step-num {
  flex: 0 0 34px; width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pga6-gold), var(--pga6-gold-2));
  color: #1a1a1a; display: flex; align-items: center; justify-content: center;
  font-weight: 900;
}
.pga6-step-title { font-weight: 800; margin: 0 0 2px; }
.pga6-step-text { font-size: 13px; color: var(--pga6-muted); margin: 0; }

/* ============ FAQ ============ */
.pga6-faq { display: grid; gap: 8px; }
.pga6-faq-item {
  background: var(--pga6-card); border: 1px solid var(--pga6-line);
  border-radius: 12px; overflow: hidden;
}
.pga6-faq-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; cursor: pointer; gap: 10px;
}
.pga6-faq-header h4 { margin: 0; font-size: 15px; font-weight: 700; }
.pga6-faq-icon { color: var(--pga6-gold); font-size: 18px; transition: transform .2s ease; }
.pga6-faq-open .pga6-faq-icon { transform: rotate(45deg); }
.pga6-faq-body {
  max-height: 0; overflow: hidden; transition: max-height .25s ease;
  padding: 0 16px; color: var(--pga6-muted); font-size: 14px;
}
.pga6-faq-open .pga6-faq-body { max-height: 400px; padding: 0 16px 14px; }

/* ============ Footer ============ */
.pga6-footer {
  background: #141414; border-top: 1px solid var(--pga6-line);
  padding: 30px 0 18px;
}
.pga6-footer-grid { display: grid; gap: 18px; }
.pga6-footer h4 { font-size: 14px; margin: 0 0 10px; color: var(--pga6-text); }
.pga6-footer ul { list-style: none; padding: 0; margin: 0; }
.pga6-footer li { margin: 0 0 6px; }
.pga6-footer a { color: var(--pga6-muted); font-size: 13px; }
.pga6-footer a:hover { color: var(--pga6-gold); }
.pga6-footer-bottom {
  border-top: 1px solid var(--pga6-line); margin-top: 18px; padding-top: 14px;
  text-align: center; color: var(--pga6-muted); font-size: 12px;
}
.pga6-pay-row {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px;
}
.pga6-pay-chip {
  font-size: 11px; color: var(--pga6-muted); background: var(--pga6-card);
  border: 1px solid var(--pga6-line); border-radius: 6px; padding: 4px 8px;
}

/* ============ Back to top ============ */
.pga6-backtop {
  position: fixed; right: 14px; bottom: calc(var(--pga6-nav-h) + 14px);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--pga6-gold); color: #1a1a1a; border: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; cursor: pointer; z-index: 900;
  opacity: 0; pointer-events: none; transition: opacity .2s ease;
  box-shadow: var(--pga6-shadow);
}
.pga6-backtop-show { opacity: 1; pointer-events: auto; }

/* ============ Mobile bottom nav ============ */
.pga6-bottomnav {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1000;
  height: var(--pga6-nav-h);
  background: linear-gradient(180deg, #1a1a1a, #0e0e0e);
  border-top: 1px solid var(--pga6-line);
  display: flex; justify-content: space-around; align-items: stretch;
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.pga6-bottomnav button, .pga6-bottomnav a {
  flex: 1 1 0; min-width: 60px; min-height: 60px;
  background: none; border: 0; color: var(--pga6-muted);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px; font-size: 11px; font-weight: 700; text-decoration: none;
  padding: 6px 2px; cursor: pointer; position: relative;
}
.pga6-bottomnav button:hover, .pga6-bottomnav a:hover { text-decoration: none; color: var(--pga6-text); }
.pga6-bottomnav .pga6-nav-icon { font-size: 22px; line-height: 1; }
.pga6-bottomnav .pga6-nav-center .pga6-nav-icon {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pga6-gold), var(--pga6-gold-2));
  color: #1a1a1a; display: flex; align-items: center; justify-content: center;
  margin-top: -22px; box-shadow: 0 4px 14px rgba(245,197,66,.3); font-size: 24px;
}
.pga6-bottomnav .pga6-nav-active { color: var(--pga6-gold); }

main { padding-bottom: 80px; }

/* ============ Tablet / desktop ============ */
@media (min-width: 640px) {
  .pga6-game-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; }
  .pga6-hero-title { font-size: 38px; }
  .pga6-hero-stats { grid-template-columns: repeat(3, 1fr); max-width: 520px; }
}
@media (min-width: 769px) {
  .pga6-topnav { display: flex; }
  .pga6-menu-btn { display: none; }
  .pga6-bottomnav { display: none; }
  main { padding-bottom: 0; }
  .pga6-game-grid { grid-template-columns: repeat(6, 1fr); }
  .pga6-featured { grid-template-columns: repeat(3, 1fr); }
  .pga6-hero-grid { grid-template-columns: 1.2fr .8fr; align-items: center; }
  .pga6-footer-grid { grid-template-columns: repeat(4, 1fr); }
  .pga6-backtop { bottom: 24px; }
}
@media (min-width: 992px) {
  .pga6-game-grid { grid-template-columns: repeat(6, 1fr); }
  .pga6-section { padding: 50px 0; }
  .pga6-hero-title { font-size: 44px; }
}

/* ============ Utility ============ */
.pga6-hide-mobile { display: none; }
@media (min-width: 769px) { .pga6-hide-mobile { display: block; } }
.pga6-center { text-align: center; }
.pga6-mt-16 { margin-top: 16px; }
