body {
    margin: 0;
    font-family: Arial, sans-serif;
    /* background: #0f172a; */
    background: #EDB455;
    color: #e2e8f0;
}

.header {
    padding: 4px;
    text-align: center;
    background: #EDB455;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    padding: 24px;
}

.title {
    font-weight: bold;
    margin-top: 10px;
    font-size: 22px;
    font-family: "MyCustomFont", cursive;
    font-weight: 400;
}

.desc {
    font-size: 12px;
    opacity: 0.8;
    margin-top: 4px;
}

@font-face {
  font-family: "MyCustomFont";
  src: url("/static/fonts/Monoton-Regular.ttf") format("truetype");
}


.neon {
  font-family: "MyCustomFont", cursive;
  font-size: 42px;
  font-weight: 400;
  font-style: normal;
  color: #907e7e;
}


.icon {
  width: 64px;
  height: 64px;

  /* base state */
  filter: brightness(0.9);
  transition: filter 0.25s ease, transform 0.25s ease;
}

.card {
  position: relative;
  display: block;
  text-decoration: none;

  background: #EDB455;
  color: #1a1a1a;

  padding: 14px 16px;

  /* IMPORTANT: keep everything flat */
  box-shadow: none;
  border: none;

  /* creates space for stripe frame */
  margin: 10px;
}

/* --- layered retro stripe border --- */
.card::before,
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* outer dark layer */
.card::before {
  border: 8px solid #3D2616;
  transform: translate(6px, 6px);
  z-index: -2;
}

/* inner accent layer */
.card::after {
  border: 6px solid #B24B36;
  transform: translate(3px, 3px);
  z-index: -1;
}

/* optional hover “retro pop” */
.card:hover {
  transform: translateY(-2px);
  transition: 0.2s ease;
  box-shadow: 0 8px 0 #3D2616;
}

.banner-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
}

.stripe-banner,
.stripe-banner2 {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.stripe-banner2 {
  z-index: 1;
}

.stripe-banner {
  z-index: 2;
}

.stripe-banner svg,
.stripe-banner2 svg {
  width: 100%;
  height: 100%;
}

.content-box {
  position: relative;
  z-index: 10;
  background-color: #EDB455;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 10px 10px 0px #556B2F; /* Hard shadow for retro feel */
  max-width: 400px;
  text-align: center;
  border: 4px solid #D35400;
}

