body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(#2f3f56, #1f2a3a);
  color: white;
}

/* HEADER */
header {
  background: black;
  padding: 18px calc((100% - 1100px)/2);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

header span {
  color: #f5b400;
}

/* CONTAINER */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
}

/* HEADINGS */
h1 {
  font-size: 40px;
  margin-bottom: 15px;
}

h2 {
  font-size: 24px;
  margin-top: 35px;
  margin-bottom: 10px;
}

/* TEXT */
p {
  color: #cfd6df;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* SUBTEXT */
.sub {
  color: #f5b400;
  margin-top: 10px;
}

/* BADGES */
.badges {
  margin-top: 20px;
  color: #ccc;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* CARD */
.card {
  background: #eee;
  color: black;
  padding: 22px;
  border-radius: 12px;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* TAG */
.tag {
  background: linear-gradient(45deg, #f5b400, #ffcc33);
  color: white;
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 6px;
  font-weight: bold;
}

/* BUTTON */
.btn {
  background: #f5b400;
  padding: 12px 22px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s;
}

.btn:hover {
  background: #ffcc33;
}

/* SECTIONS */
.section {
  margin-top: 60px;
}

/* LEGAL PAGES (Disclaimer, Terms, Privacy) */
.container h1 {
  font-size: 38px;
}

.container h2 {
  font-size: 22px;
}

.container p {
  max-width: 850px;
}



/* RESPONSIVE (IMPORTANT) */
@media (max-width: 768px) {
  header {
    padding: 18px 20px;
  }

  .card {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}
.logo {
  text-decoration: none;
  color: white;
}

.logo span {
  color: #f5b400;
}
/* FORCE MOBILE FIX (OVERRIDE GLOBAL CSS) */
@media (max-width: 768px) {

  .terms-container {
    max-width: 100% !important;
    margin: 20px auto !important;
    padding: 0 16px !important;
  }

  .terms-container h1 {
    font-size: 28px !important;
    text-align: center !important;
  }

  .terms-container h2 {
    font-size: 20px !important;
  }

  .terms-container p {
    font-size: 16px !important;
    line-height: 1.9 !important;
    max-width: 100% !important;
  }

}
