/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f0f2f5;
}

/* Header and Navigation */
header {
  background-color: #1a1a1a;
  color: #fff;
  padding: 1rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ffd700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

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

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #ffd700;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-links a:hover {
  color: #ffd700;
  transform: translateY(-2px);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.burger {
  display: none;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 5px;
  transition: all 0.3s ease;
}

/* Main content */
main {
  padding: 6rem 2rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero {
  text-align: center;
  padding: 4rem 0;
  background: linear-gradient(135deg, #1a1a1a, #333);
  color: #fff;
  border-radius: 10px;
  margin-bottom: 4rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  background-color: #ffd700;
  color: #1a1a1a;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  background-color: #fff;
  color: #1a1a1a;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.featured-celebrities {
  margin-top: 4rem;
}

.featured-celebrities h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  color: #1a1a1a;
}

.celebrity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.celebrity-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.celebrity-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.celebrity-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.celebrity-card:hover img {
  transform: scale(1.1);
}

.celebrity-card .info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.celebrity-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
  color: #1a1a1a;
}

.celebrity-card p {
  color: #666;
  margin-bottom: 1rem;
}

/* Footer */
footer {
  background-color: #1a1a1a;
  color: #fff;
  text-align: center;
  padding: 2rem;
  margin-top: 4rem;
}

/* About page styles */
.about-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-section h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
  text-align: center;
}

.about-section h2 {
  font-size: 1.8rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #333;
}

.about-section p {
  margin-bottom: 1rem;
  color: #666;
  line-height: 1.6;
}

.about-section ul {
  list-style-type: none;
  margin-left: 1rem;
  margin-bottom: 1rem;
}

.about-section ul li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.about-section ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ffd700;
  font-weight: bold;
}

.about-section h2:not(:first-of-type) {
  border-top: 1px solid #eee;
  padding-top: 2rem;
}

/* Booking form styles */
#booking-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#booking-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: #333;
  font-weight: 500;
}

#booking-form input,
#booking-form select {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1.5rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

#booking-form input:focus,
#booking-form select:focus {
  outline: none;
  border-color: #ffd700;
}

#booking-form button {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  background-color: #ffd700;
  color: #1a1a1a;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#booking-form button:hover {
  background-color: #1a1a1a;
  color: #ffd700;
}

/* Responsive design */
@media screen and (max-width: 768px) {
  .nav-links {
    position: fixed;
    right: -100%;
    top: 5rem;
    flex-direction: column;
    background-color: #1a1a1a;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    margin: 2.5rem 0;
  }

  .burger {
    display: block;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .about-section {
    padding: 1rem;
  }

  .about-section h1 {
    font-size: 2rem;
  }

  .about-section h2 {
    font-size: 1.5rem;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero,
.featured-celebrities,
.about-section,
#booking-form {
  animation: fadeIn 1s ease-out;
}

.celebrity-card {
  animation: fadeIn 0.5s ease-out;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Payment form styles */
#payment-method {
  margin-bottom: 1rem;
}

#payment-details {
  background-color: #f9f9f9;
  padding: 1rem;
  border-radius: 5px;
  margin-bottom: 1rem;
}

#payment-details input {
  margin-bottom: 0.5rem;
}

#card-number,
#expiry-date,
#cvv {
  font-family: monospace;
}

#card-number {
  width: 100%;
}

#expiry-date,
#cvv {
  width: 48%;
  display: inline-block;
}

#expiry-date {
  margin-right: 4%;
}

.celebrity-card .profession {
  font-style: italic;
  color: #666;
  margin-bottom: 0.5rem;
}

.celebrity-card .description {
  flex-grow: 1;
  margin-bottom: 1rem;
}

.celebrity-card .cta-button,
.celebrity-card .fan-card-button {
  width: 100%;
  margin-top: 0.5rem;
}

.fan-card-button {
  background-color: #4caf50;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1rem;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
  border-radius: 5px;
}

.fan-card-button:hover {
  background-color: #45a049;
}

.booking-price {
  font-weight: bold;
  color: #4caf50;
  margin-bottom: 1rem;
}

.customer-reviews {
  margin-top: 4rem;
}

