:root {
  /* Pink, Blue & Yellow Color Palette */
  --primary-color: #3a86ff; /* Vibrant Blue */
  --secondary-color: #ff6b9d; /* Bright Pink */
  --accent-color: #ffd166; /* Soft Yellow */
  --light-pink: #ffe4ec;
  --light-blue: #e6f0ff;
  --light-yellow: #fff9e6;
  --light-color: #f8f9fa;
  --dark-color: #2d3748;
  --gray-color: #718096;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);

  /* Updated gradients */
  --blue-gradient: linear-gradient(135deg, #3a86ff 0%, #6ca2ff 100%);
  --pink-gradient: linear-gradient(135deg, #ff6b9d 0%, #ff8fb1 100%);
  --yellow-gradient: linear-gradient(135deg, #ffd166 0%, #ffe082 100%);
  --rainbow-gradient: linear-gradient(90deg, #3a86ff, #ff6b9d, #ffd166);
  --rainbow-gradient-vertical: linear-gradient(
    180deg,
    #3a86ff,
    #ff6b9d,
    #ffd166
  );

  /* Billboard colors updated */
  --billboard-bg: linear-gradient(
    135deg,
    #e6f0ff 0%,
    #ffe4ec 50%,
    #fff9e6 100%
  );
  --billboard-text: #2c2c2c;
  --billboard-accent: #ff6b9d; /* Bright Pink */
  --billboard-blue: #3a86ff;
  --billboard-gold: #ffd166;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.7;
  color: var(--dark-color);
  background-color: white;
  overflow-x: hidden;
  background-image: radial-gradient(
      circle at 10% 20%,
      rgba(58, 134, 255, 0.05) 0%,
      transparent 20%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(255, 107, 157, 0.05) 0%,
      transparent 20%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(255, 209, 102, 0.05) 0%,
      transparent 30%
    );
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.2rem;
}

h1 {
  font-size: 3.2rem;
  color: var(--primary-color);
}

h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 1rem;
}

h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--rainbow-gradient);
  border-radius: 2px;
}

.section-header h2:after {
  left: 50%;
  transform: translateX(-50%);
}

h3 {
  font-size: 1.8rem;
  color: var(--secondary-color);
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 100px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--pink-gradient);
  color: white;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 5px 15px rgba(255, 107, 157, 0.2);
}

.btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--rainbow-gradient);
  transition: var(--transition);
  z-index: -1;
}

.btn:hover:before {
  left: 0;
}

.btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(255, 107, 157, 0.3);
}

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

.btn-light:before {
  background: var(--secondary-color);
}

.btn-light:hover {
  color: white;
}

/* Header & Navigation - UPDATED COLORS */
header {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 5px 20px rgba(58, 134, 255, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.header-scrolled {
  padding: 10px 0;
  box-shadow: 0 10px 30px rgba(58, 134, 255, 0.15);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  transition: var(--transition);
}

.header-scrolled .header-container {
  padding: 10px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
}

.logo img {
  height: 60px;
  width: auto;
  transition: var(--transition);
}

.header-scrolled .logo img {
  height: 50px;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
}

.nav-links li {
  margin-left: 2rem;
}

.nav-links a {
  font-weight: 600;
  color: var(--dark-color);
  position: relative;
  font-size: 0.95rem;
  white-space: nowrap;
}

.nav-links a:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--rainbow-gradient);
  transition: var(--transition);
}

.nav-links a:hover:after {
  width: 100%;
}

/* Contact Button in Navigation */
.nav-contact-btn {
  display: inline-block;
  background: var(--pink-gradient);
  color: white !important;
  padding: 10px 25px !important;
  border-radius: 50px;
  font-weight: 700;
  transition: var(--transition);
  border: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-left: 1rem;
  box-shadow: 0 5px 15px rgba(255, 107, 157, 0.2);
}

.nav-contact-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--rainbow-gradient);
  transition: var(--transition);
  z-index: -1;
  border-radius: 50px;
}

