:root {
  --retro-blue: #00bcd4;
  --retro-pink: #ff4081;
  --retro-yellow: #ffeb3b;
  --retro-purple: #9c27b0;
  --retro-dark: #212121;
  --retro-light: #ffffff;
  /* GLOBAL FONT UPDATE */
  --font-header: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --font-accent: 'Poppins', sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;800&family=Press+Start+2P&family=VT323&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background-color: var(--retro-dark);
  color: var(--retro-light);
  overflow-x: hidden;
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-header);
  text-transform: uppercase;
  line-height: 1.4;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Utilities */
.text-center {
  text-align: center;
}

.highlight {
  color: var(--retro-yellow);
}

.pink {
  color: var(--retro-pink);
}

.blue {
  color: var(--retro-blue);
}

/* Buttons */
.btn-cta {
  display: inline-block;
  background: var(--retro-pink);
  color: white;
  font-family: var(--font-header);
  padding: 20px 30px;
  text-decoration: none;
  font-size: 1.2rem;
  border-bottom: 6px solid #c60055;
  border-radius: 10px;
  transition: all 0.2s;
  text-shadow: 2px 2px 0px #000;
  animation: pulse 2s infinite;
}

.btn-cta:hover {
  transform: translateY(4px);
  border-bottom: 2px solid #c60055;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 64, 129, 0.7);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(255, 64, 129, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 64, 129, 0);
  }
}

/* Sections */
section {
  padding: 60px 0;
}

/* Hook Section */
.top-hook {
  background: var(--retro-pink);
  /* More urgent background */
  padding: 30px 20px;
  border-bottom: 5px solid var(--retro-yellow);
}

.top-hook h2 {
  font-size: 1.8rem;
  /* Increased size */
  color: #fff;
  /* White for contrast */
  text-shadow: 3px 3px 0 #000;
  margin-bottom: 10px;
  background: red;
  /* Urgent banner look */
  display: inline-block;
  padding: 10px;
  /* transform: rotate(-1deg); REMOVED ROTATION TO IMPROVE READABILITY */
}

.top-hook p {
  font-family: var(--font-body);
  /* Changed to Poppins for readability */
  font-weight: 800;
  font-size: 1.5rem;
  /* Reduced size slightly for mobile safeguard */
  color: var(--retro-yellow);
  text-shadow: 1px 1px 0 #000;
  margin-top: 10px;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('assets/hero_bg.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 80px 20px;
}

.hero h1 {
  font-size: 2.5rem;
  color: var(--retro-blue);
  text-shadow: 4px 4px 0 #000;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.5rem;
  margin-bottom: 40px;
}

.hero-img {
  max-width: 100%;
  border: 5px solid white;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 188, 212, 0.5);
  margin-bottom: 30px;
}

/* Lembra Disso */
.lembra-disso {
  background: #2a2a2a;
}

.memory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.memory-card {
  background: #333;
  padding: 20px;
  border-radius: 10px;
  border: 2px solid var(--retro-blue);
  text-align: center;
}

.memory-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  display: block;
}

/* Social Proof */
.social-proof {
  background-color: var(--retro-light);
  color: #333;
  background-image: radial-gradient(#ccc 1px, transparent 1px);
  background-size: 20px 20px;
}

.testimonial-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.note-card {
  background: #fff;
  color: #333;
  /* Dark text for readability */
  font-family: var(--font-body);
  /* Changed from Cursive to Poppins */
  font-weight: 600;
  padding: 20px;
  width: 300px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
  /* transform: rotate(-2deg); REMOVED ROTATION */
  border: 1px solid #ddd;
  position: relative;
  font-size: 1rem;
}

.note-card:nth-child(even) {
  /* transform: rotate(2deg); REMOVED ROTATION */
  color: #d32f2f;
}

.note-card::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  width: 100px;
  height: 20px;
  background: rgba(255, 255, 0, 0.5);
  transform: translateX(-50%);
}

/* Consoles List */
.consoles-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.console-item {
  background: var(--retro-dark);
  border: 2px solid var(--retro-pink);
  padding: 15px 30px;
  border-radius: 50px;
  font-family: var(--font-header);
  font-size: 0.8rem;
  color: var(--retro-pink);
}

