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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 25%, #ff6b35 50%, #404040 75%, #0a0a0a 100%);
  background-size: 400% 400%;
  animation: gradientShift 20s ease infinite;
  min-height: 100vh;
  padding: 20px;
  color: #e0e0e0;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  25% { background-position: 100% 50%; }
  50% { background-position: 50% 100%; }
  75% { background-position: 0% 100%; }
  100% { background-position: 0% 50%; }
}

.container {
  margin-top: 50px !important;
  max-width: 920px;
  margin: 0 auto;
  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 107, 53, 0.3);
  overflow: hidden;
  animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  border: 2px solid rgba(255, 107, 53, 0.2);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.header {
  background: linear-gradient(135deg, #ff6b35 0%, #f55722 25%, #2d2d2d 50%, #1a1a1a 75%, #ff6b35 100%);
  background-size: 400% 400%;
  animation: gradientShift 20s ease infinite;
  color: white;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
}

.header::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 20px;
  background: linear-gradient(135deg, #ff6b35 0%, #2d2d2d 50%, #1a1a1a 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(-50%) rotate(0deg); }
  50% { transform: translateX(-50%) translateY(-50%) rotate(180deg); }
}

.header h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.02em;
}

.header p {
  font-size: 1.2rem;
  opacity: 0.95;
  position: relative;
  z-index: 1;
  font-weight: 400;
}

.content {
  padding: 50px 40px;
  background: rgba(15, 15, 15, 0.8);
}

.event-info {
  background: linear-gradient(135deg, #2d2d2d 0%, #404040 50%, #1a1a1a 100%);
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 40px;
  border: 1px solid rgba(255, 107, 53, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.event-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35, #f55722, #ff8c42);
  background-size: 400% 400%;
  animation: gradientShift 10s ease infinite;
}

.event-info:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(255, 107, 53, 0.2);
}

.event-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.event-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #b0b0b0;
  font-weight: 500;
  padding: 16px;
  background: rgba(40, 40, 40, 0.8);
  border-radius: 12px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: all 0.3s ease;
}

.detail-item:hover {
  background: rgba(50, 50, 50, 0.9);
  transform: translateY(-2px);
  border-color: rgba(255, 107, 53, 0.4);
}

.detail-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ff6b35, #f55722);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.registration-section {
  margin-bottom: 50px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-subtitle {
  color: #b0b0b0;
  margin-bottom: 32px;
  font-size: 1.1rem;
  font-weight: 400;
}

.option-list {
  list-style: none;
  display: grid;
  gap: 16px;
}

.option {
  background: rgba(30, 30, 30, 0.9);
  border: 2px solid rgba(255, 107, 53, 0.2);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  position: relative;
  backdrop-filter: blur(10px);
}

.option::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(45, 45, 45, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.option:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.15);
  border-color: rgba(255, 107, 53, 0.5);
}

.option:hover::before {
  opacity: 1;
}

.option.selected {
  border-color: #ff6b35;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(45, 45, 45, 0.2) 100%);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
}

.option input[type="radio"] {
  display: none;
}

.option label {
  display: block;
  padding: 28px 32px;
  cursor: pointer;
  position: relative;
  z-index: 1;
  color: #e0e0e0;
}

.option label::before {
  content: '';
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border: 2px solid #666;
  border-radius: 50%;
  background: rgba(40, 40, 40, 0.9);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.option.selected label::before {
  border-color: #ff6b35;
  background: linear-gradient(135deg, #ff6b35, #f55722);
  box-shadow: inset 0 0 0 4px rgba(20, 20, 20, 0.9), 0 4px 12px rgba(255, 107, 53, 0.4);
}

.option label h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 8px;
}

.option label p {
  color: #b0b0b0;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}

.member-counter {
  background: linear-gradient(135deg, #2d2d2d 0%, #404040 50%, #1a1a1a 100%);
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 40px;
  border: 1px solid rgba(255, 107, 53, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.member-counter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35, #f55722);
}

.counter-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 20px;
  text-align: center;
}

.counter-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.counter-btn {
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(135deg, #ff6b35, #f55722);
  color: white;
  font-size: 1.8rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.4);
}

.counter-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.5);
}

.counter-btn:active {
  transform: translateY(0) scale(0.95);
}

.counter-btn:disabled {
  background: #666;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.counter-display {
  font-size: 2rem;
  font-weight: 800;
  color: #ff6b35;
  min-width: 80px;
  text-align: center;
  padding: 12px 20px;
  background: rgba(40, 40, 40, 0.9);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 107, 53, 0.3);
}