.nav-contact-btn:hover:before {
  left: 0;
}

.nav-contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 107, 157, 0.3);
  color: white !important;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: var(--primary-color);
  cursor: pointer;
  transition: var(--transition);
}

/* Hero Section - UPDATED BACKGROUND */
.hero {
  padding-top: 160px;
  background: linear-gradient(135deg, #e6f0ff 0%, #ffe4ec 50%, #fff9e6 100%);
  position: relative;
  overflow: hidden;
}

.hero:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(58, 134, 255, 0.15),
    rgba(255, 107, 157, 0.1),
    rgba(255, 209, 102, 0.05)
  );
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 0;
}

.hero:after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(255, 107, 157, 0.2) 0%,
    rgba(255, 107, 157, 0.1) 30%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.hero-text {
  flex: 1;
  padding-right: 60px;
}

.hero-image {
  flex: 1;
  text-align: center;
  position: relative;
}

.hero-image:before {
  content: "";
  position: absolute;
  top: -15px;
  right: -15px;
  width: 100%;
  height: 100%;
  background: var(--rainbow-gradient);
  border-radius: 15px;
  z-index: -1;
  transform: rotate(-2deg);
  opacity: 0.8;
}

.hero-image img {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: perspective(1000px) rotateY(-5deg);
  transition: var(--transition);
  border: 5px solid white;
}

.hero-image:hover img {
  transform: perspective(1000px) rotateY(0deg);
}

.tagline {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}

.tagline:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--rainbow-gradient);
  border-radius: 2px;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: var(--rainbow-gradient);
  -webkit-background-clip: text;
  /* -webkit-text-fill-color: transparent; */
  -webkit-text-fill-color: #000;
  background-clip: text;
}

.hero p {
  font-size: 1.15rem;
  color: var(--gray-color);
  margin-bottom: 2rem;
}

/* UPDATED: Authenticity Section with Image on Left */
.authenticity-section {
  background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.authenticity-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--rainbow-gradient);
}

.authenticity-section:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(58, 134, 255, 0.1) 0%,
    rgba(255, 107, 157, 0.1) 50%,
    transparent 70%
  );
  z-index: 0;
}

.authenticity-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.authenticity-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}

.authenticity-image {
  flex: 1;
  position: relative;
}

/* Updated decorative elements for left side positioning */
.authenticity-image:before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100%;
  height: 100%;
  background: var(--rainbow-gradient);
  border-radius: 15px;
  z-index: -1;
  transform: rotate(-2deg);
  opacity: 0.7;
}

.authenticity-image:after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 40px;
  height: 40px;
  background: var(--yellow-gradient);
  border-radius: 50%;
  z-index: 2;
}

.authenticity-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
  border: 5px solid white;
}

.authenticity-image:hover img {
  transform: scale(1.02);
}

.authenticity-text {
  flex: 1;
}

.authenticity-quote-main {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: "Playfair Display", serif;
  line-height: 1.4;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.authenticity-quote-main:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100px;
  height: 3px;
  background: var(--rainbow-gradient);
}

.authenticity-quote-strong {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--secondary-color);
  font-family: "Playfair Display", serif;
  line-height: 1.2;
  margin-top: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--rainbow-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.authenticity-underline {
  width: 150px;
  height: 4px;
  background: var(--rainbow-gradient);
  margin: 30px 0;
  border-radius: 2px;
}

/* UPDATED: Billboard Section - Pink, Blue, Yellow Theme */
.billboard-section {
  background: var(--billboard-bg);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.billboard-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 10% 20%,
      rgba(58, 134, 255, 0.15) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(255, 107, 157, 0.15) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(255, 209, 102, 0.15) 0%,
      transparent 40%
    );
  z-index: 0;
}

.billboard-container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.billboard-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
  position: relative;
}

