:root {
  --bg-color: #000000;
  --text-main: #ffffff;
  --text-muted: #b0b0b0;
  --neon-pink: #FF10F0;
  --neon-blue: #0080FF;
  --neon-purple: #9d00ff;
  --card-bg: #0a0a0a;
  --card-border: #0080FF;
  --font-main: 'Outfit', sans-serif;
  --spacer: 1rem;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-color);
  background-image: none;
  color: var(--text-main);
  font-family: var(--font-main);
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--spacer);
  text-transform: uppercase;
  letter-spacing: 1px;
}

h1 {
  font-size: 3.5rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow:
    0 0 5px #fff,
    0 0 10px #fff,
    0 0 20px var(--neon-blue),
    0 0 30px var(--neon-blue),
    0 0 40px var(--neon-blue);
  margin-bottom: 1rem;
  background: none;
  -webkit-text-fill-color: initial;
}

h2 {
  font-size: 2rem;
  color: #fff;
  text-shadow:
    0 0 5px #fff,
    0 0 10px var(--neon-pink),
    0 0 20px var(--neon-pink);
  border-bottom: 2px solid var(--neon-pink);
  display: inline-block;
  padding-bottom: 0.25rem;
  box-shadow: 0 2px 10px -2px var(--neon-pink);
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacer);
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
  text-shadow: 0 0 5px var(--neon-blue), 0 0 10px var(--neon-blue);
  box-shadow: 0 0 5px var(--neon-blue), inset 0 0 5px var(--neon-blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.btn:hover {
  background-color: var(--neon-blue);
  color: #000;
  text-shadow: none;
  box-shadow: 0 0 20px var(--neon-blue), 0 0 40px var(--neon-blue);
  transform: translateY(-2px);
}

.btn-secondary {
  border-color: var(--neon-pink);
  color: var(--neon-pink);
  box-shadow: 0 0 5px var(--neon-pink);
}

.btn-secondary:hover {
  background-color: var(--neon-pink);
  color: var(--bg-color);
  box-shadow: 0 0 20px var(--neon-pink);
}

.grid {
  display: grid;
  gap: var(--spacer);
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Header & Nav */
header {
  background-color: rgba(0, 0, 0, 0.9);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--card-border);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--neon-pink);
  text-shadow: 0 0 5px var(--neon-pink);
}

.logo span {
  color: var(--neon-blue);
  text-shadow: 0 0 5px var(--neon-blue);
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  font-weight: 600;
  color: #ffffff;
  position: relative;
  transition: all 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--neon-blue);
  box-shadow: 0 0 5px var(--neon-blue);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.burger {
  display: none;
  cursor: pointer;
  font-size: 1.8rem;
  background: transparent;
  border: none;
  color: var(--text-main);
}

/* Nav animation keyframes (missing before) */
@keyframes navLinkFade {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Card Styles */
.card {
  background-color: var(--card-bg);
  border: 1px solid #333;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--neon-blue);
  box-shadow: 0 0 15px var(--neon-blue);
}

.card img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  background-color: #000;
  border-bottom: 1px solid #333;
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: white;
  font-weight: 700;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  background-color: var(--card-border);
  border-radius: 4px;
  font-size: 0.8rem;
  margin-right: 0.5rem;
}

.score-badge {
  background-color: var(--neon-purple);
  color: white;
  font-weight: bold;
}

.hide-on-mobile {
  display: block;
}

@media (max-width: 768px) {
  .burger {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: rgba(5, 5, 5, 0.95);
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.4s ease-in-out;
    z-index: 1001;
  }

  .nav-links.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  .hide-on-mobile {
    display: none !important;
  }

  h1 {
    font-size: 2rem;
  }

  /* App-Style Bottom Nav */
  body {
    padding-bottom: 70px;
    /* Make space for the fixed bottom nav */
  }
}

.mobile-nav-bar {
  display: none;
  /* Hidden on desktop */
}

@media (max-width: 768px) {
  .mobile-nav-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 16, 240, 0.3);
    z-index: 1000;
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  .mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    width: 20%;
    height: 100%;
    text-decoration: none;
  }

  .mobile-nav-item i {
    font-size: 1.4rem;
    margin-bottom: 4px;
    transition: all 0.3s ease;
  }

  .mobile-nav-item:hover,
  .mobile-nav-item.active {
    color: #ffffff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
  }

  .mobile-nav-item.active i {
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
    transform: translateY(-2px);
  }
}

