/*
Theme Name: AC玩扑克
Theme URI: https://www.acpoker.com
Author: AC玩扑克
Author URI: https://www.acpoker.com
Description: AC玩扑克官方WordPress主题 - 专业德州扑克竞技平台高端暗色主题，金色点缀，响应式设计，支持全平台展示。
Version: 1.0
License: GPL v2 or later
Text Domain: acpoker
Domain Path: /languages
Tags: dark-theme, gold-accent, responsive, poker, gaming, one-column, custom-header, featured-images
*/

/* ============================================================
   AC玩扑克 - 高端官网样式表
   Premium Dark Poker Theme with Gold Accents
   Version: 1.0 (WordPress)
   ============================================================ */

/* === CSS Custom Properties === */
:root {
  /* Core Colors */
  --bg-primary: #0a0a0f;
  --bg-secondary: #111118;
  --bg-card: #16161f;
  --bg-card-hover: #1c1c28;
  --bg-nav: rgba(10, 10, 18, 0.92);

  /* Gold Accents */
  --gold-primary: #c8a45a;
  --gold-light: #e0c878;
  --gold-dark: #a07830;
  --gold-glow: rgba(200, 164, 90, 0.18);

  /* Text Colors */
  --text-white: #f0ede5;
  --text-primary: #d4d0c8;
  --text-secondary: #9a9790;
  --text-muted: #6b6862;

  /* Accent Colors */
  --green-accent: #4caf7c;
  --blue-accent: #4a90d9;
  --purple-accent: #9b59b6;
  --red-accent: #e74c3c;

  /* Spacing */
  --section-pad: 100px 0;
  --container-max: 1200px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Typography */
  --font-heading: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-gold: 0 0 40px rgba(200, 164, 90, 0.15);
  --shadow-hero: 0 4px 60px rgba(0, 0, 0, 0.6);

  /* Transitions */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --transition-fast: 0.2s var(--ease-out);
  --transition-base: 0.35s var(--ease-out);
  --transition-slow: 0.6s var(--ease-in-out);

  /* Border */
  --border-color: rgba(255, 255, 255, 0.05);
}

/* === CSS Reset & Base === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.75;
  overflow-x: hidden;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-primary); text-decoration: none; transition: var(--transition-fast); }
a:hover { color: var(--gold-light); }
button { cursor: pointer; font-family: var(--font-body); border: none; outline: none; }
ul, ol { list-style: none; }

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-white);
  line-height: 1.3;
  font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }

.gold { color: var(--gold-primary); }

/* === Layout Container === */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* === Section Layout === */
.section { padding: var(--section-pad); position: relative; }
.section-dark { background: var(--bg-secondary); }
.section-glow {
  background: radial-gradient(ellipse at 30% 20%, rgba(200,164,90,0.04) 0%, transparent 60%),
              var(--bg-secondary);
}
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--gold-primary);
  margin-bottom: 16px;
  position: relative;
  padding-left: 28px;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 1.5px;
  background: var(--gold-primary);
  transform: translateY(-50%);
}
.section-title {
  margin-bottom: 16px;
  text-align: center;
}
.section-subtitle {
  max-width: 680px;
  margin: 0 auto 48px;
  text-align: center;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.9;
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-primary);
  margin-bottom: 12px;
}
.section-desc {
  max-width: 680px;
  margin: 16px auto 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-nav);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition-fast);
}
.admin-bar .header { top: 32px; }
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-white);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.logo-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
  border-radius: var(--radius-sm);
  color: var(--bg-primary);
  font-weight: 900;
  font-size: 0.85rem;
  box-shadow: 0 2px 12px rgba(200,164,90,0.3);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 500;
  transition: var(--transition-fast);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active,
