<style>

.game-content {
    display: flex;
    gap: 20px; /* space between columns */
}


.box {


background-color:white;
border:1px solid #663300;
padding:1px;
}

.box:hover {

background-color:#F2F2F2;
border:2px solid #663300;
padding:0px;
}



    .tooltip {
        position: relative;
        display: inline-block;
    }

    .tooltiptext {
        visibility: hidden;
        width: 400px;
        background-color: #333;
        color: #fff;
        text-align: center;
        border-radius: 5px;
        padding: 10px;
        position: absolute;
        z-index: 1;
        top: -30px;
        left: 50%;
        transform: translateX(-50%);
        opacity: 0;
        transition: opacity 0.3s;
font-size:14pt;
    }

    .tooltip:hover .tooltiptext {
        visibility: visible;
        opacity: 1;
    }

    .square {
        width: 20px;
        height: 20px;
        background-color: #663300;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        color: #fff;
        border-radius: 6px;
        cursor: pointer;
font-size:11pt;
    }

.menu {
  text-align: center;
  padding: 5px 0;
}
.menu form {
  display: inline-block;
  margin: 0 15px;
}
.menu input[type="image"] {
  width: 165px;
  height: auto;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.menu input[type="image"]:hover {
  transform: scale(1.2);
  opacity: 0.9;
}

/* *** Top of page introduction: */

.intro-section {
  background-color: #f8f8ff;    /* light background, not green */
  border: 2px solid #ccc;
  border-radius: 10px;
  padding: 20px;
  margin: 30px auto;
  max-width: 800px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: left;
  color: #222;
  font-size: 16pt;
  line-height: 1.5;
}

/* Float the image so text wraps around it */
.intro-section img {
  float: left;
  width: 160px;
  height: auto;
  margin-right: 20px;
  margin-bottom: 10px;
  border-radius: 10px;
}













/* Container stays the same */
.box-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 40px 20px;
}

/* Entire box now green */
.pretty-box {
  flex: 1 1 470px;
  max-width: 750px;
  background-color: #ffffff;       /* full green box */
  border: 3px solid #663300;       /* brown border for definition */
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  padding: 25px 30px;
  box-sizing: border-box;
  transition: box-shadow 0.3s ease;
    overflow: hidden;      /* keeps contents inside even if long */
}
.pretty-box:hover {
  box-shadow: 0 12px 25px rgba(0,0,0,0.35);
}

/* Main headers */
.pretty-box h2 {
  background-color: #663300;       /* brown header bar */
  color: #fff;
  margin: -10px -10px 15px -10px;
  padding: 12px 15px;
  border-radius: 14px 14px 0 0;
  text-align: center;
  font-size: 22pt;
  letter-spacing: 0.5px;
}

/* Lists – lighter fill inside green box for contrast */
.pretty-box ul {
  list-style-type: none;
  padding: 15px 25px;
  margin: 10px 0 20px 0;

}

.pretty-box li {
margin: 0;
padding: 0;
  font-size: 16pt;
  color: #222;
line-height: 1.4;
    white-space: nowrap;        /* force all text on one line */
    overflow: hidden;           /* hide anything that doesn't fit */
    text-overflow: ellipsis;    /* add three dots if text is cut off */
    display: block;             /* ensure ellipsis works reliably */
    max-width: 100%;            /* keeps item inside the box */
    box-sizing: border-box;
}









</style>
