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

:root {
  --primary: #1a2744;
  --primary-dark: #0f172a;
  --primary-light: #2d4a7a;
  --accent: #e09726;
  --accent-dark: #c07d18;
  --text: #1e293b;
  --text-light: #4b5563;
  --bg: #eef0f4;
  --bg-alt: #e4e8ee;
  --bg-dark: #0f172a;
  --border: #d4dae3;
  --shadow: 0 4px 20px rgba(0,0,0,.07);
  --shadow-lg: 0 12px 36px -8px rgba(0,0,0,.12);
  --radius: 12px;
  --max-width: 1200px;
}

html { scroll-behavior: smooth; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.05); }
}

@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes shellEject {
  0%   { transform: translate(0,0) rotate(0); opacity: 1; }
  100% { transform: translate(60px,-80px) rotate(180deg); opacity: 0; }
}

@keyframes breakOpen {
  0%   { transform: rotate(0); }
  50%  { transform: rotate(-18deg); }
  100% { transform: rotate(0); }
}

@keyframes loadShell {
  0%   { transform: translate(0,-30px) scale(.6); opacity: 0; }
  60%  { transform: translate(0,0) scale(1); opacity: 1; }
  100% { transform: translate(0,0) scale(1); opacity: 1; }
}

@keyframes shootFlash {
  0%   { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(3); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.shotgun-anim {
  position: absolute;
  bottom: 40px;
  right: 60px;
  width: 180px;
  height: 220px;
  z-index: 2;
  pointer-events: none;
  opacity: .5;
}
.shotgun-anim svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.shotgun-anim .barrel {
  transform-origin: 90px 180px;
  animation: breakOpen 2.4s ease-in-out infinite;
}
.shotgun-anim .shell-eject {
  transform-origin: 80px 140px;
  animation: shellEject .6s ease-in 1.2s infinite;
}
.shotgun-anim .shell-load {
  transform-origin: 80px 140px;
  animation: loadShell .6s ease-out .1s infinite;
}
.shotgun-anim .flash {
  transform-origin: 90px 70px;
  animation: shootFlash .4s ease-out infinite;
  animation-delay: 2.6s;
}

@media (max-width: 768px) {
  .shotgun-anim { display: none; }
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-light); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: .9375rem;
  font-weight: 600;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all .25s;
  text-align: center;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-dark); color: #fff; }

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

.section {
  padding: 80px 0;
}

.section-alt { background: var(--bg-alt); }
.section-dark .stat-item h3 { color: #d4a017; }

.section-dark {
  background: var(--bg-dark);
  color: #fff;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 600px;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header .section-subtitle { margin: 0 auto; }

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
}

.logo img { height: 42px; width: auto; }

.nav { display: flex; align-items: center; gap: 4px; }

.nav a {
  font-size: .9375rem;
  font-weight: 500;
  color: var(--text);
  padding: 10px 20px;
  border-radius: 100px;
  transition: all .2s;
}

.nav a:hover { background: var(--bg-alt); color: var(--primary); }
.nav a.active { background: var(--primary); color: #fff; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text);
  padding: 4px;
}

.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,18,36,.9) 0%, rgba(26,39,68,.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 720px;
  text-align: center;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 32px;
  opacity: .9;
}

.hero-search {
  display: flex;
  gap: 0;
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  border-radius: 100px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-search input {
  flex: 1;
  border: none;
  padding: 16px 20px;
  font-size: 1rem;
  outline: none;
}

.hero-search button {
  padding: 16px 32px;
  background: var(--accent);
  color: #fff;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background .2s;
}

.hero-search button:hover { background: var(--accent-dark); }

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
}

.hero-stat h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #d4a017;
}

.hero-stat p {
  font-size: .875rem;
  opacity: .75;
  margin-bottom: 0;
}

.grounds-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.ground-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .3s;
  border: none;
}

.ground-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.ground-card-img {
  height: 200px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}

.ground-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  background: #f0f2f5;
}

.ground-card-body {
  padding: 24px;
}