.nav-links .current-menu-item > a,
.nav-links .current_page_item > a {
  color: var(--text-white);
  background: rgba(255,255,255,0.06);
}
.nav-download-btn {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark)) !important;
  color: #1a1a1a !important;
  font-weight: 700 !important;
  padding: 8px 18px !important;
  margin-left: 8px;
  border-radius: 6px !important;
  box-shadow: 0 2px 12px rgba(200,164,90,0.25);
}
.nav-download-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200,164,90,0.35);
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 6px;
  z-index: 1001;
}
.menu-toggle span {
  width: 26px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* ============================================================
   HERO SECTION (首页)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(10,10,15,0.5) 0%, rgba(10,10,15,0.85) 60%, var(--bg-primary) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 120px 24px 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,164,90,0.12);
  border: 1px solid rgba(200,164,90,0.25);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--gold-light);
  margin-bottom: 28px;
  animation: fadeInUp 0.8s var(--ease-out);
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: #4caf50;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
.hero-content h1 {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  margin-bottom: 24px;
  line-height: 1.15;
  animation: fadeInUp 0.8s var(--ease-out) 0.15s both;
}
.hero-content h1 .highlight {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 36px;
  animation: fadeInUp 0.8s var(--ease-out) 0.3s both;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s var(--ease-out) 0.45s both;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s var(--ease-out) 0.6s both;
}
.hero-stat {
  text-align: center;
}
.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-primary);
  font-family: var(--font-heading);
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  transition: var(--transition-base);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-lg { padding: 16px 40px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.88rem; }
.btn-primary {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: #1a1a1a;
  box-shadow: 0 4px 20px rgba(200,164,90,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(200,164,90,0.45);
  color: #1a1a1a;
}
.btn-green {
  background: linear-gradient(135deg, #4caf7c, #388e5c);
  color: #fff;
  box-shadow: 0 4px 20px rgba(76,175,124,0.25);
}
.btn-green:hover { transform: translateY(-2px); color: #fff; }
.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.25);
  color: var(--text-white);
}
.btn-outline:hover {
  border-color: var(--gold-primary);
  background: rgba(200,164,90,0.08);
  transform: translateY(-2px);
  color: var(--gold-primary);
}

/* ============================================================
   PAGE HERO (子页面通用)
   ============================================================ */
.page-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 68px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(10,10,15,0.6) 0%, rgba(10,10,15,0.85) 50%, var(--bg-secondary) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  padding: 80px 24px 60px;
}
.page-hero-content h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 20px;
  animation: fadeInUp 0.7s var(--ease-out);
}
.page-hero-content p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.9;
  animation: fadeInUp 0.7s var(--ease-out) 0.15s both;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  margin-bottom: 20px;
  color: var(--text-muted);
  animation: fadeInUp 0.7s var(--ease-out);
  padding: 16px 0 0;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold-primary); }
.breadcrumb .current { color: var(--gold-primary); }

/* ============================================================
   FEATURES GRID (核心功能 / 卡片)
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  opacity: 0;
  transition: var(--transition-base);
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200,164,90,0.2);
  box-shadow: var(--shadow-gold);
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover h3 { color: var(--gold-primary); }

.feature-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.feature-icon.gold { background: rgba(200,164,90,0.12); color: var(--gold-primary); }
.feature-icon.green { background: rgba(76,175,124,0.12); color: var(--green-accent); }
.feature-icon.blue { background: rgba(74,144,217,0.12); color: var(--blue-accent); }
.feature-icon.purple { background: rgba(155,89,182,0.12); color: var(--purple-accent); }
.feature-icon.red { background: rgba(231,76,60,0.12); color: var(--red-accent); }

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  transition: var(--transition-fast);
}
.feature-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.8;
}

/* ============================================================
   DOWNLOAD CARDS
   ============================================================ */
.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.download-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition-base);
}
.download-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(200,164,90,0.15);
}
.platform-icon { font-size: 2.8rem; margin-bottom: 16px; }
.download-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.download-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Platform Detail Cards */
.platform-detail {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: var(--transition-base);
}
.platform-detail:hover {
  border-color: rgba(200,164,90,0.15);
  box-shadow: var(--shadow-gold);
}
.platform-detail-image {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  object-fit: cover;
  flex-shrink: 0;
}

