/* i used ai for the css because im dumb lmao */

body {
  background: #111;
  color: #eee;
  font-family: system-ui, sans-serif;
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

h1,
p {
  margin: 0.5rem 0;
}

p {
  max-width: 40rem;
  color: darkgray;
}

/* --- FIXED BULLET LIST STYLES --- */
ul {
  text-align: left;       /* Keeps text and bullets aligned together */
  display: inline-block;   /* Allows the list block to be centered by the body */
  margin: 0.8rem 0 2rem 0;
  padding-left: 20px;     /* Leaves room for the bullets */
}

li {
  color: #eee;
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

/* Custom bullet color to match your blue glow theme */
li::marker {
  color: #71D4FE;
}
/* --------------------------------- */

.btn-160 {
    box-shadow: 0px 3px 3px rgba(0, 0, 0, .7);
    color: #ffffff;
    /* CHANGED: Increased left/right padding for better horizontal whitespace */
    padding: 15px 30px; 
    background: #2F3336;
    border-radius: 12px;
    text-shadow: 0px 0px 40px #71D4FE, 0px 0px 80px #71D4FE;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    cursor: pointer;
    text-decoration: none;
    user-select: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    letter-spacing: 1px;
    border: none;
    /* ADDED: Forces the buttons to stretch to the full width of the grid track */
    width: 100%; 
    box-sizing: border-box; /* Ensures padding doesn't break the layout width */
}

.btn-160:active {
    box-shadow: 0 0px 4px rgba(68, 68, 68, 0.25);
}

/*** disabled style ***/
.btn-160:disabled {
    pointer-events: none;
    opacity: .65;
    color: #7e7e7e;
    background: #dcdcdc;
    box-shadow: none;
    text-shadow: none;
}

/*** css-buttons.com ***/

.button-container {
  display: grid;
  /* CHANGED: Tells grid columns to automatically size themselves to the max-content (the longest button) */
  grid-template-columns: repeat(3, max-content); 
  gap: 15px;
  justify-content: center; /* Keeps the entire grid centered on your page */
}

.button-container a {
  text-decoration: none;
  display: flex; /* Ensures the <a> tag behaves nicely with the stretched button inside */
}