.billboard-line {
  display: block;
  font-size: 4.5rem;
  font-weight: 800;
  font-family: "Playfair Display", serif;
  line-height: 1.1;
  color: var(--billboard-text);
  letter-spacing: -1px;
  position: relative;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.billboard-line:nth-child(1) {
  color: var(--billboard-blue);
}
.billboard-line:nth-child(2) {
  color: var(--billboard-accent);
  font-size: 5rem;
  margin: 10px 0;
  position: relative;
  display: inline-block;
  background: var(--pink-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}
.billboard-line:nth-child(3) {
  color: var(--billboard-gold);
}
.billboard-line:nth-child(4) {
  color: var(--billboard-blue);
}

.billboard-line.fear:after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--pink-gradient);
}

.billboard-divider {
  width: 100%;
  max-width: 400px;
  height: 2px;
  background: var(--rainbow-gradient);
  margin: 40px auto;
  position: relative;
}

.billboard-divider:before,
.billboard-divider:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: var(--rainbow-gradient);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 209, 102, 0.5);
}

.billboard-divider:before {
  left: 0;
}

.billboard-divider:after {
  right: 0;
}

.billboard-message {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 60px 50px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  position: relative;
  margin-bottom: 40px;
  backdrop-filter: blur(10px);
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box,
    var(--rainbow-gradient) border-box;
}

.billboard-message:before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  background: linear-gradient(
    135deg,
    rgba(58, 134, 255, 0.1),
    rgba(255, 107, 157, 0.1),
    rgba(255, 209, 102, 0.1)
  );
  border-radius: 25px;
  z-index: -1;
}

.billboard-text {
  font-size: 2.2rem;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  color: var(--billboard-text);
  line-height: 1.4;
  margin-bottom: 30px;
}

.billboard-text span {
  position: relative;
  display: inline-block;
  background: var(--rainbow-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.billboard-text span:nth-child(odd) {
  background: var(--blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.billboard-text span:nth-child(even) {
  background: var(--pink-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.billboard-subtext {
  font-size: 1.3rem;
  color: var(--dark-color);
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  border-left: 4px solid;
  border-image: var(--rainbow-gradient) 1;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.billboard-cta {
  margin-top: 50px;
}

.billboard-url {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--pink-gradient);
  color: white;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 10px 25px rgba(255, 107, 157, 0.3);
}

.billboard-url:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--rainbow-gradient);
  transition: var(--transition);
  z-index: -1;
  border-radius: 50px;
}

.billboard-url:hover:before {
  left: 0;
}

.billboard-url:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 40px rgba(255, 107, 157, 0.4);
  color: white;
}

.billboard-icon {
  margin-right: 12px;
  font-size: 1.2rem;
}

/* Chase Courage Video Section - UPDATED BACKGROUND */
.chase-courage-section {
  background: linear-gradient(135deg, #fff9e6 0%, #e6f0ff 100%);
  position: relative;
  overflow: hidden;
}

.chase-courage-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      45deg,
      transparent 45%,
      rgba(58, 134, 255, 0.05) 50%,
      transparent 55%
    ),
    linear-gradient(
      -45deg,
      transparent 45%,
      rgba(255, 107, 157, 0.05) 50%,
      transparent 55%
    ),
    repeating-radial-gradient(
      circle at 50% 50%,
      transparent 0,
      rgba(255, 209, 102, 0.05) 10px,
      transparent 20px
    );
}

.video-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
  transform: perspective(1000px) rotateX(2deg);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border: 5px solid white;
}

.video-container:before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: var(--rainbow-gradient);
  border-radius: 25px;
  z-index: -1;
}

