/* Terms and Conditions */
.section-terms {
  background: #000;
  color: #fff;
  padding: 80px 0;
}

.terms-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #f5c542;
  text-align: center;
}

.terms-breadcrumb {
  color: white;
  margin-bottom: 40px;
  text-align: center;
}

.terms-wrapper h3 {
  margin-top: 30px;
  font-size: 22px;
  color: #f5c542;
}

.terms-wrapper p,
.terms-wrapper li {
  font-size: 16px;
  line-height: 1.8;
  color: #e0e0e0;
}

.terms-wrapper ul {
  padding-left: 20px;
}
.hover:hover {
  color: #ff6600;
}
/* Rules */
.section-rules {
  background: linear-gradient(180deg, #0b0b0b 0%, #000 100%);
  padding: 100px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* subtle background glow */
.section-rules::before {
  content: "";
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(245, 197, 66, 0.15),
    transparent 70%
  );
  filter: blur(100px);
  pointer-events: none;
}

/* Title */
.rules-title {
  font-size: 48px;
  font-weight: 900;
  text-align: center;
  color: #f5c542;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

/* Breadcrumb */
.rules-breadcrumb {
  text-align: center;
  color: white;
  margin-bottom: 70px;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Rules container */
.rules-list {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* Rule card */
.rule-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px 26px;
  border-radius: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* golden hover glow */
.rule-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(245, 197, 66, 0.12),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.rule-item:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 197, 66, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

/* Rule heading */
.rule-item h3 {
  font-size: 20px;
  font-weight: 700;
  color: #f5c542;
  margin-bottom: 10px;
}

/* Rule text */
.rule-item p {
  font-size: 16px;
  color: #d9d9d9;
  line-height: 1.7;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .rules-title {
    font-size: 36px;
  }

  .rules-list {
    gap: 18px;
  }
}
