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

body {
  font-family: &quot;Lato&quot;, sans-serif;
  background: linear-gradient(135deg, #000000 0%, #240046 25%, #000000 50%, #240046 75%, #000000 100%);
  color: #ffffff;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.poster-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  position: relative;
  z-index: 2;
}

.title-section {
  text-align: center;
  margin-bottom: 50px;
}

.main-title {
  font-family: &quot;Shrikhand&quot;, serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  background: linear-gradient(45deg, #FF007F, #00FFFF, #FFD700, #00FFFF);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(255, 0, 127, 0.6), 0 0 50px rgba(0, 255, 255, 0.4);
  letter-spacing: -2px;
  line-height: 0.9;
  animation: shimmer 3s ease-in-out infinite;
  margin-bottom: 20px;
}

@keyframes shimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.subtitle {
  font-family: &quot;Righteous&quot;, sans-serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 600;
  color: #00FFFF;
  letter-spacing: 8px;
  margin-bottom: 10px;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
}

.tagline {
  font-family: &quot;Montserrat&quot;, sans-serif;
  font-size: clamp(0.9rem, 2vw, 1.3rem);
  font-weight: 300;
  color: #FF007F;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.image-section {
  position: relative;
  margin: 60px 0;
  display: flex;
  justify-content: center;
}

.circular-frame {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  border: 8px solid transparent;
  background: linear-gradient(45deg, #FF007F, #00FFFF, #FFD700);
  background-clip: padding-box;
  box-shadow: 0 0 50px rgba(255, 0, 127, 0.6),
    0 0 80px rgba(0, 255, 255, 0.4),
    inset 0 0 30px rgba(0, 0, 0, 0.3);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.circular-frame::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: 50%;
  background: linear-gradient(
    45deg,
    #FF007F,
    transparent,
    #00FFFF,
    transparent,
    #FFD700
  );
  z-index: -1;
  animation: rotate 15s linear infinite reverse;
}

.image-container {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

.main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.1) brightness(0.9) sepia(0.1);
  transition: transform 0.3s ease;
}

.circular-frame:hover .main-image {
  transform: scale(1.05);
}

.watch-party-section {
  text-align: center;
  margin: 60px 0;
  padding: 40px;
  background: rgba(36, 0, 70, 0.4);
  border: 2px solid rgba(255, 0, 127, 0.5);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5),
              0 0 30px rgba(255, 0, 127, 0.3);
}

.watch-party-title {
  font-family: &quot;Shrikhand&quot;, serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #FF007F;
  margin-bottom: 20px;
  text-shadow: 0 0 30px rgba(255, 0, 127, 0.8),
               0 0 50px rgba(0, 255, 255, 0.4),
               0 5px 10px rgba(0, 0, 0, 0.5);
}

.invitation-text {
  font-family: &quot;Lato&quot;, sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  color: #00FFFF;
  margin-bottom: 30px;
  font-style: italic;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5),
               0 0 15px rgba(0, 255, 255, 0.4);
}

.tagline-text {
  font-family: &quot;Righteous&quot;, sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.8rem);
  color: #FFD700;
  margin-bottom: 25px;
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.event-details {
  background: linear-gradient(
    135deg,
    rgba(36, 0, 70, 0.7),
    rgba(0, 0, 0, 0.8)
  );
  border-radius: 15px;
  padding: 30px;
  margin: 40px 0;
  border: 1px solid rgba(0, 255, 255, 0.4);
}

.detail-item {
  font-family: &quot;Montserrat&quot;, sans-serif;
  font-size: clamp(1rem, 2vw, 1.4rem);
  margin: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(218, 165, 32, 0.3);
}

.detail-label {
  font-weight: 600;
  color: #FF007F;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(255, 0, 127, 0.5);
}

.detail-value {
  color: #00FFFF;
  font-weight: 300;
}