.video-container:hover {
  transform: perspective(1000px) rotateX(0deg) scale(1.02);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(58, 134, 255, 0.2),
    rgba(255, 107, 157, 0.2)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.video-container:hover .video-overlay {
  opacity: 1;
}

.play-icon {
  width: 80px;
  height: 80px;
  background: var(--yellow-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 2rem;
  transform: scale(0.8);
  transition: transform 0.4s ease;
  pointer-events: auto;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.video-container:hover .play-icon {
  transform: scale(1);
}

.video-content {
  text-align: center;
  margin-top: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.video-content:before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: var(--rainbow-gradient);
  border-radius: 25px;
  z-index: -1;
}

/* Updated YouTube Video Player Styles */
.youtube-player {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  background: #000;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
}

.youtube-player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.youtube-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(58, 134, 255, 0.3),
    rgba(255, 107, 157, 0.3)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.3s ease;
  z-index: 10;
  pointer-events: none; /* Allow clicks to pass through */
}

.youtube-overlay:hover {
  background: linear-gradient(
    135deg,
    rgba(58, 134, 255, 0.4),
    rgba(255, 107, 157, 0.4)
  );
}

.youtube-player.playing .youtube-overlay {
  opacity: 0;
  pointer-events: none; /* Hide overlay when video is playing */
}

.play-button {
  width: 80px;
  height: 80px;
  background: var(--yellow-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 2rem;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
  pointer-events: auto; /* Allow button clicks */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 20;
  position: relative;
}

.play-button:hover {
  transform: scale(1.1);
  background: var(--rainbow-gradient);
  color: white;
}

.video-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: white;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px;
  border-radius: 5px;
  backdrop-filter: blur(5px);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.youtube-overlay:hover .video-info {
  opacity: 1;
  transform: translateY(0);
}

.video-title {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.video-duration {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Newsletter Section - UPDATED COLORS */
.newsletter-section {
  background: var(--blue-gradient);
  color: white;
  position: relative;
  overflow: hidden;
}

.newsletter-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 20% 80%,
      rgba(255, 209, 102, 0.2) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 107, 157, 0.2) 0%,
      transparent 50%
    ),
    repeating-linear-gradient(
      60deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.1) 2px,
      rgba(255, 255, 255, 0.1) 4px
    );
}

.newsletter-container {
  position: relative;
  z-index: 1;
}

.newsletter-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.newsletter-text {
  padding-right: 30px;
}

.newsletter-text .section-header {
  text-align: left;
  margin-bottom: 40px;
}

.newsletter-text .section-header h2 {
  color: white;
}

.newsletter-text .section-header h2:after {
  left: 0;
  transform: none;
  background: var(--accent-color);
}

.benefits-list {
  list-style: none;
  margin: 30px 0;
}

.benefits-list li {
  margin-bottom: 15px;
  padding-left: 40px;
  position: relative;
}

.benefits-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  background: var(--pink-gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1rem;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.newsletter-form-box {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 25px;
  padding: 50px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  color: var(--dark-color);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box,
    var(--rainbow-gradient) border-box;
}

.newsletter-form-box:before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 209, 102, 0.1) 0%,
    rgba(255, 107, 157, 0.1) 50%,
    transparent 70%
  );
}

.newsletter-form-box h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.form-subtitle {
  color: var(--gray-color);
  margin-bottom: 30px;
  font-size: 1rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  position: relative;
}

.form-group i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--secondary-color);
}

.newsletter-form input {
  width: 100%;
  padding: 18px 20px 18px 50px;
  border: 2px solid #e2e8f0;
  border-radius: 50px;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  transition: var(--transition);
  background-color: white;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.2);
}

.privacy-note {
  font-size: 0.85rem;
  color: var(--gray-color);
  text-align: center;
  margin-top: 20px;
  line-height: 1.5;
}

.privacy-note a {
  color: var(--secondary-color);
  text-decoration: underline;
}

.newsletter-section h2 {
  color: white;
}

/* Book Section - UPDATED BACKGROUND */
.book-section {
  background: linear-gradient(135deg, #fff9e6 0%, #ffe4ec 100%);
  position: relative;
  overflow: hidden;
}

.book-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 90% 10%,
      rgba(58, 134, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 10% 90%,
      rgba(255, 107, 157, 0.1) 0%,
      transparent 50%
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 10px,
      rgba(255, 209, 102, 0.05) 10px,
      rgba(255, 209, 102, 0.05) 20px
    );
}

