/* =========================================================
   3rd Shot Drop — one-page site
   BitBlitz Labs, LLC
   ========================================================= */

:root {
  --teal: #1AA7DC;
  --teal-dark: #0E7EA8;
  --teal-darker: #0B5C7D;
  --green: #8CC63F;
  --green-dark: #6BA82C;
  --yellow: #FFCC0F;
  --pink: #FF0F8C;
  --pink-dark: #D6006E;
  --ink: #1A1A1A;
  --cream: #FDF8EC;
  --white: #FFFFFF;
  --shadow-hard: 6px 6px 0 var(--ink);
  --shadow-hard-sm: 4px 4px 0 var(--ink);
  --radius: 18px;
  --font-display: 'Luckiest Guy', 'Baloo 2', cursive;
  --font-body: 'Poppins', 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  letter-spacing: 0.5px;
  line-height: 1.05;
  margin: 0;
}

p { line-height: 1.6; }

a { color: inherit; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  padding: 14px 30px;
  border-radius: 50px;
  border: 3px solid var(--ink);
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--shadow-hard-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}
.btn:active {
  transform: translate(4px, 4px);
  box-shadow: 0 0 0 var(--ink);
}
.btn-amazon {
  background: var(--yellow);
  color: var(--ink);
}
.btn-pink {
  background: var(--pink);
  color: var(--white);
}
.btn-outline {
  background: var(--white);
  color: var(--ink);
}
.btn-small {
  padding: 10px 22px;
  font-size: 0.95rem;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 1px;
  background: var(--ink);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 50px;
  transform: rotate(-2deg);
}

/* ---------- decorative pickleballs ---------- */
.ball {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  opacity: 0.95;
}
.ball svg { width: 100%; height: 100%; display: block; }

/* ---------- halftone dot texture ---------- */
.dots-bg {
  background-image: radial-gradient(rgba(255,255,255,0.35) 2px, transparent 2.5px);
  background-size: 22px 22px;
}
.dots-bg-dark {
  background-image: radial-gradient(rgba(0,0,0,0.08) 2px, transparent 2.5px);
  background-size: 22px 22px;
}

/* =========================================================
   HEADER
   ========================================================= */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 4px solid var(--ink);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--teal-dark);
  text-decoration: none;
}
.logo .logo-dot {
  width: 30px;
  height: 30px;
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: 600;
  font-size: 0.95rem;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink);
  position: relative;
}
.nav-links a:hover { color: var(--teal-dark); }
.nav-cta { display: flex; align-items: center; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--teal) 0%, var(--teal) 70%, var(--teal-dark) 100%);
  color: var(--white);
  overflow: hidden;
  padding: 64px 0 80px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.18) 2.5px, transparent 3px);
  background-size: 26px 26px;
  pointer-events: none;
}
.hero .wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero-copy .eyebrow {
  background: var(--pink);
  color: var(--white);
}
.hero h1 {
  font-size: 3.4rem;
  margin-top: 18px;
  -webkit-text-stroke: 2px var(--ink);
  paint-order: stroke fill;
  color: var(--white);
}
.hero-tagline {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 16px;
  max-width: 480px;
  background: var(--white);
  color: var(--ink);
  display: inline-block;
  padding: 10px 18px;
  border-radius: 14px;
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-hard-sm);
  transform: rotate(-1deg);
}
.hero-badges {
  display: flex;
  gap: 14px;
  margin-top: 26px;
  flex-wrap: wrap;
}
.pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
}
.pill strong { color: var(--yellow); }
.hero-stars {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.stars { color: var(--yellow); font-size: 1.3rem; letter-spacing: 2px; }
.hero-actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.price-tag {
  font-family: var(--font-display);
  font-size: 1.8rem;
  background: var(--white);
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 14px;
  padding: 6px 18px;
  box-shadow: var(--shadow-hard-sm);
}

.hero-art {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-art img {
  border-radius: 20px;
  border: 4px solid var(--ink);
  box-shadow: 10px 10px 0 var(--ink-shadow, var(--teal-darker));
  max-width: 460px;
  width: 100%;
}

/* =========================================================
   ABOUT / DESCRIPTION
   ========================================================= */
.about {
  padding: 90px 0 70px;
  position: relative;
}
.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}
.section-head .eyebrow {
  background: var(--teal);
  color: var(--white);
}
.section-head h2 {
  font-size: 2.6rem;
  margin-top: 16px;
  color: var(--ink);
}
.section-head h2 span { color: var(--pink); }
.section-head p {
  margin-top: 14px;
  font-size: 1.05rem;
  color: #3a3a3a;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-copy p {
  font-size: 1.05rem;
  color: #333;
  margin-bottom: 16px;
}
.about-copy p:first-of-type {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--teal-dark);
  line-height: 1.3;
}
.about-art { position: relative; }
.about-art img {
  border-radius: var(--radius);
  border: 4px solid var(--ink);
  box-shadow: var(--shadow-hard);
}

