body {
  font-family: sans-serif;
  padding-top: 50px;
}

/* Main content box */
.content {
  height: 100%;
  width: 99%;
  border: solid #ff3333;
  border-radius: 10px;
  padding: 1px;
  margin-left: 3px;
  margin-right: 3px;
}

/* Header text */
.header {
  color: #ff3333;
}

/* Topbar */
.Topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background-color: #ff3333;
  color: #ffffff;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.Topbar-inner {
  width: 95%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.Topbar-logo img {
  height: 40px;
  margin-right: 10px;
}

/* Desktop links */
.Topbar-links a {
  color: white;
  text-decoration: none;
  margin: 0 6px;
  font-size: 16px;
}

.Topbar-links h1 {
  font-size: 20px;
  margin: 0;
  padding: 0;
}

/* Hamburger button */
.Topbar-menu-btn {
  display: none;
  font-size: 26px;
  cursor: pointer;
  user-select: none;
}

/* Mobile dropdown */
.Topbar-dropdown {
  display: none;
  flex-direction: column;
  background-color: #ff3333;
  width: 100%;
  padding-bottom: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.Topbar-dropdown a {
  color: white;
  text-decoration: none;
  padding: 8px 20px;
  font-size: 18px;
}

/* Responsive mode */
@media (max-width: 700px) {
  .Topbar-links {
    display: none;
  }
  .Topbar-menu-btn {
    display: block;
  }
}

/* Regular page links */
.links {
  color: #ff3333;
  text-decoration: none;
}

/* Error text */
.error {
  color: #d00;
  font-weight: bold;
  margin-bottom: 10px;
}
/* Wrapper */
.iframe-wrapper {
  width: 100%;
  height: calc(100vh - 60px);
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #0099ff;
  background: #000;
}

/* Game iframe */
.game-frame {
  flex: 1;
  width: 100%;
  border: none;
}

/* Bottom bar */
.Bottombar {
  background: #0099ff;
  padding: 8px;
  text-align: center;
}

/* Fullscreen button */
.fullscreen-btn {
  background: white;
  color: #0099ff;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  font-weight: bold;
}

.fullscreen-btn:hover {
  background: #e6e6e6;
}