.book-content {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.book-cover {
  flex: 1;
  text-align: center;
  position: relative;
}

.book-cover:before {
  content: "";
  position: absolute;
  top: -15px;
  right: -15px;
  width: 100%;
  height: 100%;
  background: var(--rainbow-gradient);
  border-radius: 10px;
  z-index: -1;
  transform: rotate(2deg);
  opacity: 0.7;
}

.book-cover:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: -10px;
  width: 40px;
  height: 40px;
  background: var(--yellow-gradient);
  border-radius: 50%;
  z-index: 2;
}

.book-cover img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  border: 5px solid white;
}

.book-cover:hover img {
  transform: scale(1.02) rotate(1deg);
}

.book-info {
  flex: 1;
}

.book-title {
  font-size: 2.2rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
  background: var(--pink-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Book Video Container Styles - ADDED */
.book-video-container {
  position: relative;
  max-width: 80%;
  margin: 40px auto 0;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transform: perspective(800px) rotateY(-2deg);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border: 4px solid white;
}

.book-video-container:before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: var(--rainbow-gradient);
  border-radius: 20px;
  z-index: -1;
}

.book-video-container:hover {
  transform: perspective(800px) rotateY(0deg) scale(1.02);
}

.book-video-container .video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  background: #000;
}

.book-video-container .video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  cursor: pointer;
}

.book-video-container .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(58, 134, 255, 0.3),
    rgba(255, 107, 157, 0.3)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.4s ease;
  pointer-events: auto;
  cursor: pointer;
  z-index: 2;
}

.book-video-container .video-overlay:hover {
  background: linear-gradient(
    135deg,
    rgba(58, 134, 255, 0.4),
    rgba(255, 107, 157, 0.4)
  );
}

.book-video-container .play-icon {
  width: 60px;
  height: 60px;
  background: var(--yellow-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.5rem;
  transform: scale(1);
  transition: transform 0.3s ease, background 0.3s ease;
  pointer-events: auto;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.book-video-container .play-icon:hover {
  transform: scale(1.1);
  background: var(--rainbow-gradient);
  color: white;
}
.book-video-container .video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Changed from contain to cover for better thumbnail fit */
  background: #000;
  cursor: pointer;
}

/* Style for when video hasn't loaded yet */
.book-video-container .video-wrapper video[poster] {
  background-size: cover;
  background-position: center;
}

/* About Section - MOVED AFTER BOOK SECTION - UPDATED BACKGROUND */
.about-section {
  background: linear-gradient(135deg, #ffe4ec 0%, #e6f0ff 100%);
  position: relative;
  overflow: hidden;
}

.about-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 20% 30%,
      rgba(58, 134, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(255, 107, 157, 0.1) 0%,
      transparent 50%
    ),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 5px,
      rgba(255, 209, 102, 0.05) 5px,
      rgba(255, 209, 102, 0.05) 10px
    );
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 1;
}

.section-header p {
  max-width: 700px;
  margin: 0 auto 1.5rem;
  color: var(--gray-color);
}

.about-content {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.about-image {
  flex: 1;
  position: relative;
}

.about-image:before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  background: var(--rainbow-gradient);
  border-radius: 15px;
  z-index: -1;
  transform: rotate(-2deg);
  opacity: 0.7;
}

.about-image:after {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  width: 50px;
  height: 50px;
  background: var(--yellow-gradient);
  border-radius: 50%;
  z-index: 2;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
  border: 5px solid white;
}

.about-image:hover img {
  transform: scale(1.02);
}

.about-text {
  flex: 1;
}

