
:root {
  --hot-pink: #FF1493;
  --magenta: #FF0080;
  --electric-pink: #FF3399;
  --carnival-green: #00FF7F;
  --lime-green: #32CD32;
  --emerald: #00D26A;
  --deep-purple: #1A0A2E;
  --royal-purple: #2D1B4E;
  --midnight: #0D0612;
  --gold: #FFD700;
  --orange: #FF6B35;
  --red: #FF2D55;
  --white: #FFFFFF;
  --cream: #FFF8F0;
}

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

body {
  font-family: 'Poppins', sans-serif;
  background: var(--midnight);
  color: var(--white);
  overflow-x: hidden;
}

/* Animated carnival background */
.carnival-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background:
          radial-gradient(ellipse at 10% 20%, rgba(255, 20, 147, 0.15) 0%, transparent 40%),
          radial-gradient(ellipse at 90% 80%, rgba(0, 255, 127, 0.1) 0%, transparent 40%),
          radial-gradient(ellipse at 50% 50%, rgba(45, 27, 78, 0.8) 0%, transparent 70%),
          var(--midnight);
}

/* Floating feathers/confetti */
.confetti {
  position: fixed;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.confetti span {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--hot-pink);
  border-radius: 50%;
  animation: fall 8s linear infinite;
  opacity: 0.6;
}

.confetti span:nth-child(2) { left: 10%; animation-delay: 1s; background: var(--carnival-green); width: 8px; height: 8px; }
.confetti span:nth-child(3) { left: 20%; animation-delay: 2s; background: var(--gold); width: 12px; height: 12px; }
.confetti span:nth-child(4) { left: 30%; animation-delay: 3s; background: var(--magenta); }
.confetti span:nth-child(5) { left: 40%; animation-delay: 4s; background: var(--lime-green); width: 6px; height: 6px; }
.confetti span:nth-child(6) { left: 50%; animation-delay: 0.5s; background: var(--orange); }
.confetti span:nth-child(7) { left: 60%; animation-delay: 1.5s; background: var(--carnival-green); width: 14px; height: 14px; }
.confetti span:nth-child(8) { left: 70%; animation-delay: 2.5s; background: var(--hot-pink); }
.confetti span:nth-child(9) { left: 80%; animation-delay: 3.5s; background: var(--gold); width: 8px; height: 8px; }
.confetti span:nth-child(10) { left: 90%; animation-delay: 4.5s; background: var(--magenta); width: 10px; height: 10px; }

@keyframes fall {
  0% { transform: translateY(-100vh) rotate(0deg); opacity: 1; }
  100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: linear-gradient(180deg, rgba(13, 6, 18, 0.95) 0%, transparent 100%);
  backdrop-filter: blur(10px);
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  height: 36px;
  filter: brightness(0) invert(1);
}

.logo-divider {
  color: var(--hot-pink);
  font-size: 1.5rem;
  font-weight: 300;
}

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

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--hot-pink), var(--carnival-green));
  transition: width 0.3s;
}

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

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

/* Hero Section */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
          linear-gradient(135deg, rgba(13, 6, 18, 0.7) 0%, rgba(45, 27, 78, 0.6) 50%, rgba(13, 6, 18, 0.8) 100%),
          url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M30,20 Q50,5 70,20 T90,50 T70,80 T30,80 T10,50 T30,20' fill='none' stroke='%23FF1493' stroke-width='0.5' opacity='0.3'/%3E%3C/svg%3E");
  background-size: cover;
  z-index: 1;
}

/* Decorative carnival elements */
.carnival-decor {
  position: absolute;
  font-size: 6rem;
  opacity: 0.1;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

.decor-1 { top: 15%; left: 5%; color: var(--hot-pink); animation-delay: 0s; }
.decor-2 { top: 60%; right: 5%; color: var(--carnival-green); animation-delay: 2s; font-size: 5rem; }
.decor-3 { bottom: 20%; left: 10%; color: var(--gold); animation-delay: 4s; font-size: 4rem; }
.decor-4 { top: 30%; right: 15%; color: var(--magenta); animation-delay: 1s; font-size: 3rem; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 10;
  max-width: 1000px;
}

.theme-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--hot-pink) 0%, var(--magenta) 100%);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 0 30px rgba(255, 20, 147, 0.5);
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  0% { box-shadow: 0 0 20px rgba(255, 20, 147, 0.4); }
  100% { box-shadow: 0 0 40px rgba(255, 20, 147, 0.7), 0 0 60px rgba(0, 255, 127, 0.3); }
}

.hero-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(4rem, 15vw, 10rem);
  line-height: 0.9;
  margin-bottom: 0.5rem;
  letter-spacing: 4px;
}

