body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0b0f1a;
  color: #fff;
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #111827;
  position: sticky;
  top: 0;
}

.logo {
  height: 40px;
}

.menu a {
  color: #fff;
  margin-left: 15px;
  text-decoration: none;
}

/* CONTAINER */
.container {
  max-width: 1000px;
  margin: auto;
  padding: 20px;
}

/* GAME */
.game-box iframe {
  width: 100%;
  height: 500px;
  border: none;
  border-radius: 10px;
}

/* CONTENT */
.content {
  margin-top: 20px;
  padding: 10px;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 20px;
  background: #111827;
  margin-top: 30px;
}

.footer-links a {
  color: #ccc;
  margin: 0 10px;
  text-decoration: none;
}
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0b0f1a;
  color: white;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111827;
  padding: 15px;
  position: sticky;
  top: 0;
}

.logo { height: 40px; }

.menu a {
  color: white;
  margin-left: 10px;
  text-decoration: none;
}

.container {
  max-width: 900px;
  margin: auto;
  padding: 20px;
}

.game-box iframe {
  width: 100%;
  height: 500px;
  border: none;
  border-radius: 10px;
}

.footer {
  text-align: center;
  padding: 20px;
  background: #111827;
  margin-top: 30px;
}
/* Replace the previous .game-controls and #fullscreenBtn CSS with this */

.game-controls {
    text-align: center;
    margin-top: 12px;
}

#fullscreenBtn {
    background: #00d4ff;
    color: #0b0f1a;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

#fullscreenBtn:hover {
    background: #00ffcc;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 255, 204, 0.3);
}