.highlight {
  background: linear-gradient(
    135deg,
    rgba(255, 209, 102, 0.15),
    rgba(255, 107, 157, 0.1)
  );
  padding: 35px;
  border-radius: 15px;
  margin: 35px 0;
  border-left: 4px solid;
  border-image: var(--rainbow-gradient) 1;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.highlight:before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 4rem;
  background: var(--rainbow-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.3;
  font-family: "Playfair Display", serif;
}

.highlight:after {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  background: var(--yellow-gradient);
  border-radius: 50%;
}

/* Testimonials Section - UPDATED BACKGROUND for visual distinction */
.testimonials-section {
  background: linear-gradient(135deg, #ffe4ec 0%, #fff9e6 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      90deg,
      transparent 48%,
      rgba(58, 134, 255, 0.05) 50%,
      transparent 52%
    ),
    linear-gradient(
      0deg,
      transparent 48%,
      rgba(255, 107, 157, 0.05) 50%,
      transparent 52%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(255, 209, 102, 0.05) 0%,
      transparent 50%
    );
}

.testimonial-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background-color: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  position: relative;
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  transition: var(--transition);
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box,
    var(--rainbow-gradient) border-box;
}

.testimonial-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}

.testimonial-card:before {
  content: "\201C";
  font-size: 6rem;
  background: var(--rainbow-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.1;
  position: absolute;
  top: -20px;
  left: 10px;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 25px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.testimonial-author {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1rem;
}

.testimonial-author:before {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--rainbow-gradient);
  margin-bottom: 10px;
}

/* Media Section - UPDATED BACKGROUND */
.media-section {
  background: linear-gradient(135deg, #ffe4ec 0%, #e6f0ff 100%);
  position: relative;
  overflow: hidden;
}

.media-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 50% 50%,
      rgba(58, 134, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 20% 80%,
      rgba(255, 107, 157, 0.1) 0%,
      transparent 50%
    ),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 15px,
      rgba(255, 209, 102, 0.05) 15px,
      rgba(255, 209, 102, 0.05) 30px
    );
}

.media-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.media-card {
  background-color: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box,
    var(--rainbow-gradient) border-box;
}

.media-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}

.media-icon {
  height: 120px;
  background: var(--blue-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

.media-icon:before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.2) 0%,
    transparent 70%
  );
}

.media-content {
  padding: 30px;
}

/* Footer - UPDATED COLORS */
footer {
  background: var(--rainbow-gradient);
  color: white;
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}

footer:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--rainbow-gradient);
}

footer:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 20% 30%,
      rgba(255, 209, 102, 0.2) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(255, 107, 157, 0.2) 0%,
      transparent 50%
    ),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.1) 2px,
      rgba(255, 255, 255, 0.1) 4px
    );
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.footer-logo {
  flex: 1;
  min-width: 250px;
  margin-bottom: 40px;
}

.footer-logo .logo {
  margin-bottom: 20px;
}

.footer-logo img {
  height: 70px;
  width: auto;
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 300px;
  margin-top: 15px;
  font-size: 1rem;
  line-height: 1.6;
}

.footer-links {
  flex: 1;
  min-width: 200px;
  margin-bottom: 30px;
}

.footer-links h3 {
  color: var(--accent-color);
  margin-bottom: 25px;
  font-size: 1.3rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  transition: var(--transition);
  display: flex;
  align-items: center;
  width: 100%;
}

.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.footer-links i {
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 1.2rem;
  transition: var(--transition);
  backdrop-filter: blur(5px);
}

.social-icons a:hover {
  background-color: var(--accent-color);
  color: var(--primary-color);
  transform: translateY(-5px) scale(1.1);
}

.copyright {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(5px);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  margin-top: 20px;
}

.copyright p {
  margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 1100px) {
  h1 {
    font-size: 2.8rem;
  }
  h2 {
    font-size: 2.2rem;
  }
  .hero h1 {
    font-size: 3rem;
  }
  .authenticity-quote-main {
    font-size: 2rem;
  }
  .authenticity-quote-strong {
    font-size: 3rem;
  }
  .newsletter-content {
    gap: 40px;
  }
  .billboard-line {
    font-size: 4rem;
  }
  .billboard-line:nth-child(2) {
    font-size: 4.5rem;
  }
  .billboard-text {
    font-size: 2rem;
  }
  .book-video-container {
    transform: none;
  }
  .book-video-container:hover {
    transform: scale(1.02);
  }
}