.ground-card-body h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.ground-card-body .location {
  font-size: .875rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.ground-card-body .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.tag {
  padding: 4px 12px;
  font-size: .75rem;
  font-weight: 600;
  background: var(--bg-alt);
  border-radius: 100px;
  color: var(--primary);
}

.ground-card-body p {
  font-size: .875rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.5;
}

.ground-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 20px;
  margin-bottom: 16px;
  font-size: .8125rem;
  color: var(--text-light);
}
.ground-specs span {
  line-height: 1.6;
}
.ground-specs strong {
  color: var(--text);
}
.gun-spec {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  width: 100%;
}
.gun-pill {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 2px 10px;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 600;
  line-height: 1.5;
  white-space: nowrap;
}
.gun-pill--allowed {
  background: #d1fae5;
  color: #065f46;
}
.gun-pill--denied {
  background: #fee2e2;
  color: #991b1b;
}

.ground-card-actions {
  display: flex;
  gap: 8px;
}
.ground-card-actions .btn {
  flex: 1;
  font-size: .8125rem;
  padding: 10px 16px;
  text-align: center;
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #d4a017;
  margin-bottom: 4px;
}

.stat-item p {
  font-size: 1rem;
  opacity: .8;
}

.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-preview-content h2 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.about-preview-content p {
  font-size: 1.0625rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.7;
}

.about-preview-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-preview-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.sponsor-bar {
  text-align: center;
  padding: 48px 0;
}
.sponsor-bar p {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-light);
  margin-bottom: 20px;
}
.sponsor-bar a {
  display: inline-block;
  transition: opacity .2s;
}
.sponsor-bar a:hover { opacity: .7; }
.sponsor-bar img {
  height: 48px;
  width: auto;
}

.footer-sponsor {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-sponsor span {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.4);
}
.footer-sponsor img {
  height: 24px;
  width: auto;
  opacity: .7;
  transition: opacity .2s;
}
.footer-sponsor a:hover img { opacity: 1; }

.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1.125rem;
  opacity: .9;
  margin-bottom: 32px;
}

.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.7);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo { color: #fff; margin-bottom: 16px; }
.footer-brand p { font-size: .875rem; line-height: 1.7; }

.footer h4 {
  color: #fff;
  font-size: .875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 16px;
}

.footer ul li { margin-bottom: 10px; }
.footer ul a {
  color: rgba(255,255,255,.7);
  font-size: .875rem;
  transition: color .2s;
}
.footer ul a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8125rem;
}

.page-header {
  padding: 120px 0 64px;
  background: var(--bg-dark);
  color: #fff;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.page-header p {
  font-size: 1.125rem;
  opacity: .85;
  max-width: 560px;
  margin: 0 auto;
}

