* {
  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;
    }
}


/* Modal Overlay */
        .payment-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            animation: fadeIn 0.3s ease-out;
            padding: 20px;
        }

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

        /* Modal Container */
        .payment-modal-container {
            background: #1a1a1a;
            border: 2px solid #ff6b35;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
            max-width: 500px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            animation: slideUp 0.4s ease-out;
            transform-origin: center;
        }

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

        /* Modal Header */
        .payment-modal-header {
            background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
            color: white;
            padding: 30px 25px 25px;
            border-radius: 18px 18px 0 0;
            text-align: center;
            position: relative;
        }

        .payment-modal-close {
            position: absolute;
            top: 15px;
            right: 20px;
            background: rgba(0, 0, 0, 0.3);
            border: none;
            color: white;
            font-size: 24px;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .payment-modal-close:hover {
            background: rgba(0, 0, 0, 0.5);
            transform: scale(1.1);
        }

        .payment-modal-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 10px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .payment-modal-subtitle {
            font-size: 16px;
            opacity: 0.9;
            line-height: 1.4;
            font-weight: 500;
        }

        /* Modal Body */
        .payment-modal-body {
            padding: 35px 25px 30px;
        }

        .payment-methods-container {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        /* QR Section */
        .payment-qr-section {
            text-align: center;
            background: linear-gradient(145deg, #2d2d2d 0%, #3a3a3a 100%);
            padding: 25px;
            border-radius: 16px;
            border: 2px solid #ff6b35;
            transition: all 0.3s ease;
        }

        .payment-qr-section:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
        }

        .payment-qr-image {
            width: 160px;
            height: 160px;
            border-radius: 12px;
            margin-bottom: 15px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
            border: 4px solid #ff6b35;
        }

        .payment-qr-label {
            font-size: 16px;
            font-weight: 600;
            color: #ff6b35;
            margin-bottom: 8px;
        }

        .payment-qr-instruction {
            font-size: 14px;
            color: #cccccc;
            line-height: 1.4;
        }

        /* Bank Details Section */
        .payment-bank-section {
            background: linear-gradient(145deg, #2d2d2d 0%, #3a3a3a 100%);
            padding: 25px;
            border-radius: 16px;
            border: 2px solid #f7931e;
            transition: all 0.3s ease;
        }

        .payment-bank-section:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(247, 147, 30, 0.3);
        }

        .payment-bank-title {
            font-size: 18px;
            font-weight: 700;
            color: #f7931e;
            margin-bottom: 15px;
            text-align: center;
            letter-spacing: 0.5px;
        }

        .payment-bank-details {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .payment-bank-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 15px;
            background: #1a1a1a;
            border: 1px solid #444444;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
            transition: all 0.2s ease;
        }

        .payment-bank-item:hover {
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
            border-color: #ff6b35;
        }

        .payment-bank-label {
            font-size: 14px;
            color: #cccccc;
            font-weight: 500;
        }

        .payment-bank-value {
            font-size: 16px;
            font-weight: 700;
            color: #ffffff;
            font-family: 'Courier New', monospace;
        }

        /* Modal Footer */
        .payment-modal-footer {
            padding: 0 25px 30px;
            text-align: center;
        }

        .payment-modal-button {
            background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
            color: white;
            border: none;
            padding: 16px 40px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
            min-width: 120px;
        }

        .payment-modal-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
        }

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

        /* Responsive Design */
        @media (max-width: 768px) {
            .payment-modal-container {
                margin: 10px;
                max-height: 95vh;
                border-radius: 16px;
            }

            .payment-modal-header {
                padding: 25px 20px 20px;
                border-radius: 16px 16px 0 0;
            }

            .payment-modal-title {
                font-size: 24px;
            }

            .payment-modal-subtitle {
                font-size: 15px;
            }

            .payment-modal-body {
                padding: 25px 20px;
            }

            .payment-qr-image {
                width: 140px;
                height: 140px;
            }

            .payment-qr-section,
            .payment-bank-section {
                padding: 20px;
            }

            .payment-modal-footer {
                padding: 0 20px 25px;
            }
        }

        @media (max-width: 480px) {
            .payment-modal-overlay {
                padding: 10px;
            }

            .payment-modal-container {
                margin: 5px;
                border-radius: 12px;
            }

            .payment-modal-header {
                padding: 20px 15px 15px;
                border-radius: 12px 12px 0 0;
            }

            .payment-modal-title {
                font-size: 22px;
            }

            .payment-modal-body {
                padding: 20px 15px;
            }

            .payment-qr-image {
                width: 120px;
                height: 120px;
            }

            .payment-bank-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 5px;
            }

            .payment-modal-footer {
                padding: 0 15px 20px;
            }
        }

        /* Demo button to show modal */
        .demo-button {
            background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
            transition: all 0.3s ease;
        }

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

        /* Hidden by default */
        .hidden {
            display: none !important;
        }


        /* Session Selection Section */