.form-section {
  margin-bottom: 40px;
}

.form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.member-form {
  background: rgba(30, 30, 30, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 24px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.member-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ff6b35, #f55722, #ff8c42);
  background-size: 400% 400%;
  animation: gradientShift 10s ease infinite;
}

.member-form.additional {
  border-color: rgba(255, 107, 53, 0.4);
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(45, 45, 45, 0.1) 100%);
}

.member-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(255, 107, 53, 0.15);
}

.member-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.member-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ff6b35;
}

.remove-member {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.remove-member:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(220, 38, 38, 0.4);
}

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

.form-label {
  display: block;
  font-weight: 600;
  color: #b0b0b0;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-input,
.form-select {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid rgba(255, 107, 53, 0.3);
  border-radius: 16px;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  background: rgba(40, 40, 40, 0.9);
  backdrop-filter: blur(10px);
  font-weight: 500;
  color: #e0e0e0;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: #ff6b35;
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.2), 0 4px 16px rgba(255, 107, 53, 0.3);
  transform: translateY(-2px);
  background: rgba(50, 50, 50, 0.9);
}

.form-input::placeholder {
  color: #888;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.submit-button {
  width: 100%;
  background: linear-gradient(135deg, #ff6b35 0%, #f55722 50%, #ff8c42 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  color: white;
  border: none;
  padding: 20px 32px;
  border-radius: 20px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(255, 107, 53, 0.4);
}

.submit-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.submit-button:hover::before {
  left: 100%;
}

.submit-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(255, 107, 53, 0.5);
}

.submit-button:active {
  transform: translateY(-2px);
}

.total-section {
  background: linear-gradient(135deg, #2d2d2d 0%, #404040 50%, #1a1a1a 100%);
  border: 2px solid rgba(255, 107, 53, 0.4);
  border-radius: 20px;
  padding: 28px;
  margin-bottom: 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(255, 107, 53, 0.2);
}

.total-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35, #f55722);
}