.page-header--404 {
  background: linear-gradient(135deg, #0f172a 0%, #1a2744 100%);
}

.page-header--privacy {
  background: linear-gradient(135deg, #0f172a 0%, #1a2744 100%);
}

.about-section {
  max-width: 800px;
  margin: 0 auto;
}

.about-section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 32px 0 16px;
}

.about-section p {
  font-size: 1.0625rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-section ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.about-section ul li {
  font-size: 1.0625rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 8px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-details { margin-bottom: 32px; }

.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-alt);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-detail h4 { font-size: .875rem; font-weight: 700; margin-bottom: 2px; }
.contact-detail p { font-size: .875rem; color: var(--text-light); }

.contact-form { background: #fff; padding: 32px; border-radius: 16px; border: none; box-shadow: var(--shadow); }

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  outline: none;
  transition: border-color .2s;
  font-family: inherit;
  background: #fff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.browse-regions { margin-bottom: 32px; padding: 24px; background: var(--bg-alt); border-radius: 12px; border: 1px solid var(--border); }
.browse-regions h2 { font-size: 1.1rem; margin: 0 0 6px; color: var(--primary); }
.browse-regions p { font-size: .875rem; color: var(--text-light); margin: 0 0 16px; }
.region-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.region-list li a { display: inline-block; padding: 6px 14px; background: #fff; border: 1px solid var(--border); border-radius: 100px; font-size: .8125rem; color: var(--text); text-decoration: none; transition: all .2s; }
.region-list li a:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

.faq-list { display: flex; flex-direction: column; gap: 16px; max-width: 720px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 20px 24px; }
.faq-item h3 { font-size: .9375rem; margin: 0 0 6px; color: var(--primary); }
.faq-item p { font-size: .875rem; color: var(--text-light); margin: 0; line-height: 1.6; }

.grounds-toolbar {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.grounds-toolbar input {
  flex: 1;
  min-width: 240px;
  padding: 12px 16px;
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  outline: none;
  transition: border-color .2s;
}

.grounds-toolbar input:focus { border-color: var(--primary); }

.grounds-toolbar select {
  padding: 12px 16px;
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  outline: none;
  background: #fff;
  min-width: 180px;
  transition: border-color .2s;
}

.grounds-toolbar select:focus { border-color: var(--primary); }

.grounds-toolbar-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  width: 100%;
}
.grounds-toolbar-row select {
  flex: 1;
  min-width: 150px;
}

.result-count {
  font-size: .875rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.empty-state {
  text-align: center;
  padding: 80px 24px;
  display: none;
}
.empty-state h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.empty-state p {
  color: var(--text-light);
  margin-bottom: 24px;
}

.ground-card[data-status="premier-plus"] {
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.07), rgba(245, 215, 66, 0.03));
  border: 2px solid #d4a017;
  box-shadow: 0 4px 24px rgba(212, 160, 23, 0.15), var(--shadow);
}
.ground-card[data-status="premier-plus"]::after {
  content: 'Featured';
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 4px 14px;
  font-size: .6875rem;
  font-weight: 800;
  background: linear-gradient(135deg, #b8860b 0%, #f5d742 40%, #d4a017 60%, #b8860b 100%);
  color: #2d1f00;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .08em;
  line-height: 1;
}



.ground-card-body h3 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 0;
}

.ground-card { cursor: pointer; }
.ground-card a, .ground-card button { cursor: pointer; }

.map-toggle { margin-bottom: 16px; }
.grounds-map {
  height: 350px;
  border-radius: 16px;
  margin-bottom: 32px;
  border: 1px solid var(--border);
  z-index: 1;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
}
.detail-image {
  position: relative;
  height: 300px;
  background: var(--bg-alt);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 24px;
  border: none;
  box-shadow: var(--shadow);
}
.detail-image--premier-plus {
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.12), rgba(245, 215, 66, 0.06));
  border: 2px solid #d4a017;
  box-shadow: 0 4px 24px rgba(212, 160, 23, 0.15);
}
.detail-image img {
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
}
.detail-main .card,
.detail-sidebar .card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}
.detail-main .card h2,
.detail-sidebar .card h3 {
  margin-bottom: 12px;
  font-size: 1.125rem;
}
.specs-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.specs-list span {
  font-size: .875rem;
  color: var(--text-light);
}
.specs-list strong {
  color: var(--text);
  display: block;
  font-size: .8125rem;
  margin-bottom: 2px;
}
.detail-sidebar .card h3 { margin-bottom: 16px; }
#detailContactInfo p { margin-bottom: 8px; font-size: .875rem; }
#detailContactInfo a { color: var(--primary); }
#detailActionButtons { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
#detailActionButtons .btn { text-align: center; }

.affiliates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.affiliate-card {
  display: block;
  background: #fff;
  border: none;
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  transition: transform .25s, box-shadow .3s;
  box-shadow: var(--shadow);
}
.affiliate-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.affiliate-card h4 {
  font-size: .875rem;
  margin-bottom: 6px;
  color: var(--primary);
}
.affiliate-card p {
  font-size: .75rem;
  color: var(--text-light);
  line-height: 1.5;
}

.affiliate-links {
  list-style: none;
  padding: 0;
}
.affiliate-links li {
  margin-bottom: 10px;
  font-size: .875rem;
}
.affiliate-links a {
  color: var(--primary);
  text-decoration: none;
}
.affiliate-links a:hover { text-decoration: underline; }