.session-selection-section {
    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;
}

.session-selection-section::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;
}

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

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

.session-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.session-item {
    background: rgba(40, 40, 40, 0.8);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 16px;
    padding: 20px 24px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.session-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.4);
}

.session-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.session-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #e0e0e0;
    margin-bottom: 4px;
}

.session-info p {
    color: #b0b0b0;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Toggle Switch Styles */
.attendance-toggle {
    position: relative;
}

.session-checkbox {
    display: none;
}

.toggle-label {
    display: flex;
    align-items: center;
    background: rgba(60, 60, 60, 0.9);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 25px;
    padding: 8px 16px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    min-width: 140px;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.toggle-text {
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.toggle-text.attending {
    color: #ff6b35;
    opacity: 0;
}

.toggle-text.not-attending {
    color: #b0b0b0;
    opacity: 1;
}

.toggle-switch {
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

/* Checked state */
.session-checkbox:checked + .toggle-label {
    /* background: rgba(255, 107, 53, 0.2);
    border-color: #ff6b35;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3); */
}

.session-checkbox:checked + .toggle-label .toggle-text.attending {
    opacity: 1;
    color: white;
}

.session-checkbox:checked + .toggle-label .toggle-text.not-attending {
    opacity: 0;
}

.session-checkbox:checked + .toggle-label .toggle-switch {
    background: linear-gradient(135deg, #0f2a1e, #22f5aa);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
}

.toggle-label:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .session-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .attendance-toggle {
        width: 100%;
    }
    
    .toggle-label {
        width: 100%;
        justify-content: center;
    }
    
    .session-selection-section {
        padding: 24px;
    }
}



/* Impact Section Styles */
.impact-section {
    background: linear-gradient(135deg, #2d2d2d 0%, #404040 50%, #1a1a1a 100%);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 107, 53, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.impact-section::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;
}

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

.impact-item {
    padding: 2rem;
    border-radius: 16px;
    background: rgba(40, 40, 40, 0.8);
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.impact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.impact-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.4);
}

.impact-item:hover::before {
    opacity: 1;
}

.impact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #f55722);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
}

.impact-item:hover .impact-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.5);
}

.impact-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.impact-description {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .impact-section {
        padding: 2rem 1.5rem;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .impact-item {
        padding: 1.5rem;
    }
    
    .impact-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .impact-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .impact-title {
        font-size: 1.2rem;
    }
    
    .impact-description {
        font-size: 0.9rem;
    }
}

        /* Additional styles for payment methods section */
        .payment-notice {
            background: linear-gradient(135deg, #ff6b35 0%, #f55722 50%, #ff8c42 100%);
            color: white;
            padding: 1.5rem 2rem;
            border-radius: 16px;
            margin: 2rem 0;
            text-align: center;
            box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
            border: 1px solid rgba(255, 107, 53, 0.4);
        }

        .payment-notice h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .payment-notice p {
            font-size: 1rem;
            opacity: 0.95;
        }

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

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

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

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

        .payment-icon-enhanced {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #ff6b35, #f55722);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            margin: 0 auto 1.5rem;
            box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
        }

        .payment-method-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #ff6b35;
            margin-bottom: 1rem;
        }

        .payment-method-description {
            color: #b0b0b0;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

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

        .bank-details-enhanced {
            background: rgba(40, 40, 40, 0.8);
            border-radius: 16px;
            padding: 2rem;
            margin: 1rem 0;
            border: 1px solid rgba(255, 107, 53, 0.2);
        }

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

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

        .bank-label-enhanced {
            color: #b0b0b0;
            font-weight: 500;
            font-size: 0.95rem;
        }

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

        .bank-instructions {
            color: #888;
            font-size: 0.9rem;
            margin-top: 1rem;
            text-align: center;
            font-style: italic;
        }

        /* Form enhancements */
        .amount-input {
            font-size: 1.3rem !important;
            font-weight: 700 !important;
            text-align: center !important;
            color: #ff6b35 !important;
            border: 3px solid rgba(255, 107, 53, 0.3) !important;
        }

        .amount-input:focus {
            border-color: #ff6b35 !important;
            box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.2) !important;
        }

        /* Success/Error messages */
        .alert {
            padding: 1rem 1.5rem;
            border-radius: 12px;
            margin-bottom: 2rem;
            font-weight: 600;
            text-align: center;
        }

        .alert-success {
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            border: 1px solid #059669;
        }

        .alert-error {
            background: linear-gradient(135deg, #ef4444, #dc2626);
            color: white;
            border: 1px solid #dc2626;
        }

        /* Mobile responsiveness */
        @media (max-width: 768px) {
            .payment-methods-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .payment-method-enhanced {
                padding: 2rem 1.5rem;
            }

            .bank-row-enhanced {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.25rem;
            }

            .qr-image-enhanced {
                max-width: 180px;
            }
        }