/* Reset and base styles */
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --white-50: #ffffff;
  --white-100: #f8f8f8;
  --white-200: #e2e2e2;
  --white-300: #c9c9c9;
  --white-400: #adadad;
  --white-500: #919191;
  --white-600: #747474;
  --white-700: #565656;
  --white-800: #3a3a3a;
  --white-900: #1f1f1f;
  --white-950: #111111;
}

@font-face {
  font-family: "Azeret";
  src: url("azeret/AzeretMono-Bold.woff2") format("woff2-variations");
  /* font-weight: normal; */
  /* font-style: normal; */
  font-weight: 100 900;
}

body {
  font-family: "Azeret", sans-serif;
  background-color: black;
  color: var(--white-50);
  margin: 0;
  padding: 20px 10px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
}

h1 {
  text-transform: uppercase;
  font-weight: 700;
  font-size: clamp(4rem, 20vw, 8rem);
  color: var(--white-500);
  margin: 0 0 1rem 0;
  word-wrap: break-word;
  line-height: 1.1;
}

h2 {
  text-transform: uppercase;
  font-size: clamp(0.875rem, 4vw, 1.6rem);
  font-weight: 700;
  background-color: var(--white-500);
  color: black;
  margin: 0 0 2rem 0;
  padding: 0.5rem 1rem;
  display: inline-block;
}

p {
  color: var(--white-500);
}

a {
  text-decoration: none;
  color: var(--white-300);
}

.stripe {
  width: 100%;
  height: 20px;
}

.green { background-color: #2db003; }
.yellow { background-color: #e0d90b; }
.orange { background-color: #e7690f; }
.red { background-color: #c50412; }
.magenta { background-color: #b50139; }

.stripe-container {
  position: fixed;
  /* margin-top: auto; */
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

/* Responsive breakpoints - Mobile First Approach */

/* Small tablets and large phones (landscape) */
@media (min-width: 576px) {
  body {
    padding: 30px 20px;
  }

  th, td {
    padding: 12px;
  }
}

/* Tablets */
@media (min-width: 768px) {
  body {
    padding: 40px 30px;
  }

  h2 {
    padding: 0.75rem 1.5rem;
  }

  table {
    display: table;
    width: 90%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  th, td {
    border: 2px solid var(--white-500);
    padding: 15px;
  }

  .stripe-container {
    bottom: 20px;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  body {
    padding: 50px;
  }

  table {
    width: 80%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Large screens */
@media (min-width: 1200px) {
  body {
    padding: 60px;
  }
}

/* Table styling - Mobile First */
table {
  border-collapse: collapse;
  margin: 2rem auto;
  width: auto;
  max-width: 100%;
  color: var(--white-500);
  font-size: clamp(0.75rem, 3vw, 1.2rem);
}

th, td {
  border: 1px solid var(--white-500);
  padding: 8px;
  text-align: center;
  white-space: nowrap;
}

/* Responsive table wrapper */
.table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  justify-content: center;
}