/* ============================================================
   CLUB CARDS
   ============================================================ */
.community-clubs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.club-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition-base);
}
.club-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(200,164,90,0.2);
}
.club-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.club-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-in-out);
}
.club-card:hover .club-card-image img { transform: scale(1.06); }
.club-card-body { padding: 24px; }
.club-card-body h3 { font-size: 1.15rem; margin-bottom: 10px; }
.club-card-body p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.club-card-meta {
  display: flex;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ============================================================
   TOURNAMENT LIST
   ============================================================ */
.tournament-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}
.tournament-item {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  transition: var(--transition-base);
}
.tournament-item:hover {
  border-color: rgba(200,164,90,0.15);
  box-shadow: var(--shadow-gold);
}
.tournament-date {
  text-align: center;
  min-width: 64px;
  flex-shrink: 0;
}
.tournament-date .day {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-primary);
  line-height: 1;
}
.tournament-date .month { font-size: 0.78rem; color: var(--text-muted); }
.tournament-info { flex: 1; }
.tournament-info h3 { font-size: 1.05rem; margin-bottom: 6px; }
.tournament-info p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}
.tournament-status {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
}
.status-upcoming { background: rgba(200,164,90,0.12); color: var(--gold-light); }
.status-ongoing { background: rgba(76,175,124,0.12); color: var(--green-accent); }
.status-completed { background: rgba(107,104,98,0.12); color: var(--text-muted); }

/* ============================================================
   CHANGELOG TIMELINE
   ============================================================ */
.changelog-timeline { max-width: 800px; margin: 0 auto; }
.changelog-item {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 20px;
  transition: var(--transition-base);
}
.changelog-item:hover {
  border-color: rgba(200,164,90,0.15);
  box-shadow: var(--shadow-gold);
}
.changelog-version {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}
.version-tag {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: #1a1a1a;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 4px 14px;
  border-radius: 6px;
}
.version-date { color: var(--text-muted); font-size: 0.85rem; }
.changelog-changes li {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.8;
  padding: 4px 0 4px 20px;
  position: relative;
}
.changelog-changes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-primary);
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  transition: var(--transition-fast);
}
.faq-item:hover { border-color: rgba(200,164,90,0.12); }
.faq-question {
  width: 100%;
  background: none;
  color: var(--text-white);
  text-align: left;
  padding: 18px 24px;
  font-size: 0.98rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-fast);
}
.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--gold-primary);
  transition: transform 0.3s var(--ease-out);
}
.faq-item.active .faq-question::after {
  content: '\2212';
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-in-out);
}
.faq-item.active .faq-answer { max-height: 600px; }
.faq-answer-content {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.9;
}
.faq-answer-content p { margin-bottom: 8px; }
.faq-answer-content strong { color: var(--text-white); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.about-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  transition: transform 0.6s var(--ease-in-out);
}
.about-image:hover img { transform: scale(1.03); }
.about-text .section-label { margin-bottom: 12px; }
.about-text h2 { margin-bottom: 20px; text-align: left; }
.about-text p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 2;
  margin-bottom: 16px;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.value-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: var(--transition-base);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(200,164,90,0.2);
}
.value-icon { font-size: 2.5rem; margin-bottom: 16px; display: block; }
.value-card h4 { margin-bottom: 10px; }
.value-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.8;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info .section-label { margin-bottom: 8px; }
.contact-info h2 { text-align: left; margin-bottom: 16px; }
.contact-info > p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 32px;
}
.contact-methods { display: flex; flex-direction: column; gap: 20px; }
.contact-method {
  display: flex;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  transition: var(--transition-fast);
}
.contact-method:hover { border-color: rgba(200,164,90,0.15); }
.contact-method-icon { font-size: 1.8rem; flex-shrink: 0; }
.contact-method-text h4 { font-size: 1rem; margin-bottom: 6px; }
.contact-method-text p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
}
.contact-form-wrapper h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.contact-form .form-group { margin-bottom: 20px; }
.contact-form label {
  display: block;
  font-size: 0.88rem;
  color: var(--text-white);
  margin-bottom: 6px;
  font-weight: 500;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-secondary);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  color: var(--text-white);
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: var(--transition-fast);
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(200,164,90,0.1);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form select option { background: var(--bg-secondary); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--bg-card), var(--bg-secondary));
  border: 1px solid rgba(200,164,90,0.1);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: var(--container-max);
  margin: 0 auto;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200,164,90,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-section h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 16px; }