@media (max-width: 992px) {
  .hero-content,
  .about-content,
  .book-content,
  .authenticity-wrapper {
    flex-direction: column;
  }
  .hero-text,
  .about-text,
  .book-info,
  .authenticity-text {
    padding-right: 0;
    margin-bottom: 50px;
  }
  .newsletter-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .newsletter-text {
    padding-right: 0;
    text-align: center;
  }
  .newsletter-text .section-header {
    text-align: center;
  }
  .newsletter-text .section-header h2:after {
    left: 50%;
    transform: translateX(-50%);
  }
  .hero:before,
  .hero:after {
    display: none;
  }
  .hero-image img {
    transform: none;
  }
  .about-image:before,
  .about-image:after {
    display: none;
  }
  .book-cover:before,
  .book-cover:after {
    display: none;
  }
  .authenticity-image:before,
  .authenticity-image:after {
    display: none;
  }
  .authenticity-quote-main:after {
    left: 50%;
    transform: translateX(-50%);
  }
  .billboard-line {
    font-size: 3.5rem;
  }
  .billboard-line:nth-child(2) {
    font-size: 4rem;
  }
  .billboard-text {
    font-size: 1.8rem;
  }
  .billboard-subtext {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: white;
    flex-direction: column;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 999;
    align-items: flex-start;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links li {
    margin: 0 0 20px 0;
  }
  .nav-contact-btn {
    margin-left: 0;
    margin-top: 10px;
  }
  .mobile-menu-btn {
    display: block;
  }
  section {
    padding: 80px 0;
  }
  .hero {
    padding-top: 140px;
  }
  .newsletter-form-box {
    padding: 40px 30px;
  }
  .testimonial-card,
  .media-card {
    min-width: 100%;
  }
  .footer-content {
    flex-direction: column;
  }
  .authenticity-quote-main {
    font-size: 1.8rem;
  }
  .authenticity-quote-strong {
    font-size: 2.5rem;
  }
  .billboard-line {
    font-size: 2.8rem;
  }
  .billboard-line:nth-child(2) {
    font-size: 3.2rem;
  }
  .billboard-text {
    font-size: 1.6rem;
  }
  .billboard-subtext {
    font-size: 1.1rem;
  }
  .billboard-message {
    padding: 40px 30px;
  }
  .billboard-url {
    padding: 16px 35px;
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2.3rem;
  }
  h2 {
    font-size: 1.9rem;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .btn {
    padding: 14px 30px;
  }
  .authenticity-quote-main {
    font-size: 1.6rem;
  }
  .authenticity-quote-strong {
    font-size: 2.2rem;
  }
  .newsletter-form input {
    padding: 16px 20px 16px 45px;
  }
  .billboard-line {
    font-size: 2.3rem;
  }
  .billboard-line:nth-child(2) {
    font-size: 2.7rem;
  }
  .billboard-text {
    font-size: 1.4rem;
  }
  .billboard-subtext {
    font-size: 1rem;
  }
  .billboard-message {
    padding: 30px 20px;
  }
  .billboard-url {
    padding: 14px 30px;
    font-size: 1rem;
  }
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 1s ease forwards;
}
.slide-up {
  animation: slideUp 0.8s ease forwards;
}
.slide-left {
  animation: slideLeft 0.8s ease forwards;
}
.slide-right {
  animation: slideRight 0.8s ease forwards;
}
.delay-1 {
  animation-delay: 0.2s;
}
.delay-2 {
  animation-delay: 0.4s;
}
.delay-3 {
  animation-delay: 0.6s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.float {
  animation: float 3s ease-in-out infinite;
}

/* NEW: Confetti background elements */
.confetti {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--rainbow-gradient);
  border-radius: 50%;
  opacity: 0.7;
  z-index: 0;
}

.floating-shape {
  position: absolute;
  opacity: 0.1;
  z-index: 0;
}

.circle {
  border-radius: 50%;
}

.triangle {
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