/* ===== REGISTER PAGE ===== */
.reg-page-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}
.reg-page-form { min-width: 0; }
.reg-card-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}
.reg-section-header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}
.reg-section-header h3 { font-size: 1.0625rem; color: var(--primary); margin-bottom: 2px; }
.reg-section-header p { font-size: .8125rem; color: var(--text-light); }
.reg-card-wrap label {
  display: block;
  font-size: .8125rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text);
}
.reg-req { color: #dc2626; }
.reg-card-wrap input[type="text"],
.reg-card-wrap input[type="url"],
.reg-card-wrap input[type="tel"],
.reg-card-wrap input[type="email"],
.reg-card-wrap textarea,
.reg-card-wrap select {
  width: 100%;
  padding: 10px 14px;
  font-size: .875rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  transition: border-color .2s, box-shadow .2s;
  font-family: inherit;
}
.reg-card-wrap input:focus,
.reg-card-wrap textarea:focus,
.reg-card-wrap select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(224, 151, 38, .12);
}
.reg-card-wrap input[aria-invalid="true"],
.reg-card-wrap textarea[aria-invalid="true"] {
  border-color: #dc2626;
}
.reg-field-error {
  display: none;
  font-size: .75rem;
  color: #dc2626;
  margin-top: 4px;
}
.reg-field-error.show { display: block; }
.reg-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 14px;
}
.reg-row-3col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 14px;
}
.reg-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.reg-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: .8125rem;
  cursor: pointer;
  transition: all .2s;
  user-select: none;
}
.reg-chip input { display: none; }
.reg-chip:has(input:checked) {
  background: rgba(224, 151, 38, .1);
  border-color: var(--accent);
  color: var(--accent);
}
.reg-gun-item {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.gun-cap-drop {
  margin-top: 4px;
}
.gun-cap-drop select {
  padding: 4px 10px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: .75rem;
  background: var(--bg);
  color: var(--text);
  cursor: pointer;
  outline: none;
}
.reg-toggle {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 28px;
  flex-shrink: 0;
  cursor: pointer;
}
.reg-toggle input { display: none; }
.reg-toggle-track {
  position: absolute;
  inset: 0;
  background: var(--border);
  border-radius: 14px;
  transition: background .25s;
}
.reg-toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  transition: transform .25s;
  box-shadow: 0 1px 4px rgba(0,0,0,.15);
}
.reg-toggle input:checked + .reg-toggle-track { background: var(--accent); }
.reg-toggle input:checked + .reg-toggle-track .reg-toggle-thumb { transform: translateX(20px); }
.reg-submit-bar {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow);
}
.reg-submit-bar .btn { width: 100%; font-size: 1.0625rem; padding: 14px; }
.reg-form-error {
  display: none;
  background: #fef2f2;
  color: #991b1b;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: .8125rem;
  margin-bottom: 16px;
}
.reg-form-error.show { display: block; }
.reg-note {
  font-size: .8125rem;
  color: var(--text-light);
  margin-top: 12px;
}
.reg-consent {
  text-align: left;
  margin-bottom: 20px;
  padding: 16px;
  background: var(--bg);
  border-radius: 12px;
}
.reg-consent-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: .8125rem;
  line-height: 1.5;
  margin-bottom: 10px;
}
.reg-consent-check:last-child { margin-bottom: 0; }
.reg-consent-check input { display: none; }
.reg-checkbox {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-radius: 5px;
  margin-top: 2px;
  transition: all .2s;
  position: relative;
}
.reg-consent-check input:checked + .reg-checkbox {
  background: var(--accent);
  border-color: var(--accent);
}
.reg-consent-check input:checked + .reg-checkbox::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.reg-char-count {
  font-size: .75rem;
  color: var(--text-light);
  text-align: right;
  margin-top: 3px;
}
.reg-char-count.warning {
  color: #dc2626;
  font-weight: 600;
}
.reg-page-preview { position: sticky; top: 88px; }
.reg-preview-label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-light);
  margin-bottom: 12px;
}
.reg-preview-hint {
  font-size: .8125rem;
  color: var(--text-light);
  margin-top: 12px;
  text-align: center;
}
.reg-success {
  text-align: center;
  padding: 60px 20px;
}
.reg-success h3 { font-size: 1.5rem; margin-bottom: 8px; }
.reg-success p { color: var(--text-light); margin-bottom: 24px; }
.reg-success .btn { display: inline-block; }

@media (max-width: 900px) {
  .reg-page-layout { grid-template-columns: 1fr; }
  .reg-page-preview { position: static; }
  .reg-row-2col, .reg-row-3col { grid-template-columns: 1fr; }
}

/* ===== TICKER ===== */
.ticker-wrap {
  background: var(--bg-dark);
  color: #94a3b8;
  overflow: hidden;
  padding: 10px 0;
  position: relative;
  user-select: none;
}
.ticker-wrap::before,
.ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  z-index: 2;
  pointer-events: none;
}
.ticker-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-dark), transparent);
}
.ticker-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-dark), transparent);
}
.ticker-inner {
  display: flex;
  gap: 48px;
  width: max-content;
  will-change: transform;
}
.ticker-item {
  flex-shrink: 0;
  font-size: .8125rem;
  letter-spacing: .02em;
  white-space: nowrap;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ticker-item::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: .6;
}
.ticker-item:first-child::before {
  display: none;
}