/* Hero */
.hero {
  text-align: center;
  padding: 6rem 1rem;
  background-color: var(--bg-color);
  background-image: var(--hero-bg-image, radial-gradient(circle at center, #111111 0%, #000000 70%));
  position: relative;
  overflow: hidden;
  margin-bottom: 3rem;
  border-bottom: 1px solid #222;

  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 0;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: center;
}

/* SHOW the hero logo again */
.hero-logo-img {
  display: block !important;
  max-width: 320px;
  margin: 0 auto 2rem;
  filter: drop-shadow(0 0 20px rgba(0, 128, 255, 0.35));
}

.hero-glass {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 16, 240, 0.3);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(0, 0, 0, 0.5);
  border-radius: 16px;
  padding: 3rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3.5rem;
  color: #ffffff;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero p {
  font-size: 1.5rem;
  font-weight: 500;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 1);
  margin-bottom: 2.5rem;
  line-height: 1.4;
}

/* Carousel */
.brand-carousel {
  overflow: hidden;
  white-space: nowrap;
  padding: 2rem 0;
  position: relative;
}

.brand-track {
  display: inline-block;
  animation: slide 20s linear infinite;
}

.brand-track img {
  height: 60px;
  margin: 0 2rem;
  display: inline-block;
  filter: grayscale(100%) brightness(0.8);
  transition: filter 0.3s;
}

.brand-track img:hover {
  filter: grayscale(0%) brightness(1.2);
}

@keyframes slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Votes */
.vote-section {
  background-color: #0a0a0a;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--neon-pink);
  box-shadow: 0 0 15px var(--neon-pink), inset 0 0 20px rgba(255, 0, 255, 0.1);
  margin: 2rem 0;
  position: relative;
}

.vote-input-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.vote-input-group input {
  flex: 1;
  padding: 1rem;
  background: #111;
  border: 1px solid #333;
  color: white;
  border-radius: 4px;
}

.vote-list .vote-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem;
  border-bottom: 1px solid #222;
}

.vote-item:nth-child(1) {
  color: var(--neon-blue);
  font-weight: bold;
}

.vote-item:nth-child(2),
.vote-item:nth-child(3) {
  color: var(--neon-blue);
}

/* Pills (fixed selector so it works everywhere) */
.pills-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
  min-height: 50px;
  padding: 0.5rem;
  border: 1px solid #333;
  border-radius: 4px;
}

