/* bang.css — Updated for modern, elegant, animated, and vibrant design */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'Outfit', sans-serif;
  background: linear-gradient(to right, #0f0c29, #302b63, #24243e);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  width: 100%;
  max-width: 1000px;
  animation: fadeSlideIn 0.8s ease forwards;
}

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

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-header img {
  width: 250px;
  height: 200px;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 3px solid #fff;
}

.form-header h1 {
  font-size: 2.5rem;
  margin: 0;
  color: #ff8a00;
}

.form-header p {
  color: #ddd;
  font-size: 1rem;
}

.form-group,
.checkbox-group,
.radio-group,
.payment-options {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

input[type="text"],
input[type="email"],
input[type="file"],
input[type="date"],
select,
textarea {
  width: 100%;
  padding: 0.75rem;
  border: none;
  border-radius: 10px;
  background: #1e1e2f;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  background: #29293d;
  box-shadow: 0 0 0 2px #ff8a00;
}

.radio-group,
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.radio-option,
.checkbox-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ddd;
}

.payment-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.payment-option {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 8px;
  width: 25%;
  height: 100px;
  cursor: pointer;
}

.payment-options:hover{
  transform: scaleX(10px);
}

@media screen and (max-width: 500px) {
  .payment-options {
    display: flex;
  }
  .payment-option{
    width: 24.7%;
  }
}

.payment-option img {
  width: 70%;
  height: 50px;
  margin-top: 10px;
  margin-bottom: 2px;
  border-radius: 8px;
}

.payment-option input[type="radio"] {
  margin-right: 10px;
}

.payment-icon {
  width: 24px;
  height: 24px;
  margin-right: 6px;
}

.payment-label {
  font-weight: bold;
}

.submit-btn {
  background: linear-gradient(135deg, #ff8a00, #e52e71);
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: 10px;
  cursor: pointer;
  width: 100%;
  transition: 0.3s ease;
  margin-top: 1rem;
  font-weight: bold;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #e52e71, #ff8a00);
  transform: scale(1.03);
}

.note {
  background: rgba(255, 255, 255, 0.1);
  color: #ffc107;
  border-left: 5px solid #ff8a00;
  padding: 1rem;
  border-radius: 10px;
  font-size: 0.95rem;
}

@media (max-width: 600px) {
  .radio-group,
  .checkbox-group {
    flex-direction: column;
  }
  .payment-options {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }
}

/* Modal Box Styles */
#modalBox {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}


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

#modalContent {
  background: #1e1e2f;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  text-align: center;
  max-width: 100%;
  color: white;
  animation: popIn 0.4s ease;
}

@media screen and (max-width: 500px) {
  #modalContent {
    max-width: 100%;
    margin: 0;
    margin-top: 35%;
  }
}

@keyframes popIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

#modalContent a {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background: #ff8a00;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s;
}

#modalContent a:hover {
  background: #e57300;
}

#closeModal {
  margin-top: 1rem;
  cursor: pointer;
  color: #ccc;
  text-decoration: underline;
  font-size: 0.9rem;
}
