* {
      box-sizing: border-box;
    }
    body {
      font-family: 'Baloo 2', cursive;
      margin: 0;
      background: #fdf6e3;
      color: #333;
    }
    header {
      background-color: #ffcc00;
      padding: 1rem 2rem;
      position: relative;
    }
    .logo {
      font-size: 2rem;
      font-weight: bold;
    }
    nav {
      display: none;
    }
    .nav-toggle {
      font-size: 2rem;
      cursor: pointer;
      background: none;
      border: none;
      position: absolute;
      right: 1.5rem;
      top: 1.2rem;
    }
    .nav-menu {
      display: none;
      flex-direction: column;
      gap: 10px;
      background: #fff9c4;
      padding: 1rem;
      position: absolute;
      top: 4.5rem;
      right: 1rem;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }
    .nav-menu.show {
      display: flex !important;
    }
    .nav-menu a {
      text-decoration: none;
      color: #333;
      font-size: 1.1rem;
    }
    @media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }
  .nav-menu {
    display: flex !important;
    flex-direction: row;
    position: absolute;
    gap: 2rem;
    background: none;
    box-shadow: none;
    top: 1.5rem;
    right: 2rem;
    padding: 0;
  }
}


    main {
      padding: 2rem 1rem;
      text-align: center;
    }
    .btn {
      background-color: #008c4a;
      color: #fff;
      padding: 1rem 2rem;
      border: none;
      font-size: 1.1rem;
      cursor: pointer;
      border-radius: 8px;
      margin: 10px 5px;
    }
    .btn:hover {
      background-color: #006c39;
    }
    .bingo-card {
      margin: 2rem auto;
      display: grid;
      grid-template-columns: repeat(5, minmax(50px, 1fr));
      gap: 10px;
      max-width: 300px;
      background: #fff;
      padding: 10px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    .cell {
      background: #fff;
      border: 2px solid #333;
      padding: 20px 0;
      font-size: 1.5rem;
      font-weight: bold;
      text-align: center;
    }
    .footer {
      margin-top: 3rem;
      padding: 1rem;
      background: #eee;
      text-align: center;
      font-size: 0.95rem;
    }
    .container {
      max-width: 800px;
      margin: 0 auto;
      padding: 1rem;
    }
	.logo a {
    text-decoration: none;
    color: inherit;
    font-weight: bold;
  }

  .logo a:hover {
    opacity: 0.8;
  }
  h1.logo {
  margin: 0;
  padding: 0;
}
  h1.logo a {
  text-decoration: none;
  color: inherit;
  font-weight: bold;
  margin: 0;
  padding: 0;
}