.cta-section p {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.8;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}
.footer-col h4 {
  font-size: 0.9rem;
  color: var(--text-white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.88rem;
  padding: 5px 0;
  transition: var(--transition-fast);
}
.footer-col a:hover { color: var(--gold-primary); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: var(--text-muted);
  font-size: 0.85rem;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: var(--text-muted); font-size: 0.85rem; }
.footer-bottom-links a:hover { color: var(--gold-primary); }

/* ============================================================
   FLOATING CUSTOMER SERVICE (客服悬浮)
   ============================================================ */
.cs-float {
  position: fixed;
  right: 24px;
  bottom: 88px;
  z-index: 9999;
}
.cs-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #1a1a1a;
  box-shadow: 0 4px 24px rgba(200,164,90,0.35);
  transition: var(--transition-base);
  position: relative;
}
.cs-toggle:hover { transform: scale(1.08); }
.cs-dot {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 12px;
  height: 12px;
  background: #4caf50;
  border: 2px solid #1a1a1a;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
.cs-popup {
  position: absolute;
  bottom: 72px;
  right: 0;
  width: 320px;
  background: var(--bg-card);
  border: 1px solid rgba(200,164,90,0.2);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.96);
  transition: all 0.35s var(--ease-in-out);
  overflow: hidden;
}
.cs-float.open .cs-popup {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.cs-popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: linear-gradient(135deg, rgba(200,164,90,0.15), rgba(200,164,90,0.05));
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.cs-popup-header h4 { font-size: 0.95rem; }
.cs-popup-close {
  background: none;
  color: var(--text-muted);
  font-size: 1.1rem;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}
.cs-popup-close:hover { background: rgba(255,255,255,0.08); color: var(--text-white); }
.cs-popup-body { padding: 20px; }
.cs-popup-body p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 14px;
}
.cs-tip {
  background: rgba(200,164,90,0.08);
  border: 1px solid rgba(200,164,90,0.15);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--gold-light);
  margin-bottom: 16px;
  line-height: 1.6;
}
.cs-wechat-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-secondary);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
}
.wechat-label { display: block; font-size: 0.75rem; color: var(--text-muted); }
.wechat-id { font-size: 1rem; font-weight: 700; color: var(--gold-primary); }
.btn-copy {
  padding: 8px 16px;
  background: linear-gradient(135deg, #4caf7c, #388e5c);
  color: #fff;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition-fast);
}
.btn-copy:hover { transform: scale(1.04); }
.btn-copy.copied { background: #666; }
.cs-popup-footer {
  padding: 12px 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
  z-index: 999;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover {
  background: var(--gold-primary);
  color: #1a1a1a;
  border-color: var(--gold-primary);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   IMAGE BANNER SECTION
   ============================================================ */
.img-banner {
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 48px;
  box-shadow: var(--shadow-card);
}
.img-banner img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
}

/* ============================================================
   SYSTEM REQUIREMENTS TABLE
   ============================================================ */
.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.req-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition-base);
}
.req-card:hover {
  border-color: rgba(200,164,90,0.15);
  box-shadow: var(--shadow-gold);
}
.req-card h4 { margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.req-card p { color: var(--text-secondary); font-size: 0.88rem; line-height: 2; }
.req-card-icon { font-size: 1.8rem; }

/* ============================================================
   COMMUNITY BENEFITS
   ============================================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.benefit-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: var(--transition-base);
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(200,164,90,0.2);
}
.benefit-icon { font-size: 2.6rem; margin-bottom: 16px; display: block; }
.benefit-card h3 { margin-bottom: 10px; }
.benefit-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.8; }

/* ============================================================
   HOW TO JOIN STEPS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  counter-reset: step;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: var(--transition-base);
  counter-increment: step;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(200,164,90,0.2);
}
.step-card::after {
  content: '0' counter(step);
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(200,164,90,0.08);
  line-height: 1;
}
.step-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.step-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.8; }

/* ============================================================
   MILESTONE CARDS
   ============================================================ */
.milestones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.milestone-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-left: 3px solid var(--gold-primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 28px;
  transition: var(--transition-base);
}
.milestone-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-gold);
}
.milestone-card h3 {
  font-size: 1.1rem;
  color: var(--gold-primary);
  margin-bottom: 8px;
}
.milestone-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.8; }

