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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-image: url("../images/bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
  padding: 20px;
}

b {
  font-weight: bold;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  background: #0f1c3b;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 40px;
}
@media (max-width: 768px) {
  .container {
    border-radius: 10px;
    padding: 20px;
  }
}

.section {
  margin-bottom: 40px;
}

.banner {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: block;
  border-radius: 10px;
  height: auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.language-switch {
  text-align: center;
  margin: 20px 0;
}

.language {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.language-btn {
  width: 145px;
  height: 40px;
  background: #204f7e;
  color: #fff;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
  opacity: 1;
}
@media (max-width: 430px) {
  .language-btn {
    width: 120px;
  }
}
.language-btn:hover {
  background: #2980b9;
}
.language-btn.active {
  background: transparent linear-gradient(180deg, #2c90f4 0%, #0dcbae 100%);
}

.how-to-redeem-btn {
  width: 200px;
  color: #fff;
  border: 3px solid #3ce6eb;
  border-radius: 25px;
  background: #121212 0% 0% no-repeat padding-box;
  padding: 10px 20px;
  margin: 0 10px;
  cursor: pointer;
  transition: 0.3s;
}
.how-to-redeem-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.section-title {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid #3ce6eb;
  font-weight: 600;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 1.5rem;
  }
}

.section-content {
  font-size: 1rem;
  color: #fff;
}
.section-content p {
  margin-bottom: 15px;
}
.section-content ol,
.section-content ul {
  margin-left: 20px;
  margin-bottom: 20px;
}
.section-content ul {
  margin-top: 10px;
}
.section-content li {
  margin-bottom: 8px;
}

.highlight {
  background: linear-gradient(90deg, #1e88e5 0%, #00bfa5 100%);
  padding: 15px;
  border-radius: 8px;
  margin: 20px 0;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  overflow: auto;
}
.modal .modal-content {
  background: #fff;
  position: relative;
  margin: 2% auto;
  width: 90%;
  max-width: 800px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .modal .modal-content {
    width: 95%;
    margin: 10% auto;
  }
}
.modal .modal-content .close-modal {
  position: absolute;
  top: 10px;
  right: 20px;
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}
.modal .modal-content .close-modal:hover {
  color: #000;
}
.modal .modal-content .modal-title {
  text-align: center;
  margin-bottom: 20px;
}
.modal .modal-content .image-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.modal .modal-content .image-container .slides {
  display: none;
}
.modal .modal-content .image-container .slides img {
  width: 100%;
  max-height: 70vh;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
  display: block;
}
.modal .modal-content .image-container .slides .step {
  position: absolute;
  bottom: 50px;
  left: 50%;
  width: 30%;
  max-width: 400px;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 5px;
  text-align: center;
}
@media (max-width: 768px) {
  .modal .modal-content .image-container .slides .step {
    width: 50%;
    font-size: 12px;
  }
}
.modal .modal-content .image-container .prev,
.modal .modal-content .image-container .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 16px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 0 3px 3px 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: 0.6s ease;
}
.modal .modal-content .image-container .prev:hover,
.modal .modal-content .image-container .next:hover {
  background: rgba(0, 0, 0, 0.8);
}
.modal .modal-content .image-container .next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
.modal .modal-content .image-container .dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  cursor: pointer;
  display: inline-block;
  background: #bbb;
  border-radius: 50%;
  transition: 0.6s;
}
.modal .modal-content .image-container .dot.active {
  background: #c59247;
}/*# sourceMappingURL=pe-x-pegasus.css.map */