.pill {
  background: var(--neon-purple);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: popIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pill span {
  cursor: pointer;
  font-weight: bold;
}

@keyframes popIn {
  from {
    transform: scale(0);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Social Section */
.social-section {
  text-align: center;
  padding: 2rem;
  background: #0a0a0a;
  border-radius: 12px;
  border: 1px solid #333;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  text-align: left;
}

@media (max-width: 768px) {
  .social-grid {
    grid-template-columns: 1fr;
  }
}

.social-card {
  background: #000;
  border: 1px solid #333;
  border-radius: 8px;
  overflow: hidden;
  min-height: 650px;
  height: auto;
  display: flex;
  flex-direction: column;
}

/* Instagram Card Styling */
.instagram-card {
  border-color: var(--neon-pink);
  box-shadow: 0 0 10px rgba(255, 16, 240, 0.1);
}

.insta-header {
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid #333;
  background: #111;
}

.insta-profile-pic {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--neon-pink);
}

.insta-preview {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle at center, #1a1a1a 0%, #000 70%);
}

.btn-sm {
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
}

/* Facebook Card Styling */
.facebook-card {
  border-color: var(--neon-blue);
  box-shadow: 0 0 10px rgba(0, 128, 255, 0.1);
}

/* GUIDED GENERATOR STYLES */
.guided-panel {
  margin: 2rem 0;
  padding: 1.5rem;
  background: #0a0a0a;
  border: 1px solid #333;
  border-radius: 12px;
}

.mood-chips {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.chip {
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid #444;
  background: #111;
  color: #fff;
  cursor: pointer;
  transition: 0.2s;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.75rem;
}

.chip:hover {
  border-color: var(--neon-blue);
  box-shadow: 0 0 10px rgba(0, 128, 255, 0.25);
}

.chip.active {
  background: var(--neon-pink);
  color: #000;
  border-color: var(--neon-pink);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.quick-btn {
  padding: 0.75rem;
  background: #111;
  border: 1px solid #333;
  border-radius: 10px;
  cursor: pointer;
  color: #fff;
  text-align: center;
  transition: 0.2s;
  font-weight: 700;
}

.quick-btn:hover {
  border-color: var(--neon-blue);
  box-shadow: 0 0 12px rgba(0, 128, 255, 0.2);
}

.quick-btn.active {
  border-color: var(--neon-pink);
  box-shadow: 0 0 12px rgba(255, 16, 240, 0.2);
}

.suggestion-card {
  background: #111;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 1rem;
  cursor: pointer;
  transition: 0.2s;
}

.suggestion-card:hover {
  border-color: var(--neon-blue);
  box-shadow: 0 0 15px rgba(0, 128, 255, 0.2);
}

.suggestion-title {
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.suggestion-tags {
  color: #aaa;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

@media(max-width: 768px) {
  .quick-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
}


/* SOCIAL CTA STYLES */
.social-cta {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.8rem;
  border-radius: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #fff;
  text-decoration: none;
  transition: all 0.25s ease;
  font-size: 0.9rem;
}

.social-link.instagram {
  border-color: var(--neon-pink);
  color: var(--neon-pink);
  box-shadow: 0 0 8px rgba(255, 16, 240, 0.4);
}

.social-link.instagram:hover {
  background: var(--neon-pink);
  color: #000;
  box-shadow: 0 0 20px rgba(255, 16, 240, 0.8);
}

.social-link.facebook {
  border-color: var(--neon-blue);
  color: var(--neon-blue);
  box-shadow: 0 0 8px rgba(0, 128, 255, 0.4);
}

.social-link.facebook:hover {
  background: var(--neon-blue);
  color: #000;
  box-shadow: 0 0 20px rgba(0, 128, 255, 0.8);
}

.social-link i {
  font-size: 1.1rem;
}

/* STOCKADE CARD REFINEMENTS */
.stock-review-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.4rem;
  font-size: 0.85rem;
  color: #aaa;
}

.stock-review-score {
  background: var(--neon-pink);
  color: #000;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.8rem;
  box-shadow: 0 0 8px rgba(255, 16, 240, 0.4);
}

.stock-review-meta.not-reviewed {
  color: var(--neon-blue);
  font-weight: 600;
}


/* Responsive Grid */
@media (max-width: 768px) {

  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
    /* Single column on mobile */
  }

  .partner-card img {
    height: 200px;
    /* Fixed height to prevent massive images */
    object-fit: cover;
    /* or contain, depending on preference */
    width: 100%;
  }

  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  h1 {
    font-size: 2.5rem;
    /* Smaller headings */
  }
}

/* News Box */
.news-box {
  background: #1a1a1a;
  border: 1px solid var(--neon-pink);
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  box-shadow: 0 0 15px rgba(255, 16, 240, 0.2);
  margin-bottom: 2rem;
}

.news-content {
  flex: 1;
}

.news-content h2 {
  color: var(--neon-pink);
  margin-top: 0;
  font-family: 'Bebas Neue', cursive;
  font-family: var(--font-main);
  font-size: 2rem;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(255, 16, 240, 0.4);
}

.news-content p {
  color: #eee;
  line-height: 1.6;
  white-space: pre-wrap;
  /* Preserve line breaks */
  font-size: 1.1rem;
}

.news-image {
  flex: 0 0 300px;
}

.news-image img {
  width: 100%;
  border-radius: 4px;
  border: 1px solid #333;
  object-fit: cover;
}

@media (max-width: 768px) {
  .news-box {
    flex-direction: column-reverse;
    text-align: center;
  }

  .news-image {
    flex: auto;
    width: 100%;
  }
}

/* STOCKADE CAROUSEL */
.stock-carousel-container {
  position: relative;
  width: 100%;
  padding: 1rem 0;
  /* background: #111; */
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1.5rem;
  /* Space for scrollbar if visible */
  scrollbar-width: thin;
  scrollbar-color: var(--neon-pink) #222;
}

.carousel-track::-webkit-scrollbar {
  height: 8px;
}

.carousel-track::-webkit-scrollbar-track {
  background: #222;
}

.carousel-track::-webkit-scrollbar-thumb {
  background-color: var(--neon-pink);
  border-radius: 4px;
}

.carousel-item {
  flex: 0 0 300px;
  scroll-snap-align: center;
  background: #111;
  border: 1px solid #333;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s;
  position: relative;
}

.carousel-item:hover {
  transform: scale(1.05);
  border-color: var(--neon-blue);
  box-shadow: 0 0 15px rgba(0, 128, 255, 0.3);
  z-index: 10;
}

.carousel-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 1px solid #333;
}

.carousel-content {
  padding: 1rem;
}

.carousel-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.carousel-btn {
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.8);
  color: var(--neon-pink);
  border: 1px solid var(--neon-pink);
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-size: 1.5rem;
  transition: 0.2s;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: var(--neon-pink);
  color: #000;
  box-shadow: 0 0 15px var(--neon-pink);
}

.carousel-btn.prev {
  transform: translateX(-50%);
}

.carousel-btn.next {
  transform: translateX(50%);
}

@media (max-width: 768px) {
  .carousel-item {
    flex: 0 0 85%;
    /* Shows part of next slide */
  }
}

/* Age Verification Modal */
#age-verification-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
}

.age-modal-content {
  background: var(--card-bg);
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid var(--neon-pink);
  text-align: center;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 0 30px rgba(255, 16, 240, 0.3);
  animation: popIn 0.5s ease-out;
}

.age-modal-content .logo {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.age-modal-content h2 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  border-bottom: none;
}

.age-modal-content p {
  color: #ccc;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.age-modal-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.age-modal-buttons .btn {
  min-width: 140px;
}

/* Force Review Image Containment */
.review-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  background-color: #000;
}