.customer-reviews h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  color: #1a1a1a;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.review-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.reviewer-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.review-card h3 {
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.review-card p {
  font-style: italic;
  color: #666;
  margin-bottom: 1rem;
}

.stars {
  color: #ffd700;
  font-size: 1.5rem;
}

.supporting-brands {
  margin-top: 4rem;
}

.supporting-brands h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  color: #1a1a1a;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  align-items: center;
  justify-items: center;
}

.brand-logo {
  max-width: 100%;
  height: auto;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.brand-logo:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Add these styles at the end of the styles.css file */

.payment-specific-details {
  background-color: #f9f9f9;
  padding: 1rem;
  border-radius: 5px;
  margin-bottom: 1rem;
}

.bitcoin-address {
  font-family: monospace;
  background-color: #e9e9e9;
  padding: 0.5rem;
  border-radius: 3px;
  word-break: break-all;
}

#steam-card-code,
#apple-gift-card-code,
#bitcoin-transaction-id {
  font-family: monospace;
}

.customer-care-info {
  margin-top: 2rem;
  padding: 1rem;
  background-color: #f0f8ff;
  border: 1px solid #b0d4ff;
  border-radius: 5px;
}

.customer-care-info h3 {
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.customer-care-number a{
  font-size: 1.2rem;
  font-weight: bold;
  color: #4caf50;
  margin: 0.5rem 0;
  text-decoration: none;
}

.customer-care-note {
  font-size: 0.9rem;
  color: #666;
}

.customer-care-note strong {
  color: #1a1a1a;
}

/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

#fanCardPaymentForm {
  display: flex;
  flex-direction: column;
}

#fanCardPaymentForm label {
  margin-top: 10px;
  margin-bottom: 5px;
}

#fanCardPaymentForm input {
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

#fanCardPaymentForm button {
  margin-top: 20px;
}

.bitcoin-address,
.ussd-code {
  font-family: monospace;
  background-color: #e9e9e9;
  padding: 0.5rem;
  border-radius: 3px;
  word-break: break-all;
  margin: 10px 0;
}

.payment-note {
  font-size: 0.9rem;
  color: #666;
  margin-top: 15px;
  font-style: italic;
}

#paymentMethod {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