.total-amount {
  font-size: 2.4rem;
  font-weight: 800;
  color: #ff6b35;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .content {
    padding: 30px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .header h1 {
    font-size: 2.2rem;
  }

  .event-details {
    grid-template-columns: 1fr;
  }

  .counter-controls {
    justify-content: center;
  }

  .event-info,
  .member-counter,
  .member-form {
    padding: 24px;
  }

  .section-title {
    font-size: 1.8rem;
  }
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

/* Modal Box */
.modal-box {
  background: linear-gradient(135deg, #2d2d2d 0%, #404040 100%);
  padding: 30px;
  border-radius: 15px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease;
  border: 1px solid rgba(255, 107, 53, 0.3);
}

.modal-box h2 {
  margin-bottom: 15px;
  font-size: 1.3rem;
  text-align: center;
  color: #ff6b35;
}

.modal-box input {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  margin-bottom: 20px;
  border: 2px solid rgba(255, 107, 53, 0.3);
  border-radius: 10px;
  background: rgba(40, 40, 40, 0.9);
  color: #e0e0e0;
}

.modal-box input:focus {
  outline: none;
  border-color: #ff6b35;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

.modal-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.modal-actions button {
  flex: 1;
  padding: 12px;
  font-size: 1rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

#customPriceConfirm {
  background: linear-gradient(135deg, #ff6b35, #f55722);
  color: white;
}

#customPriceCancel {
  background: linear-gradient(135deg, #666, #444);
  color: white;
}

#customPriceConfirm:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 107, 53, 0.3);
}

#customPriceCancel:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Main Header */
.main-header {
    width: 100%;
    z-index: 1000;
    padding: 21px;
    /* background: transparent; */
}

/* Header Container */
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}

/* Desktop Navbar */
.navbar {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.navbar_link {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    position: relative;
    white-space: nowrap;
}

.navbar_link:hover {
    background: rgba(255, 107, 53, 0.2);
    color: #ff6b35;
    transform: translateY(-2px);
}

.button {
    background: linear-gradient(45deg, #ff6b35, #f55722);
    color: white;
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    background: #ff6b35;
    color: white;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    display: none;
}

.mobile-menu-toggle:hover {
    background: #f55722;
    transform: scale(1.05);
}

/* Mobile Slide-in Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 75%;
    height: 100vh;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 2rem 1.5rem;
    box-shadow: 2px 0 25px rgba(0, 0, 0, 0.5);
    z-index: 1001;
    overflow-y: auto;
    border-right: 2px solid rgba(255, 107, 53, 0.3);
}

.mobile-menu.active {
    display: block;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile Navbar */
.mobile-navbar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-navbar .navbar_link {
    padding: 1rem;
    text-align: left;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 10px;
    color: #e0e0e0;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.mobile-navbar .navbar_link:hover {
    background: rgba(255, 107, 53, 0.2);
    color: #ff6b35;
}

/* Backdrop Overlay */
.backdrop {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .navbar {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .main-header {
        position: sticky;
        top: 0;
        /* background: rgba(20, 20, 20, 0.9);
        backdrop-filter: blur(20px); */
    }

    .container {
      margin-top: 12px !important;
    }
}

@media (min-width: 769px) {
    .main-header {
        position: absolute;
        top: 0;
        left: 0;
    }
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
}

/* Modal Content Box */
.modal-content {
  background: #fff;
  color: black;
  border-radius: 8px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  padding: 2rem;
  position: relative;
  text-align: center;
}

/* Close Button */
.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Modal Heading */
.modal-content h2 {
  margin-top: 0;
  color: #333;
}

/* Modal Body Layout */
.modal-body {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
  margin: 1.5rem 0;
}

/* QR Section */
.qr-section {
  flex: 1 1 180px;
  text-align: center;
}

.qr-image {
  max-width: 150px;
  width: 100%;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

/* Bank Details Section */
.bank-details {
  flex: 1 1 180px;
  text-align: left;
  margin-top: 0.5rem;
}

.bank-details h3 {
  margin-bottom: 0.5rem;
  color: #555;
}

/* Confirmation Button */
.modal-button {
  background-color: #4f46e5;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  font-size: 1rem;
}

.modal-button:hover {
  background-color: #4338ca;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
  .modal-content {
    padding: 1.5rem;
  }
  .modal-body {
    flex-direction: column;
    align-items: center;
  }
  .bank-details {
    text-align: center;
    margin-top: 1rem;
  }
}


.centrecenter-horizontally {
    text-align: center; 
    font-weight: normal;
    background: linear-gradient(135deg, #ff6b35 0%, #f55722 50%, #ff8c42 100%);
    padding: 24px 32px;
    border-radius: 16px;
    margin: 20px 0;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
    border: 1px solid rgba(255, 107, 53, 0.4);
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.centrecenter-horizontally div {
       margin-bottom: 8px;
    /* font-size: 1.1rem; */
    /* line-height: 1.4; */
    font-size: 1.5rem;
    font-weight: 700;
    /* color: #ff6b35; */
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.centrecenter-horizontally div:last-child {
    margin-bottom: 0;
}




/* Import all existing styles from register.css first, then add these specific donation styles */

/* Giving Information Section */
.giving-info {
    background: linear-gradient(135deg, #2d2d2d 0%, #404040 50%, #1a1a1a 100%);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.giving-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f55722, #ff8c42);
    background-size: 400% 400%;
    animation: gradientShift 10s ease infinite;
}

.giving-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 24px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.giving-content {
    color: #e0e0e0;
    line-height: 1.7;
    font-size: 1.1rem;
}

.giving-content p {
    margin-bottom: 20px;
}

.impact-list {
    list-style: none;
    margin: 24px 0;
    padding: 0;
}

.impact-list li {
    padding: 12px 0;
    color: #b0b0b0;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.scripture-quote {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 16px;
    padding: 24px;
    margin: 32px 0;
    text-align: center;
    position: relative;
}

.scripture-quote p {
    font-style: italic;
    color: #ff6b35;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.scripture-reference {
    color: #b0b0b0;
    font-size: 0.95rem;
    font-weight: 600;
}

/* Donation Section */
.donation-section {
    margin-bottom: 40px;
}

.donation-list {
    list-style: none;
    display: grid;
    gap: 16px;
}

.donation-option {
    background: rgba(30, 30, 30, 0.9);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    position: relative;
    backdrop-filter: blur(10px);
}

.donation-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(45, 45, 45, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.donation-option:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.5);
}

.donation-option:hover::before {
    opacity: 1;
}

.donation-option.selected {
    border-color: #ff6b35;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(45, 45, 45, 0.2) 100%);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
}

.donation-option input[type="radio"] {
    display: none;
}

.donation-option label {
    display: block;
    padding: 28px 32px;
    cursor: pointer;
    position: relative;
    z-index: 1;
    color: #e0e0e0;
}

.donation-option label::before {
    content: '';
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border: 2px solid #666;
    border-radius: 50%;
    background: rgba(40, 40, 40, 0.9);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.donation-option.selected label::before {
    border-color: #ff6b35;
    background: linear-gradient(135deg, #ff6b35, #f55722);
    box-shadow: inset 0 0 0 4px rgba(20, 20, 20, 0.9), 0 4px 12px rgba(255, 107, 53, 0.4);
}

.donation-option label h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 8px;
}

.donation-option label p {
    color: #b0b0b0;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
}

/* Payment Methods Section */
.payment-section {
    margin-bottom: 40px;
}

.payment-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 32px;
}

.payment-method {
    background: linear-gradient(135deg, #2d2d2d 0%, #404040 50%, #1a1a1a 100%);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.payment-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f55722);
}

.payment-method:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(255, 107, 53, 0.2);
}

.payment-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.payment-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ff6b35, #f55722);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.payment-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ff6b35;
    margin: 0;
}

/* QR Payment Styles */
.qr-section {
    text-align: center;
}

.qr-image {
    max-width: 200px;
    width: 100%;
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 107, 53, 0.3);
}

.qr-instructions {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Bank Payment Styles */
.bank-details {
    color: #111111;
}

.bank-info {
    background: rgba(40, 40, 40, 0.8);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.bank-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.bank-row:last-child {
    border-bottom: none;
}

.bank-reference {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    margin-top: 8px;
    border-top: 2px solid rgba(255, 107, 53, 0.3);
    font-weight: 600;
}

.bank-label {
    color: #b0b0b0;
    font-weight: 500;
}

.bank-value {
    color: #ff6b35;
    font-weight: 700;
    font-family: 'Courier New', monospace;
}

.bank-instructions {
    color: #b0b0b0;
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: center;
}

/* Contact Section */
.contact-section {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    margin-bottom: 32px;
}

.contact-section h3 {
    color: #ff6b35;
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.contact-section p {
    color: #b0b0b0;
    margin-bottom: 24px;
    line-height: 1.6;
}

.contact-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #f55722);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .payment-methods {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .giving-info,
    .payment-method {
        padding: 24px;
    }
    
    .giving-title {
        font-size: 1.6rem;
    }
    
    .qr-image {
        max-width: 160px;
    }
    
    .bank-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .bank-reference {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}
