body {
  font-family: Arial, sans-serif;
  background: #f9f9f9;
  text-align: center;
  margin: 0;
  padding: 0;
}

/* Container */
.container {
  padding: 40px;
}

/* Title */
.main-title {
  font-family: 'Amatic SC', cursive;
  font-size: 4rem;       /* adjust as you like */
  text-align: center;
  color: black;          /* now it's black */
  font-weight: 700;      /* bold */
  margin-top: 20px;
  margin-bottom: 40px;
}

/* Video */
.video-box {
  max-width: 600px;
  margin: 0 auto 30px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.video-box video {
  width: 100%;
  display: block;
}

/* Sidebar Menu */
.menu {
  display: flex;
  flex-direction: column;
  position: fixed;   /* stick to left side */
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  gap: 20px;         /* space between buttons */
  width: 180px;      /* same width for all buttons */
}

/* Menu Buttons - Grey / Black Style */
.menu-btn {
  font-family: 'Bebas Neue', sans-serif; /* keep your font */
  font-size: 1.5rem;                     /* keep your size */
  padding: 15px 0;
  background-color: #eee; /* light grey */
  color: #333;            /* black text */
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  width: 100%;
  transition: all 0.3s ease;
  letter-spacing: 1.5px;
}

.menu-btn:hover {
  background-color: #ddd; /* slightly darker grey on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}


/* Adjust main content so it doesn't overlap sidebar */
.container {
  margin-left: 220px;   /* leave space for sidebar + some margin */
  padding: 40px;
}

/* Popup */
.popup {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

.popup-content {
  background: white;
  padding: 25px;
  border-radius: 15px;
  width: 90%;
  max-width: 600px;
  text-align: left;
  position: relative;
  animation: pop 0.4s ease;
}

/* Add this new rule for the popup title */
.popup-content h2 {
  font-family: 'Amatic SC', cursive;
  font-weight: 700;
  text-align: center;
}

.close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 3rem;
  cursor: pointer;
  color: #333;
}

@keyframes pop {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