/* ============================================================
   ARTICLE PAGES
   ============================================================ */
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 56px;
  padding: 60px 0;
  align-items: start;
}
.article-main {
  min-width: 0;
  max-width: 100%;
}
.article-hero-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 32px;
  box-shadow: 0 8px 40px rgba(0,0,0,.35);
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}
.article-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  font-size: 0.88rem;
}
.article-meta-item svg { width: 16px; height: 16px; color: var(--gold-primary); }
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.article-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 500;
  background: rgba(212,175,55,.1);
  color: var(--gold-primary);
  border: 1px solid rgba(212,175,55,.2);
  text-decoration: none;
  transition: all .25s;
}
.article-tag:hover { background: rgba(212,175,55,.2); }

/* WordPress article body (compatible) */
.article-body,
.entry-content {
  color: var(--text-primary);
  line-height: 1.9;
  font-size: 1.02rem;
}
.article-body h2,
.entry-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 40px 0 16px;
  padding-left: 14px;
  border-left: 3px solid var(--gold-primary);
}
.article-body h3,
.entry-content h3 {
  font-size: 1.2rem;
  margin: 28px 0 12px;
  color: var(--text-primary);
}
.article-body p,
.entry-content p {
  margin-bottom: 18px;
  color: var(--text-secondary);
}
.article-body ul,
.article-body ol,
.entry-content ul,
.entry-content ol {
  margin: 16px 0 20px;
  padding-left: 20px;
  color: var(--text-secondary);
  list-style: disc;
}
.article-body ol,
.entry-content ol {
  list-style: decimal;
}
.article-body li,
.entry-content li {
  margin-bottom: 10px;
}
.article-body strong,
.entry-content strong {
  color: var(--text-primary);
}
.article-body blockquote,
.entry-content blockquote {
  margin: 24px 0;
  padding: 16px 24px;
  border-left: 3px solid var(--gold-primary);
  background: rgba(212,175,55,.05);
  border-radius: 0 8px 8px 0;
  color: var(--text-secondary);
  font-style: italic;
}
.article-body img,
.entry-content img {
  width: 100%;
  border-radius: 12px;
  margin: 24px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
}
.article-body a,
.entry-content a {
  color: var(--gold-primary);
  text-decoration: underline;
}
.article-body a:hover,
.entry-content a:hover {
  color: var(--gold-light);
}

