/* =========================================================
   GLOBAL.CSS
   ========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::-webkit-scrollbar {
  display: none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: #eef7f1;
  color: #1f2937;
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

.main-wrapper,
.page-wrapper,
.home-page {
  width: 100%;
}

#all-draws {
  scroll-margin-top: 90px;
}

.section-space {
  max-width: 1200px;
  margin: 34px auto 0;
  padding: 0 10px;
}

.section-top {
  text-align: center;
  margin-bottom: 20px;
}

.section-mini {
  font-size: 10px;
  font-weight: 800;
  color: #a0a0a0;
  letter-spacing: 2px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.section-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-badge.green {
  background: #dcfce7;
  color: #15803d;
}

.section-badge.gold {
  background: #fff5d7;
  color: #c98b00;
}

.section-title {
  font-size: 34px;
  font-weight: 900;
  color: #1f4031;
  margin: 0;
  letter-spacing: 1px;
}

.section-sub {
  margin-top: 8px;
  color: #8a978f;
  font-size: 14px;
}

.small-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.pill-wrap {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.book-btn {
  display: block;
  width: 100%;
  background: rgba(255, 137, 27, 0.95);
  color: #111;
  text-align: center;
  font-weight: 800;
  font-size: 15px;
  padding: 13px 18px;
  border-radius: 999px;
  transition: 0.25s ease;
  border: none;
  cursor: pointer;
}

.book-btn:hover {
  background: rgba(0, 218, 116, 0.95);
  transform: translateY(-1px);
  color: #111;
}

.disabled-btn {
  background: #c7c7c7 !important;
  cursor: not-allowed !important;
  box-shadow: none !important;
  pointer-events: none !important;
  opacity: 0.7;
}

@media (max-width: 1100px) {
  .section-title {
    font-size: 30px;
  }
}

@media (max-width: 900px) {
  .section-title {
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  .section-title {
    font-size: 24px;
  }

  .section-sub {
    font-size: 13px;
  }
}