/* THRDSHOT - Badass Pickleball Vibes */
:root {
  --bg: #0a0a0a;
  --bg-card: #141414;
  --neon: #39FF14;
  --neon-dim: #2acc10;
  --orange: #FF6B00;
  --gold: #FFD700;
  --white: #ffffff;
  --gray: #aaaaaa;
  --dark-gray: #333333;
  --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-display: 'Arial Black', 'Impact', 'Helvetica Neue', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Noise texture overlay for grit */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

a {
  color: var(--neon);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: var(--gold);
  text-shadow: 0 0 10px var(--neon);
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

/* NAV */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(57, 255, 20, 0.2);
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  height: 48px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
}

.nav-links a:hover {
  color: var(--neon);
}

.nav-cta {
  background: var(--neon);
  color: var(--bg) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.4);
}

.nav-cta:hover {
  background: var(--gold);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
  transform: translateY(-2px);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem 4rem;
  position: relative;
  background: radial-gradient(ellipse at 50% 30%, rgba(57, 255, 20, 0.08) 0%, transparent 60%);
}

.hero-logo {
  max-width: 420px;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 20px rgba(57, 255, 20, 0.3));
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 900;
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, var(--white), var(--neon));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .tagline {
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  color: var(--gray);
  margin-bottom: 1rem;
  font-weight: 500;
}

.hero .punchline {
  font-size: 1.25rem;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 2.5rem;
  font-style: italic;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-primary {
  background: var(--neon);
  color: var(--bg);
  box-shadow: 0 0 30px rgba(57, 255, 20, 0.4);
}

.btn-primary:hover {
  background: var(--gold);
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.5);
  transform: scale(1.05);
}

.btn-secondary {
  background: transparent;
  color: var(--neon);
  border: 2px solid var(--neon);
}

.btn-secondary:hover {
  background: rgba(57, 255, 20, 0.1);
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
}

.hero-graphic {
  max-width: 600px;
  width: 100%;
  margin-top: 1rem;
  border-radius: 16px;
  border: 1px solid rgba(57, 255, 20, 0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* SECTIONS */
section {
  padding: 5rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.section-title span {
  color: var(--neon);
}

.section-sub {
  text-align: center;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
}

/* WHAT IS */
.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.what-card {
  background: var(--bg-card);
  border: 1px solid rgba(57, 255, 20, 0.15);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.what-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--neon);
}

.what-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--neon);
}

.what-card p {
  color: var(--gray);
  margin-bottom: 1rem;
}

.what-card .funny {
  color: var(--orange);
  font-weight: 600;
  font-style: italic;
}

/* FEATURES / WHY */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-card {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

.feature-card:hover {
  border-color: var(--neon);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(57, 255, 20, 0.15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.feature-card p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* MERCH TEASER */
.merch {
  background: linear-gradient(180deg, transparent, rgba(57, 255, 20, 0.03), transparent);
}

.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.merch-item {
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s;
}

.merch-item:hover {
  border-color: var(--neon);
  transform: scale(1.03);
}

.merch-img {
  height: 180px;
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.merch-img svg {
  width: 100px;
  height: 100px;
  opacity: 0.9;
}

.merch-info {
  padding: 1.25rem;
}

.merch-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.merch-info .price {
  color: var(--neon);
  font-weight: 800;
  font-size: 1.2rem;
}

.merch-info .tag {
  display: inline-block;
  background: rgba(255, 107, 0, 0.2);
  color: var(--orange);
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  margin-top: 0.5rem;
  font-weight: 700;
}

/* CTA BANNER */
.cta-banner {
  text-align: center;
  padding: 4rem 1.5rem;
  background: radial-gradient(ellipse at center, rgba(57, 255, 20, 0.12) 0%, transparent 70%);
  border-top: 1px solid rgba(57, 255, 20, 0.2);
  border-bottom: 1px solid rgba(57, 255, 20, 0.2);
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: var(--gray);
  max-width: 500px;
  margin: 0 auto 2rem;
  font-size: 1.15rem;
}

/* FOOTER */
footer {
  padding: 3rem 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: var(--gray);
  font-size: 0.9rem;
}

.footer-logo {
  height: 40px;
  margin: 0 auto 1.5rem;
  opacity: 0.8;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--gray);
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--neon);
}

.copyright {
  margin-top: 1rem;
  font-size: 0.85rem;
}

/* ANIMATIONS */
@keyframes pulse-neon {
  0%, 100% { box-shadow: 0 0 20px rgba(57, 255, 20, 0.3); }
  50% { box-shadow: 0 0 40px rgba(57, 255, 20, 0.6); }
}

.pulse {
  animation: pulse-neon 2s infinite;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .what-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-logo {
    max-width: 280px;
  }
  
  .navbar {
    padding: 0.6rem 1rem;
  }
}

/* Floating ball decoration */
.floating-ball {
  position: absolute;
  width: 40px;
  height: 40px;
  opacity: 0.15;
  animation: ball-float 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ball-float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(30px, -40px) rotate(90deg); }
  50% { transform: translate(-20px, -80px) rotate(180deg); }
  75% { transform: translate(40px, -30px) rotate(270deg); }
}
