html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  font-family: "Inter", sans-serif;
  text-align: center;
  background-color: #151515;
  color: #ffffff;
}

.hero {
  background: linear-gradient(
    115deg,
    #ff3131 5%,
    rgba(255, 49, 49, 0.5) 30%,
    rgba(242, 183, 5, 0.2) 100%,
    transparent 100%
  );
  color: white;
  padding: 150px 20px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero h1 {
  font-size: 5rem;
  margin: 0;
  font-weight: 600;
  letter-spacing: 2px;
  color: #f2b705;
}

.hero p {
  font-size: 1.25rem;
  margin: 20px 0;
  font-weight: 400;
}

.button {
  padding: 15px 30px;
  font-size: 1.3rem;
  background: #ff3131;
  color: #f2b705;
  border: 1.5px solid #f2b705;
  cursor: pointer;
  margin-top: 30px;
  border-radius: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.button:hover {
  color: #ff3131;
  background: #f2b705;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.order-button {
  padding: 15px 30px;
  font-size: 1rem;
  background: transparent;
  color: #ff3131;
  border: 1.5px solid #ff3131;
  cursor: pointer;
  margin-top: 30px;
  border-radius: 25px;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: inline-block;
}

.order-button:hover {
  background: #ff3131;
  color: #f2b705;
}

select {
  font-size: 1rem;
  padding: 13px;
  margin: 12px 0;
  border-radius: 8px;
  border: 1.5px solid #444;
  background-color: #222222;
  color: #f4f6f8;
  transition: border 0.3s ease, background-color 0.3s ease;
  cursor: pointer;
}

.submit-btn {
  font-size: 1rem;
  padding: 13px;
  margin: 12px 0;
  border-radius: 8px;
  background: #ff3131;
  color: #f2b705;
  border: 1.5px solid #f2b705;
  transition: border 0.3s ease, background-color 0.3s ease;
  cursor: pointer;
}

.submit-btn:hover {
  color: #ff3131;
  background: #f2b705;
}

.orders {
  margin: 50px 20px;
  background: #2c2c2c;
  border-radius: 15px;
  padding: 20px;
}

.order-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.order-list li {
  background: #444444;
  padding: 5px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 1rem;
  border: 1px solid #666;
  display: inline-block;
  min-width: 140px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.order-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.order-status {
  background: rgba(16, 16, 16, 0.25);
  padding: 6px;
  padding-left: 8px;
  padding-right: 8px;
  border-radius: 50px;
  font-size: 13px;
  display: inline-block;
  text-align: center;
  margin: 5px auto 0;
}

footer {
  margin-top: auto;
  padding: 25px;
  background: #101010;
  color: #fff;
  font-size: 0.75rem;
  border-top: 1px solid #444;
  text-align: center;
  letter-spacing: 1px;
}

footer a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #007bff;
}

.admin-btn {
  margin-left: 10px;
  padding: 5px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 1rem;
  background: #ff6b6b;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.admin-btn:hover {
  background: #e63946;
}

.benefits {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}

.benefit {
  background: #101010;
  padding: 20px;
  border-radius: 12px;
  width: 250px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border: 1.5px solid #202020;
  flex-wrap: wrap;
}

.benefit:hover {
  transform: scale(1.025);
}

.benefit h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.benefit p {
  font-size: 0.9rem;
}

.b1 {
  color: #f2b705;
}

.b2 {
  color: #ff3131;
}

.benefit-icon {
  width: 100px;
  height: 100px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #333333;
  margin: 10% auto;
  padding: 20px;
  width: 50%;
  max-width: 500px;
  max-height: 80vh;
  overflow-y: auto;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.close {
  float: right;
  font-size: 28px;
  cursor: pointer;
}

.total {
  padding-top: 10px;
}

.product-info {
  background-color: #202020;
  color: #ffffff;
  padding: 80px 20px;
  margin-top: 50px;
  text-align: center;
}

.product-info h2 {
  font-size: 2.5rem;
  color: #f2b705;
  margin-bottom: 20px;
}

.product-info p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 20px;
}

@media (max-width: 768px) {
  .benefits {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
}