.hero-title .carnival {
  display: block;
  background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.hero-title .sixty-three {
  display: block;
  font-size: 1.4em;
  background: linear-gradient(135deg, var(--hot-pink) 0%, var(--magenta) 30%, var(--carnival-green) 70%, var(--lime-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(255, 20, 147, 0.5));
}

.hero-tagline {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--carnival-green);
  margin-bottom: 1.5rem;
  text-shadow: 0 0 20px rgba(0, 255, 127, 0.5);
}

.hero-desc {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 650px;
  margin: 0 auto 2.5rem;
  opacity: 0.9;
}

.hero-dates {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 20, 147, 0.3);
  padding: 1rem 2rem;
  border-radius: 60px;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.hero-dates span {
  font-weight: 700;
  color: var(--hot-pink);
}

.cta-group {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 1.25rem 3rem;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-primary {
  background: linear-gradient(135deg, var(--hot-pink) 0%, var(--magenta) 100%);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(255, 20, 147, 0.4);
}

.cta-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 50px rgba(255, 20, 147, 0.5);
}

.cta-secondary {
  background: transparent;
  border: 2px solid var(--carnival-green);
  color: var(--carnival-green);
}

.cta-secondary:hover {
  background: var(--carnival-green);
  color: var(--midnight);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 255, 127, 0.3);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  z-index: 10;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

.scroll-indicator svg {
  width: 30px;
  height: 30px;
  stroke: var(--hot-pink);
}

/* About Carnival Section */
.about {
  padding: 8rem 2rem;
  background: linear-gradient(180deg, var(--midnight) 0%, var(--deep-purple) 50%, var(--midnight) 100%);
  position: relative;
  z-index: 10;
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}

.about-text h2 .highlight-pink {
  color: var(--hot-pink);
}

.about-text h2 .highlight-green {
  color: var(--carnival-green);
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.heritage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.heritage-tag {
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tag-mas {
  background: linear-gradient(135deg, var(--hot-pink), var(--magenta));
  color: white;
}

.tag-rhythm {
  background: linear-gradient(135deg, var(--carnival-green), var(--lime-green));
  color: var(--midnight);
}

.tag-family {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--midnight);
}

.about-visual {
  position: relative;
}

.event-highlights {
  background: linear-gradient(145deg, rgba(255, 20, 147, 0.1) 0%, rgba(0, 255, 127, 0.05) 100%);
  border: 1px solid rgba(255, 20, 147, 0.2);
  border-radius: 24px;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
}

.event-highlights h3 {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.8rem;
  color: var(--carnival-green);
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.event-list {
  display: grid;
  gap: 1rem;
}

.event-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  transition: all 0.3s;
}

.event-item:hover {
  background: rgba(255, 20, 147, 0.1);
  transform: translateX(5px);
}

.event-date {
  background: var(--hot-pink);
  color: white;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.8rem;
  min-width: 70px;
  text-align: center;
}

.event-name {
  font-weight: 600;
  font-size: 0.95rem;
}

/* Giveaway Section */
.giveaway {
  padding: 8rem 2rem;
  background: var(--midnight);
  position: relative;
  z-index: 10;
}

.giveaway::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
          radial-gradient(circle at 20% 30%, rgba(255, 20, 147, 0.15) 0%, transparent 40%),
          radial-gradient(circle at 80% 70%, rgba(0, 255, 127, 0.1) 0%, transparent 40%);
  pointer-events: none;
}

.giveaway-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(3rem, 8vw, 5rem);
  margin-bottom: 1rem;
  letter-spacing: 3px;
}

.section-header h2 .highlight-pink {
  color: var(--hot-pink);
}

.section-header h2 .highlight-green {
  color: var(--carnival-green);
}

.section-header p {
  font-size: 1.15rem;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
}

.partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.partner-logo {
  padding: 1.25rem 2rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}

.partner-logo:hover {
  border-color: var(--hot-pink);
  background: rgba(255, 20, 147, 0.05);
}

.partner-logo img {
  height: 40px;
  filter: brightness(0) invert(1);
}

