.activities-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 0 0 20px;
  flex-wrap: wrap;
}
.activities-tab {
  background: #4d428a;
  border: 6px outset #ffb347;
  border-radius: 40px;
  color: #ffecaa;
  font-family: 'Party Confetti', cursive;
  font-size: clamp(20px, 5vw, 28px);
  font-weight: bold;
  text-shadow: 4px 4px 0 #b51e6b;
  padding: 8px 30px;
  box-shadow: 0 8px 0 #2a2355;
  cursor: url(/images/Anita_mouse2.png), pointer;
  white-space: nowrap;
}
.activities-tab.active {
  background: #5b4caf;
  border-style: inset;
  transform: translateY(3px);
  box-shadow: 0 5px 0 #2a2355;
}

.gif-box {
  min-height: 150px;
  position: relative;
  margin-bottom: 0;
  width: 100%;
  overflow: hidden;
}
.gif-container {
  position: absolute;
  top: -29px;
  left: 50%;
  transform: translate(-50%);
  pointer-events: none;
  width: 100%;
  text-align: center;
}
.static-anita {
  display: block;
  max-width: 90%;
  max-height: 250px;
  margin: 0 auto;
}

#worksheets {
  display: none;
  text-align: center;
  padding: 20px 0;
}
.preview-image {
  max-width: 100%;
  max-height: 50vh;
  cursor: url(/images/Anita_mouse2.png), pointer;
  box-shadow: 8px 8px 0 #7b5fa3;
  margin-bottom: 20px;
}
.button-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.worksheet-btn {
  background: #4d428a;
  border: 6px outset #ffb347;
  border-radius: 50px;
  color: #ffecaa;
  font-family: 'Party Confetti', cursive;
  font-size: clamp(24px, 6vw, 36px);
  font-weight: bold;
  text-shadow: 4px 4px 0 #b51e6b;
  padding: 5px 30px;
  box-shadow: 0 6px 0 #2a2355;
  cursor: url(/images/Anita_mouse2.png), pointer;
}
.worksheet-btn.active {
  background: #5b4caf;
  border-style: inset;
  transform: translateY(2px);
  box-shadow: 0 3px 0 #2a2355;
}

#games {
  display: none;
  margin-top: 20px;
}
#games iframe {
  width: 100%;
  height: 80vh;
  border: none;
  background: #fffde7;
  display: block;
  max-height: none;
}

.popup-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  z-index: 200;
  cursor: url(/images/Anita_mouse2.png), pointer;
}
.popup-content {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90vw;
  max-height: 90vh;
  border: 12px ridge #ffb347;
  border-radius: 60px 15px 60px 15px;
  background: #fff8d6;
  padding: 10px;
}
.popup-content img {
  max-width: 100%;
  max-height: 80vh;
  display: block;
  border-radius: 40px 10px 40px 10px;
}

.main-inner {
  overflow-x: hidden;
    padding-bottom: 0 !important;
}

.activities-inner {
  padding-bottom: 0 !important;
}


.activities-tabs {
  margin-bottom: 0 !important;
}

/* MOBILE STUFF */
@media screen and (max-width: 700px) {
  .gif-box {
    min-height: 100px;
  }
  .static-anita {
    max-height: 150px;
  }
  .activities-tab {
    margin-bottom: 0;
    font-size: 18px;
    padding: 6px 20px;
    border-width: 4px;
  }
  .worksheet-btn {
    font-size: 28px;
    padding: 4px 20px;
  }
}