@media (max-width: 768px) {
  .section { padding: 48px 0; }
  .section-title { font-size: 1.75rem; }

  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;
    background: #fff;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid var(--border);
    gap: 4px;
    box-shadow: var(--shadow-lg);
  }
  .nav.open a { width: 100%; padding: 14px 20px; }
  .nav-toggle { display: block; }

  .hero-content h1 { font-size: 2.25rem; }
  .hero-content p { font-size: 1.0625rem; }
  .hero-search { border-radius: 100px; }
  .hero-search input { padding: 14px 16px; }
  .hero-search button { width: auto; padding: 14px 20px; font-size: .875rem; white-space: nowrap; }
  .hero-stats { flex-direction: column; gap: 24px; }

  .ticker-item { font-size: .75rem; gap: 6px; }
  .ticker-inner { gap: 32px; }

  .stats-grid { gap: 32px; flex-wrap: wrap; }
  .stat-item h3 { font-size: 2rem; }

  .about-preview { grid-template-columns: 1fr; gap: 32px; }
  .about-preview-image img { height: 250px; }

  .grounds-grid { grid-template-columns: 1fr; }
  .ground-card-img { height: 160px; }
  .ground-card-body { padding: 16px; }
  .ground-card-body p { font-size: .8125rem; }
  .ground-specs { gap: 2px 12px; font-size: .75rem; }
  .ground-card-actions { flex-direction: column; }
  .ground-card-actions .btn { padding: 12px 16px; }
  .ground-card[data-status="premier-plus"]::after { font-size: .625rem; padding: 3px 10px; top: 8px; right: 8px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-form { padding: 20px; }

  .page-header { padding: 100px 0 48px; }
  .page-header h1 { font-size: 2.25rem; }

  .grounds-toolbar { flex-direction: column; }
  .grounds-toolbar input,
  .grounds-toolbar select,
  .grounds-toolbar-row select { min-width: unset; width: 100%; }
  .grounds-toolbar-row { flex-direction: column; }

  .detail-layout { grid-template-columns: 1fr; }
  .detail-image { height: 220px; }
  .detail-main .card,
  .detail-sidebar .card { padding: 20px; }
  .specs-list { grid-template-columns: 1fr; }
  .affiliates-grid { grid-template-columns: repeat(2, 1fr); }

  .admin-nav { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 4px; }
  .admin-nav a { white-space: nowrap; flex-shrink: 0; }
  .modal-box { margin: auto 0; padding: 24px 16px; border-radius: 12px; }
  .modal-box .form-row-inline { flex-direction: column; gap: 0; }
  .modal-overlay { padding: 16px 8px; align-items: center; }
  .modal-footer { flex-direction: column; }
  .modal-footer button { width: 100%; justify-content: center; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 20px; }

  .section-header { margin-bottom: 32px; }
  .section-subtitle { font-size: 1rem; }
  .container { padding: 0 16px; }
  .about-section p { font-size: 1rem; }
  .about-section ul li { font-size: 1rem; }
  .about-section h2 { font-size: 1.5rem; }

  .btn { padding: 12px 24px; font-size: .875rem; }

  .actions-menu { right: auto; left: 0; }
}

@media (max-width: 480px) {
  .stats-grid { flex-direction: column; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .affiliates-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 80px 0 60px; }
  .hero-content h1 { font-size: 1.75rem; }
  .hero-content p { font-size: 1rem; }
  .page-header h1 { font-size: 1.75rem; }
  .page-header { padding: 80px 0 40px; }
  .section-title { font-size: 1.5rem; }
  .section { padding: 36px 0; }
  .stat-item h3 { font-size: 1.75rem; }
  .ground-card-img { height: 140px; }
  .admin-table { font-size: .8125rem; }
  .admin-table th, .admin-table td { padding: 8px 10px; }
  .admin-count { font-size: .8125rem; }
  .reg-card-wrap { padding: 20px 16px; }
  .header-inner { height: 60px; }
  .logo img { height: 36px; }
}

@media (max-width: 360px) {
  .container { padding: 0 12px; }
  .hero-content h1 { font-size: 1.5rem; }
  .page-header h1 { font-size: 1.5rem; }
  .ground-card-img { height: 120px; }
  .contact-form { padding: 16px; }
  .detail-image { height: 180px; }
  .grounds-map { height: 250px; }
}

.custom-pin { background:none !important; border:none !important; }
.custom-pin svg { display:block; filter:drop-shadow(0 2px 4px rgba(0,0,0,.3)); }