/* Registration page styles */
.register-container {
  display: flex;
  max-width: 1200px;
  margin: 6rem auto 2rem;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.register-content {
  flex: 1;
  padding: 3rem;
}

.register-content h1 {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.register-content > p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
}

.register-form {
  display: grid;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #333;
}

.form-group input {
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: #ffd700;
}

.register-button {
  background-color: #ffd700;
  color: #1a1a1a;
  padding: 1rem;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.register-button:hover {
  background-color: #1a1a1a;
  color: #ffd700;
}

.login-link {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: #666;
}

.login-link a {
  color: #ffd700;
  text-decoration: none;
  font-weight: 500;
}

.login-link a:hover {
  text-decoration: underline;
}

.register-image {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.register-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 2rem;
}

.image-overlay h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.image-overlay p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Donation section styles */
.donation-section {
  margin: 6rem 0;
  background-color: #f9f9f9;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.donation-container {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.donation-content {
  flex: 1;
  padding: 3rem;
}

.donation-content h2 {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.donation-content p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.donation-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.donation-option {
  background-color: #fff;
  border-radius: 10px;
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
}

.donation-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.donation-option.active {
  border-color: #ffd700;
  background-color: #fffdf0;
}

.donation-amount {
  font-size: 1.8rem;
  font-weight: bold;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.donation-description {
  font-size: 0.9rem;
  color: #666;
}

.featured-donation {
  background-color: #fffdf0;
  border: 2px solid #ffd700;
  transform: scale(1.05);
}

.featured-donation:hover {
  transform: translateY(-5px) scale(1.05);
}

.donation-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: #ffd700;
  color: #1a1a1a;
  font-size: 0.8rem;
  font-weight: bold;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
}

.custom-donation {
  background-color: #f0f0f0;
}

.donation-button {
  display: inline-block;
  background-color: #ffd700;
  color: #1a1a1a;
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.1rem;
}

.donation-button:hover {
  background-color: #1a1a1a;
  color: #ffd700;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.donation-image {
  flex: 1;
  height: 500px;
  overflow: hidden;
}

.donation-image img {
  width: 500px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.donation-image:hover img {
  transform: scale(1.05);
}

/* Donation page styles */
.donation-page {
  max-width: 1000px;
  margin: 6rem auto 2rem;
}

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

.donation-page-header h1 {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.donation-page-header p {
  font-size: 1.2rem;
  color: #666;
}

.donation-form-container {
  display: flex;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.donation-summary {
  flex: 1;
  padding: 2rem;
  background-color: #f9f9f9;
  border-right: 1px solid #eee;
}

.donation-summary h2 {
  font-size: 1.5rem;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.donation-amount-display {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 3rem;
  font-weight: bold;
  color: #1a1a1a;
}

#donation-amount {
  width: 150px;
  border: none;
  background: transparent;
  font-size: 3rem;
  font-weight: bold;
  color: #1a1a1a;
  text-align: center;
}

#donation-amount:focus {
  outline: none;
}

.donation-impact {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 2rem;
  font-style: italic;
}

.donation-quick-amounts {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
}

.quick-amount {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 0.5rem;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.quick-amount:hover {
  background-color: #f0f0f0;
}

.quick-amount.active {
  background-color: #ffd700;
  border-color: #ffd700;
  color: #1a1a1a;
  font-weight: bold;
}

.donation-payment {
  flex: 2;
  padding: 2rem;
}

.donation-payment h2 {
  font-size: 1.5rem;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.payment-method {
  background-color: #f9f9f9;
  border: 2px solid #eee;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.payment-method:hover {
  background-color: #f0f0f0;
  transform: translateY(-3px);
}

.payment-method.active {
  border-color: #ffd700;
  background-color: #fffdf0;
}

.payment-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.payment-name {
  font-size: 0.9rem;
  font-weight: 500;
}

.payment-form {
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #333;
  font-weight: 500;
}

.form-group input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: #ffd700;
}

.form-row {
  display: flex;
  gap: 1rem;
}

.form-group.half {
  flex: 1;
}

.crypto-payment {
  text-align: center;
}

.crypto-address {
  font-family: monospace;
  background-color: #f0f0f0;
  padding: 1rem;
  border-radius: 5px;
  margin: 1rem 0;
  word-break: break-all;
}

.qr-code {
  margin: 1.5rem 0;
}

.qr-code img{
  width: 300px;
}

.gift-card-payment {
  background-color: #f9f9f9;
  padding: 1.5rem;
  border-radius: 8px;
}

.donation-submit-button {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  background-color: #ffd700;
  color: #1a1a1a;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.donation-submit-button:hover {
  background-color: #1a1a1a;
  color: #ffd700;
}

/* Add these styles for file upload */
.file-upload {
  border: 1px dashed #ddd;
  padding: 1rem;
  border-radius: 5px;
  width: 100%;
  background-color: #f9f9f9;
  cursor: pointer;
}

.file-upload:hover {
  border-color: #ffd700;
  background-color: #fffdf0;
}

.upload-instructions {
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.5rem;
  font-style: italic;
}

.file-preview {
  margin-top: 1rem;
  text-align: center;
}

.file-preview img {
  max-width: 100%;
  max-height: 200px;
  border-radius: 5px;
  border: 1px solid #ddd;
}

@media screen and (max-width: 768px) {
  .donation-container {
    flex-direction: column;
  }

  .donation-image {
    height: 300px;
  }

  .donation-form-container {
    flex-direction: column;
  }

  .donation-summary {
    border-right: none;
    border-bottom: 1px solid #eee;
  }

  .payment-methods {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media screen and (max-width: 768px) {
  .register-container {
    flex-direction: column;
  }

  .register-content {
    padding: 2rem;
  }

  .register-image {
    display: none;
  }
}

/* Add these styles to the existing .nav-links styles */
.nav-links li:last-child a {
  background-color: #ffd700;
  color: #1a1a1a;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.nav-links li:last-child a:hover {
  background-color: #1a1a1a;
  color: #ffd700;
}

.nav-links li:last-child a::after {
  display: none;
}

/* Add these styles at the end of the file */

.thank-you-container {
  animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