.decorative-border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 4px solid transparent;
  border-image: linear-gradient(
      45deg,
      #d2691e,
      transparent,
      #daa520,
      transparent
    )
    1;
  pointer-events: none;
}

.theme-accent {
  color: #FFD700;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
  font-weight: bold;
}

.decoration {
  font-size: 2rem;
  color: #FF007F;
  margin: 0 10px;
  animation: pulse 2s infinite;
  filter: drop-shadow(0 0 10px rgba(255, 0, 127, 0.6));
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

.rsvp-button {
  background: linear-gradient(135deg, #FF007F, #FFD700, #FF007F);
  border: 2px solid #00FFFF;
  color: #000000;
  padding: 15px 30px;
  border-radius: 25px;
  font-family: &quot;Lato&quot;, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 5px 15px rgba(255, 0, 127, 0.6),
    0 0 30px rgba(255, 0, 127, 0.4),
    inset 0 1px 0 rgba(0, 255, 255, 0.3);
}

.rsvp-button:hover {
  background: linear-gradient(135deg, #FFD700, #FF007F, #FFD700);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 0, 127, 0.8),
    0 0 50px rgba(0, 255, 255, 0.6),
    inset 0 1px 0 rgba(255, 215, 0, 0.4);
}

.rsvp-button:active {
  transform: translateY(0);
}

/* Modal Styles */
.rsvp-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  animation: fadeIn 0.3s ease;
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, #240046, #000000);
  border: 3px solid #FF007F;
  border-radius: 20px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8),
              0 0 50px rgba(255, 0, 127, 0.5),
              0 0 100px rgba(0, 255, 255, 0.3);
  animation: modalSlide 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes modalSlide {
  from {
    opacity: 0;
    transform: translate(-50%, -60%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.modal-header {
  text-align: center;
  margin-bottom: 30px;
}

.modal-title {
  font-family: &quot;Shrikhand&quot;, serif;
  font-size: 2.2rem;
  color: #FF007F;
  margin-bottom: 10px;
  text-shadow: 0 0 30px rgba(255, 0, 127, 0.8),
               0 0 50px rgba(0, 255, 255, 0.4);
}

.modal-subtitle {
  font-family: &quot;Lato&quot;, sans-serif;
  color: #00FFFF;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
}

.form-group {
  margin-bottom: 25px;
}

.form-label {
  display: block;
  font-family: &quot;Lato&quot;, sans-serif;
  color: #FFD700;
  margin-bottom: 8px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.form-input,
.form-select {
  width: 100%;
  padding: 12px 15px;
  background: rgba(36, 0, 70, 0.6);
  border: 2px solid rgba(0, 255, 255, 0.4);
  border-radius: 10px;
  color: #00FFFF;
  font-family: &quot;Montserrat&quot;, sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: #FF007F;
  box-shadow: 0 0 15px rgba(255, 0, 127, 0.6),
              0 0 25px rgba(0, 255, 255, 0.4);
}

.form-input::placeholder {
  color: #FFD700;
  opacity: 0.6;
  font-style: italic;
}

.modal-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
}

.modal-button {
  padding: 12px 25px;
  border: 2px solid;
  border-radius: 25px;
  font-family: &quot;Lato&quot;, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.submit-button {
  background: linear-gradient(135deg, #FF007F, #FFD700);
  border-color: #00FFFF;
  color: #000000;
  font-weight: 700;
}

.submit-button:hover {
  background: linear-gradient(135deg, #FFD700, #00FFFF);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 0, 127, 0.6),
              0 0 30px rgba(0, 255, 255, 0.5);
}

.cancel-button {
  background: transparent;
  border-color: #FF007F;
  color: #FF007F;
}

.cancel-button:hover {
  border-color: #00FFFF;
  color: #00FFFF;
  background: rgba(0, 255, 255, 0.1);
}

.close-button {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: #FF007F;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-button:hover {
  color: #00FFFF;
  filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.8));
}

.circular-frame {
  width: 300px;
  height: 300px;
}

.detail-item {
  flex-direction: column;
  text-align: center;
  gap: 5px;
}

.background-pattern {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 20% 50%,
      rgba(255, 0, 127, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(0, 255, 255, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 80%,
      rgba(255, 215, 0, 0.1) 0%,
      transparent 50%
    );
  z-index: 1;
  pointer-events: none;
}

/* Guest List Page Styles */
.guest-list-section {
  text-align: center;
  margin: 60px 0;
  padding: 40px;
  background: rgba(36, 0, 70, 0.4);
  border: 2px solid rgba(255, 0, 127, 0.5);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5),
              0 0 30px rgba(255, 0, 127, 0.3);
}

.guest-cards-container {
  margin: 40px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.guest-card {
  background: linear-gradient(
    135deg,
    rgba(36, 0, 70, 0.7),
    rgba(0, 0, 0, 0.8)
  );
  border: 2px solid rgba(0, 255, 255, 0.4);
  border-radius: 15px;
  padding: 25px;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.guest-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 0, 127, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.guest-card:hover::before {
  left: 100%;
}

.guest-card:hover {
  transform: translateY(-5px);
  border-color: #FF007F;
  box-shadow: 0 10px 30px rgba(255, 0, 127, 0.4),
              0 0 40px rgba(0, 255, 255, 0.3);
}

.guest-name {
  font-family: &quot;Shrikhand&quot;, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FF007F;
  margin-bottom: 15px;
  text-shadow: 0 0 15px rgba(255, 0, 127, 0.6);
}

.guest-details {
  font-family: &quot;Lato&quot;, sans-serif;
  color: #FFD700;
  margin-bottom: 10px;
}

.guest-arrival {
  font-family: &quot;Montserrat&quot;, sans-serif;
  color: #00FFFF;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.guest-bringing {
  font-family: &quot;Montserrat&quot;, sans-serif;
  color: #00FFFF;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-top: 5px;
}

.bringing-label {
  color: #FFD700;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

.loading-message {
  font-family: &quot;Lato&quot;, sans-serif;
  font-size: 1.2rem;
  color: #00FFFF;
  padding: 40px;
  font-style: italic;
}

.empty-message {
  font-family: &quot;Shrikhand&quot;, serif;
  font-size: 1.5rem;
  color: #FF007F;
  padding: 40px;
  font-style: italic;
}

.navigation-section {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(218, 165, 32, 0.3);
}

.nav-button {
  background: linear-gradient(135deg, #240046, #000000);
  border: 2px solid #FF007F;
  color: #00FFFF;
  padding: 15px 30px;
  border-radius: 25px;
  font-family: &quot;Lato&quot;, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 5px 15px rgba(36, 0, 70, 0.6),
    inset 0 1px 0 rgba(255, 0, 127, 0.3);
}

.nav-button:hover {
  background: linear-gradient(135deg, #000000, #240046);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 0, 127, 0.6),
    0 0 40px rgba(0, 255, 255, 0.4),
    inset 0 1px 0 rgba(0, 255, 255, 0.3);
}

.nav-button:active {
  transform: translateY(0);
}

.guest-list-button {
  background: linear-gradient(135deg, #FF007F, #FFD700);
  border: 2px solid #00FFFF;
  color: #000000;
  padding: 15px 30px;
  border-radius: 25px;
  font-family: &quot;Lato&quot;, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(255, 0, 127, 0.6),
    inset 0 1px 0 rgba(0, 255, 255, 0.3);
}

.guest-list-button:hover {
  background: linear-gradient(135deg, #FFD700, #00FFFF);
  transform: translateY(-2px);
  color: #000000;
  border-color: #FF007F;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6),
    0 0 50px rgba(0, 255, 255, 0.5),
    inset 0 1px 0 rgba(255, 0, 127, 0.3);
}

.guest-list-button:active {
  transform: translateY(0);
}