/* =========================================================
   FEATURES
   ========================================================= */
.features {
  background: var(--white);
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  padding: 80px 0;
  position: relative;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-card {
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-hard-sm);
  transition: transform 0.15s ease;
}
.feature-card:hover { transform: translateY(-4px); }
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 14px;
  border: 3px solid var(--ink);
}
.feature-card h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 0.95rem;
  color: #444;
  margin: 0;
}

/* =========================================================
   ACTION CARDS SHOWCASE
   ========================================================= */
.action-section {
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.action-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 50px;
  align-items: center;
}
.action-art img {
  border-radius: var(--radius);
  border: 4px solid var(--ink);
  box-shadow: var(--shadow-hard);
}
.card-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card-chip {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 4px 4px 0 var(--ink);
}
.card-chip .badge {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-chip .badge svg { width: 40px; height: 40px; }
.card-chip h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 2px;
  letter-spacing: 0.5px;
}
.card-chip p { margin: 0; font-size: 0.92rem; color: #444; }

/* =========================================================
   LIFESTYLE / GAME NIGHT
   ========================================================= */
.lifestyle {
  background: var(--ink);
  color: var(--white);
  padding: 90px 0;
}
.lifestyle .section-head h2 { color: var(--white); }
.lifestyle .section-head p { color: #d8d8d8; }
.lifestyle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.lifestyle-art img {
  border-radius: var(--radius);
  border: 4px solid var(--white);
  box-shadow: 8px 8px 0 var(--pink);
}
.whats-in-box {
  display: flex;
  gap: 18px;
  margin-top: 26px;
  flex-wrap: wrap;
}
.box-item {
  background: #2a2a2a;
  border: 2px solid #444;
  border-radius: 14px;
  padding: 16px 20px;
  text-align: center;
  flex: 1;
  min-width: 120px;
}
.box-item .icon { font-size: 1.8rem; margin-bottom: 6px; }
.box-item span { display: block; font-weight: 700; font-size: 0.95rem; }

/* =========================================================
   REVIEWS
   ========================================================= */
.reviews {
  padding: 90px 0;
  background: var(--cream);
}
.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.review-card {
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  padding: 26px 28px;
  box-shadow: var(--shadow-hard-sm);
  position: relative;
}
.review-card .stars { display: block; margin-bottom: 10px; }
.review-card h4 {
  margin: 14px 0 2px;
  font-size: 1rem;
  font-weight: 700;
}
.review-card .reviewer {
  font-size: 0.85rem;
  color: #666;
}
.review-card p.quote {
  font-size: 1rem;
  color: #2a2a2a;
  font-style: italic;
}
.verified {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--teal-dark);
  background: #e6f6fd;
  padding: 4px 10px;
  border-radius: 50px;
}

/* =========================================================
   FINAL CTA
   ========================================================= */
.cta {
  position: relative;
  background: var(--pink);
  color: var(--white);
  text-align: center;
  padding: 80px 0;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.22) 2.5px, transparent 3px);
  background-size: 26px 26px;
}
.cta .wrap { position: relative; z-index: 2; }
.cta h2 {
  font-size: 2.6rem;
  color: var(--white);
  -webkit-text-stroke: 2px var(--ink);
  paint-order: stroke fill;
}
.cta p {
  max-width: 560px;
  margin: 16px auto 30px;
  font-size: 1.1rem;
  font-weight: 600;
}
.cta-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 22px;
  display: inline-block;
  background: var(--white);
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 14px;
  padding: 8px 22px;
  box-shadow: var(--shadow-hard-sm);
}

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: var(--ink);
  color: #cfcfcf;
  padding: 46px 0 26px;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 26px;
  border-bottom: 1px solid #3a3a3a;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
}
.footer-brand .logo-dot { width: 26px; height: 26px; }
.footer-links {
  display: flex;
  gap: 26px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}