.article-share {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}
.article-share span { color: var(--text-secondary); font-size: 0.9rem; }
.article-share-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-secondary);
  transition: all .25s;
}
.article-share-btn:hover { background: var(--gold-primary); color: #000; border-color: var(--gold-primary); }
.article-share-btn svg { width: 16px; height: 16px; }

/* Article Sidebar */
.article-sidebar { position: sticky; top: 100px; }
.article-sidebar > * { margin-bottom: 28px; }
.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
}
.sidebar-card h4 {
  font-size: 1.05rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
}
.related-article-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
  text-decoration: none;
  transition: all .25s;
}
.related-article-item:last-child { border-bottom: none; }
.related-article-item:hover { opacity: .8; }
.related-article-thumb {
  width: 72px; height: 56px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.related-article-info h5 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.related-article-info span {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
}
.sidebar-cta {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  color: #000;
}
.sidebar-cta h4 { color: #000; font-size: 1rem; margin-bottom: 8px; }
.sidebar-cta p { font-size: 0.82rem; opacity: .85; margin-bottom: 16px; }
.sidebar-cta .btn { color: #000; border-color: #000; }
.sidebar-cta .btn:hover { background: #000; color: var(--gold-primary); }

/* Article listing grid */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.article-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  color: var(--text-primary);
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(212,175,55,.08);
}
.article-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.article-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.article-card-category {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  margin-bottom: 10px;
  background: rgba(212,175,55,.12);
  color: var(--gold-primary);
  width: fit-content;
}
.article-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.5;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-card p {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
  margin-bottom: 0;
}
.article-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  font-size: 0.76rem;
  color: var(--text-muted);
}

/* WordPress content alignment */
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignleft { float: left; margin-right: 20px; margin-bottom: 20px; }
.alignright { float: right; margin-left: 20px; margin-bottom: 20px; }
.wp-caption { max-width: 100%; margin-bottom: 20px; }
.wp-caption-text { font-size: 0.85rem; color: var(--text-muted); text-align: center; margin-top: 8px; }
.screen-reader-text { border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; word-wrap: normal; }

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}
.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}
.pagination a:hover,
.pagination .current {
  background: var(--gold-primary);
  color: #1a1a1a;
  border-color: var(--gold-primary);
}

/* ============================================================
   COPY TOAST
   ============================================================ */
.copy-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--gold-primary);
  color: #000;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 10000;
  opacity: 0;
  transition: all .35s cubic-bezier(.25,.8,.25,1.2);
  box-shadow: 0 6px 28px rgba(212,175,55,.3);
  pointer-events: none;
}
.copy-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-intro { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-stats { gap: 32px; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-pad: 60px 0; }
  .container { padding: 0 20px; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--bg-primary);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    z-index: 1000;
  }
  .nav-links.active { display: flex; }
  .nav-links a { font-size: 1.1rem; padding: 12px 24px; }
  .menu-toggle { display: flex; }
  .header { position: fixed; }

  .hero-content { padding: 100px 20px 60px; }
  .hero-content h1 { font-size: 2rem; }
  .hero-stats { gap: 20px; }
  .stat-number { font-size: 1.5rem; }

  .page-hero { min-height: 280px; }
  .page-hero-content { padding: 60px 20px 50px; }
  .page-hero-content h1 { font-size: 1.7rem; }

  .features-grid { grid-template-columns: 1fr; }
  .community-clubs { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .milestones-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .requirements-grid { grid-template-columns: 1fr; }

  .tournament-item { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .cs-popup { width: 290px; right: -8px; }
  .cta-section { padding: 40px 24px; }
  .articles-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-badge { font-size: 0.78rem; padding: 6px 14px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn-lg { width: 100%; }
  .download-grid { grid-template-columns: 1fr; }
  .changelog-version { flex-direction: column; align-items: flex-start; }
  .cs-float { right: 12px; bottom: 70px; }
  .cs-popup { width: 270px; }
  .back-to-top { right: 12px; bottom: 16px; }
  .platform-detail { padding: 24px; }
}

@media (max-width: 782px) {
  .admin-bar .header { top: 46px; }
}

@media (min-width: 783px) {
  .admin-bar .header { top: 32px; }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
:focus-visible {
  outline: 2px solid var(--gold-primary);
  outline-offset: 2px;
}