.partner-x {
  font-family: 'Bebas Neue', cursive;
  font-size: 2rem;
  background: linear-gradient(135deg, var(--hot-pink), var(--carnival-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.giveaway-card {
  background: linear-gradient(145deg, rgba(45, 27, 78, 0.6) 0%, rgba(26, 10, 46, 0.8) 100%);
  border: 2px solid rgba(255, 20, 147, 0.3);
  border-radius: 32px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.giveaway-card::before {
  content: '🎭';
  position: absolute;
  top: -30px;
  right: -30px;
  font-size: 12rem;
  opacity: 0.05;
  transform: rotate(15deg);
}

.prize-banner {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, var(--hot-pink) 0%, var(--magenta) 100%);
  border-radius: 20px;
  position: relative;
  box-shadow: 0 20px 50px rgba(255, 20, 147, 0.3);
}

.prize-banner h3 {
  font-family: 'Bebas Neue', cursive;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}

.prize-banner p {
  font-size: 1.2rem;
  opacity: 0.95;
}

.prize-badge {
  position: absolute;
  top: -15px;
  right: 30px;
  background: var(--carnival-green);
  color: var(--midnight);
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-weight: 800;
  font-size: 0.85rem;
  transform: rotate(5deg);
  text-transform: uppercase;
}

.how-to-enter-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  letter-spacing: 2px;
}

.how-to-enter-title span {
  color: var(--carnival-green);
}

.how-to-enter {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.entry-step {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s;
  position: relative;
}

.entry-step:hover {
  transform: translateY(-5px);
  border-color: var(--hot-pink);
  background: rgba(255, 20, 147, 0.05);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 20px;
  background: linear-gradient(135deg, var(--hot-pink), var(--magenta));
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 5px 15px rgba(255, 20, 147, 0.4);
}

.entry-step h4 {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  letter-spacing: 1px;
  color: var(--white);
}

.entry-step p {
  opacity: 0.8;
  line-height: 1.7;
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s;
  font-weight: 500;
}

.social-link:hover {
  transform: scale(1.05);
}

.social-link.instagram {
  background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.social-link.facebook {
  background: #1877F2;
}

.social-link.tickets {
  background: linear-gradient(135deg, var(--carnival-green), var(--lime-green));
  color: var(--midnight);
}

.deadline-banner {
  text-align: center;
  padding: 1.5rem 2rem;
  background: linear-gradient(90deg, var(--carnival-green), var(--lime-green));
  border-radius: 16px;
  margin-top: 2rem;
  color: var(--midnight);
}

.deadline-banner p {
  font-size: 1rem;
  font-weight: 600;
}

.deadline-banner span {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.4rem;
  letter-spacing: 1px;
}

/* Terms Section */
.terms {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, var(--midnight) 0%, var(--deep-purple) 50%, var(--midnight) 100%);
  position: relative;
  z-index: 10;
}

.terms-container {
  max-width: 900px;
  margin: 0 auto;
}

.terms-header {
  text-align: center;
  margin-bottom: 3rem;
}

.terms-header h2 {
  font-family: 'Bebas Neue', cursive;
  font-size: 2.5rem;
  color: var(--hot-pink);
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}

.terms-header p {
  opacity: 0.7;
}

.terms-content {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 20, 147, 0.2);
  border-radius: 24px;
  padding: 3rem;
  max-height: 600px;
  overflow-y: auto;
}

.terms-content::-webkit-scrollbar {
  width: 8px;
}

.terms-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

.terms-content::-webkit-scrollbar-thumb {
  background: var(--hot-pink);
  border-radius: 4px;
}

.terms-section {
  margin-bottom: 2rem;
}

.terms-section h3 {
  color: var(--carnival-green);
  font-family: 'Bebas Neue', cursive;
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.terms-section h3::before {
  content: '▸';
  color: var(--hot-pink);
}

.terms-section p, .terms-section li {
  opacity: 0.85;
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.terms-section ul {
  list-style: none;
  padding-left: 1.5rem;
}

.terms-section ul li::before {
  content: '•';
  color: var(--hot-pink);
  margin-right: 0.5rem;
}

/* Footer */
.footer {
  padding: 4rem 2rem;
  background: var(--midnight);
  border-top: 1px solid rgba(255, 20, 147, 0.2);
  position: relative;
  z-index: 10;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand img {
  height: 35px;
}

.footer-brand span {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.footer-brand .pink { color: var(--hot-pink); }
.footer-brand .green { color: var(--carnival-green); }

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.7;
  transition: all 0.3s;
  font-size: 0.9rem;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--hot-pink);
}

.footer-copy {
  text-align: center;
  width: 100%;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  opacity: 0.5;
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 900px) {
  .about-content {
    grid-template-columns: 1fr;
  }

  .nav {
    padding: 1rem;
  }

  .nav-links {
    display: none;
  }

  .giveaway-card {
    padding: 2rem;
  }

  .partner-logos {
    flex-direction: column;
  }

  .hero-dates {
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .cta-group {
    flex-direction: column;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
  }

  .heritage-tags {
    flex-direction: column;
  }

  .terms-content {
    padding: 1.5rem;
  }

  .prize-banner {
    padding: 1.5rem;
  }
}
