
  /* ================================
   GLOBAL RESET & BASE STYLES
================================== */

/* Box sizing and margin reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Set up body */
html, body {
  height: 100%;
  width: 100%;
  background-color: #020202;
  color: #f2f2f2;
  font-family: 'Segoe UI', sans-serif;
  /*overflow-x: hidden;
  scroll-behavior: smooth;*/
}

/* Remove link underline + color reset */
a {
  color: inherit;
  text-decoration: none;
}

/* Responsive typography */
h1 {
  font-size: 2.5rem;
  line-height: 1.3;
}

h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}

p {
  font-size: 1rem;
  line-height: 1.6;
  color: #f2f2f2;
}

/* Reusable layout container */
.page-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 12px;
  width: 100%;
  box-sizing: border-box;
}

/* Default button style (optional) */
.btn-primary {
  background: linear-gradient(90deg, #FF0DF7, #1B2DFB);
  width: auto;
  border: none;
  color: #fff;
  padding: 10px 24px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-primary:hover {
  background: linear-gradient(90deg, #1B2DFB, #FF0DF7);
}

/* Responsive media queries for base typography */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  p {
    font-size: 0.95rem;
  }
}
/* =============================
   SMALL SCREEN ADJUSTMENTS
   For devices < 500px width
============================= */

@media (max-width: 500px) {
    .page-container {
      padding-left: 12px;
      padding-right: 12px;
    }
  
    h1 {
      font-size: 1.8rem;
    }
  
    h2 {
      font-size: 1.4rem;
    }
  
    h3 {
      font-size: 1.2rem;
    }
  
    p {
      font-size: 0.9rem;
      line-height: 1.5;
    }
  
    .btn-primary {
      width: 100%;
      padding: 12px;
      font-size: 1rem;
    }
  }
  