/* Emotional Deep Dive */
.emotional-deep {
  background: linear-gradient(135deg, #1a237e, #4a148c);
  text-align: center;
}

.deep-text {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 30px;
}

/* Comparison */
.comparison .memory-card h3 {
  text-shadow: 1px 1px 0 #000;
}

.before-card {
  background: #555 !important;
  color: #ccc !important;
  border-color: #777 !important;
}

.after-card {
  background: var(--retro-blue) !important;
  color: #fff !important;
  border-color: var(--retro-yellow) !important;
  box-shadow: 0 0 15px var(--retro-blue);
}

/* Pricing */
.pricing {
  background: #222;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  /* Increased gap */
  margin-top: 40px;
}

.plan-card {
  background: #fff;
  color: #333;
  border-radius: 15px;
  padding: 30px;
  width: 320px;
  /* Slightly wider */
  text-align: center;
  position: relative;
  border: 4px solid #ccc;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.plan-card.featured {
  background: #fff9c4;
  /* Light yellow bg */
  border-color: var(--retro-yellow);
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(255, 235, 59, 0.5);
  z-index: 10;
}

.badge {
  background: #ff0000;
  /* Red for urgent attention */
  color: white;
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 0.9rem;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-header);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  width: 90%;
}

.plan-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-family: var(--font-header);
}

.plan-features ul {
  list-style: none;
  margin: 20px 0;
}

.plan-features li {
  margin-bottom: 10px;
  border-bottom: 1px dashed #ccc;
  padding-bottom: 5px;
}

/* Mobile adjustments */


/* IMPROVED MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  /* TYPOGRAPHY SCALING */
  h1 {
    font-size: 2rem !important;
    line-height: 1.3;
  }

  h2 {
    font-size: 1.8rem !important;
  }

  h3 {
    font-size: 1.5rem !important;
  }

  p {
    font-size: 1rem !important;
  }

  /* HEADER & HERO */
  .top-hook h2 {
    font-size: 1.2rem;
    background: #d32f2f;
    /* Darker red for better contrast */
    transform: rotate(-1deg);
    display: inline-block;
  }

  .hero {
    padding: 40px 15px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-img {
    margin-top: 20px;
  }

  /* GRIDS */
  .memory-grid,
  .pricing-grid,
  .consoles-list,
  .testimonial-container {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .plan-card,
  .note-card {
    width: 100%;
    max-width: 400px;
  }

  .console-item {
    width: 100%;
    text-align: center;
  }
}

/* Real Proof Carousel */
.real-proof {
  background: #000;
  color: #fff;
  border-top: 5px solid var(--retro-purple);
  border-bottom: 5px solid var(--retro-purple);
  overflow: hidden;
  position: relative;
}

.carousel-container {
  display: flex;
  overflow-x: auto;
  gap: 30px;
  padding: 40px 20px;
  scroll-behavior: smooth;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge */
  align-items: center;
}

.carousel-container::-webkit-scrollbar {
  display: none;
}

.testimonial-item {
  min-width: 300px;
  max-width: 300px;
  background: #222;
  border-radius: 20px 20px 40px 20px;
  /* Gameboy-ish shape */
  padding: 15px;
  border: 4px solid #555;
  box-shadow: 0 0 15px var(--retro-blue);
  /* Neon glow default */
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* Alternating neon colors */
.testimonial-item:nth-child(odd) {
  box-shadow: 0 0 15px var(--retro-pink);
  border-color: #777;
}

.testimonial-item:nth-child(even) {
  box-shadow: 0 0 15px var(--retro-yellow);
  border-color: #666;
}

.screen-frame {
  background: #000;
  padding: 10px;
  border-radius: 10px 10px 30px 10px;
  border: 2px solid #333;
  width: 100%;
}

.testimonial-img {
  width: 100%;
  border-radius: 5px;
  border: 2px solid #fff;
  display: block;
}

.testimonial-caption {
  margin-top: 15px;
  font-size: 0.8rem;
  color: #aaa;
  font-family: var(--font-accent);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.nav-btn {
  background: var(--retro-dark);
  border: 2px solid #fff;
  color: #fff;
  font-family: var(--font-header);
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.nav-btn:hover {
  background: var(--retro-pink);
  transform: scale(1.1);
}