.footer-links a { text-decoration: none; color: #cfcfcf; }
.footer-links a:hover { color: var(--yellow); }
.footer-bottom {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  color: #888;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; text-align: center; }
  .hero-badges, .hero-actions, .hero-stars { justify-content: center; }
  .hero h1 { font-size: 2.6rem; }
  .about-grid, .lifestyle-grid, .action-layout { grid-template-columns: 1fr; }
  .about-art { order: -1; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 560px) {
  .feature-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.1rem; }
  .whats-in-box { flex-direction: column; }
}
@media (max-width: 700px) {
  .hero .ball, .cta .ball { display: none; }
}

/* =========================================================
   RULES PAGE
   ========================================================= */
.rules-hero {
  padding: 48px 0 56px;
  text-align: center;
}
.rules-hero .eyebrow { background: var(--pink); color: var(--white); }
.rules-hero h1 {
  font-size: 3rem;
  color: var(--white);
  margin-top: 16px;
  -webkit-text-stroke: 2px var(--ink);
  paint-order: stroke fill;
}
.rules-hero p {
  max-width: 560px;
  margin: 14px auto 0;
  font-size: 1.1rem;
  font-weight: 600;
}
.rules-hero .hero-actions { justify-content: center; margin-top: 26px; }

.subnav {
  position: sticky;
  top: 65px;
  z-index: 90;
  background: var(--white);
  border-bottom: 3px solid var(--ink);
  overflow-x: auto;
  white-space: nowrap;
}
.subnav .wrap {
  display: flex;
  gap: 8px;
  padding: 12px 24px;
}
.subnav a {
  flex-shrink: 0;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink);
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 50px;
  padding: 7px 16px;
}
.subnav a:hover { background: var(--yellow); }

.rule-section { padding: 64px 0; }
.rule-section:nth-of-type(even) { background: var(--white); }
.rule-section h2 {
  font-size: 2.1rem;
  color: var(--ink);
  margin-bottom: 6px;
}
.rule-section h2 span { color: var(--pink); }
.rule-section .eyebrow { background: var(--teal); color: var(--white); margin-bottom: 14px; display: inline-block; }
.rule-lede {
  font-size: 1.1rem;
  color: #333;
  max-width: 760px;
  margin-bottom: 30px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 10px;
}
.stat-box {
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  box-shadow: 4px 4px 0 var(--ink);
}
.stat-box .num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--teal-dark);
  display: block;
}
.stat-box span.label { font-size: 0.85rem; font-weight: 700; color: #444; }

.meld-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 20px;
}
.meld-card {
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-hard-sm);
}
.meld-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--teal-dark);
  margin-bottom: 8px;
}
.meld-card p { color: #333; margin-bottom: 16px; }
.meld-card img {
  width: 100%;
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: var(--white);
  padding: 10px;
}

.rule-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.rule-steps li {
  counter-increment: step;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: 4px 4px 0 var(--ink);
}
.rule-steps li::before {
  content: counter(step);
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--ink);
}
.rule-steps p { margin: 0; color: #333; }
.rule-steps strong { color: var(--ink); }

.action-detail-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 10px;
}
.action-detail {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 4px 4px 0 var(--ink);
}
.action-detail .badge {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 3px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}
.action-detail .badge svg { width: 34px; height: 34px; }
.action-detail h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 6px;
  letter-spacing: 0.5px;
}
.action-detail p { margin: 0; color: #333; }

.scoring-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-hard-sm);
}
.scoring-table th, .scoring-table td {
  text-align: left;
  padding: 14px 20px;
  border-bottom: 2px solid #eee;
}
.scoring-table th {
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.5px;
}
.scoring-table tr:last-child td { border-bottom: none; }
.scoring-table td.pts { font-weight: 700; color: var(--teal-dark); white-space: nowrap; }
.scoring-table td.neg { color: var(--pink-dark); }

.end-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 10px;
}
.end-card {
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-hard-sm);
}
.end-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--pink-dark);
  margin-bottom: 8px;
}
.end-card p { margin: 0; color: #333; }

@media (max-width: 900px) {
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .meld-grid, .end-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .stat-grid { grid-template-columns: 1fr; }
  .rules-hero h1 { font-size: 2.1rem; }
  .action-detail { flex-direction: column; }
  .scoring-table th, .scoring-table td { padding: 10px 12px; font-size: 0.9rem; }
}
