:root{
    --bg: #f1f2f4;      /* light gray hero background */
    --bar: #ffde59;     /* thin top accent line (subtle purple) */
    --ink: #0e0f12;
    --muted: #6b7280;
  }

  /* Reset-ish */
  *{ box-sizing: border-box; }
  html, body{ height: 100%; }
  body{
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
    color: var(--ink);
    background: #fff;
    -webkit-font-smoothing: antialiased;
  }

  /* Top rule */
  .top-accent{
    height: 4px;
    background: var(--bar);
    width: 100%;
  }

  /* Header */
  header{
    position: relative;
    height: 64px;
    display: grid;
    place-items: center;
  }
  .brand{
    font-size: 12px;
    letter-spacing: 4.2px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1b1b1d;
    pointer-events: none; /* purely decorative */
  }

  /* Hamburger */
  .hamburger{
    position: absolute;
    right: 18px;
    top: 50%;
    translate: 0 -50%;
    width: 20px;
    height: 14px;
    display: inline-grid;
    gap: 4px;
    cursor: pointer;
  }
  .hamburger span{
    background: #222;
    height: 2px;
    border-radius: 2px;
  }

  /* Hero */
  .hero{
    position: relative;
    min-height: calc(100vh - 64px - 4px - 164px); /* full screen minus header & accent */
    background: var(--bg);
    overflow: hidden;
  }

  /* Diagonal white cut at bottom using pseudo element */
  .hero::after{
    content: "";
    position: absolute;
    left: -10vw;
    right: -10vw;
    bottom: -40vh;
    height: 40vh;
    background: #fff;
    transform: skewY(-6deg);
    transform-origin: 0 100%;
  }


/* Full-width top section */
.top-banner {
  height: 150px;             /* adjust as needed */
  background-color: #ccc; /* light neutral background */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  margin: 20px;
}

/* Centered inner content box */
.welcome-box {
  max-width: 600px;          /* controls how wide the text box gets */
  background-color: #ccc;
  padding: 30px;
  border-radius: 12px;       /* soft, modern corners */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}


#player-body {
    background-color: #f8f9fa;
    font-family: Verdana, sans-serif;
    color: #333;
}

#popup-body {
    background-color: #f8f9fa;
    font-family: Verdana, sans-serif;
    color: #333;
    margin: 0;
    padding: 20px;
}

#myProgress {
  width: 100%;
  background-color: grey;
}

#progressBar {
  width: 1%;
  height: 5px;
  background-color: #ffde59;
}

#startupView, #playerView {
    max-width: 600px;
    height: 350px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

textarea {
    width: 100%;
    padding: 0px;
    border: 1px solid #ccc;
    border-radius: 5px;
    resize: vertical;
}

button {
    background-color: #17223B;
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #243763;
}

#wordLabel {
    font-size: 36px;
    padding-top: 100px;
    padding-bottom: 100px;
	height: 100px;
    margin: 20px;
    color: #555;
}

#settings {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    margin: 20px;
}

label {
    margin: 0 10px;
}

input[type="number"] {
    width: 70px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

input[type="checkbox"] {
    margin-left: 10px;
}

textarea {
    width: 100%;
    height: 150px; /* Adjust the height as needed */
    padding: 0px;
    font-family: 'Verdana'; /* Monospace font for a typewriter-like appearance */
    font-size: 16px; /* Font size */
    line-height: 1.5; /* Line spacing */
    color: #333; /* Text color */
    background-color: #f5f5f5; /* Background color */
    border: 1px solid #ccc; /* Border color and style */
    border-radius: 5px; /* Rounded corners */
    resize: vertical; /* Allows vertical resizing */
}

textarea:focus {
    outline: none; /* Removes default outline when focused */
    border-color: #007bff; /* Changes border color when focused */
}

.container {
  height: 200px;
  position: relative;
  border: 3px solid green;
}

.vertical-center {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
  border: 3px solid green; 
}

.site-footer {
  background: #111; /* dark, modern */
  color: #bbb;
  padding: 20px 0;
  font-size: 14px;
  margin-top: auto;
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-brand {
  margin: 0;
}

.footer-links a {
  color: #bbb;
  text-decoration: none;
  margin-left: 20px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: white;
}

/* mobile stacking */
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .footer-links a {
    margin-left: 0;
    margin: 5px;
  }
}
