/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

/* Background */
body {
  font-family: Arial, sans-serif;
  color: #fff;
  background: url("/wp-content/uploads/FcBc-hub-0457-p0w/images/tank153-ai-generated-9217986.webp") no-repeat center center fixed;
  background-size: cover;
}

/* Layout */
.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
header {
  background: rgba(0, 0, 0, 0.7);
  padding: 15px 20px;
  position: sticky;
  top: 0;
  z-index: 10;
  text-align: center;
}

.logo {
  font-family: "Alex Brush", cursive;
  font-size: 2.6rem;
  font-weight: normal;
  margin-bottom: 10px;
}

/* Navigation */
.nav-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 10px;
}

nav {
  width: 100%;
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.15);
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(255, 255, 255, 0.35);
}

/* Main content */
main {
  flex: 1;
  padding: 20px;
}

.content-box {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.65);
  padding: 25px;
  border-radius: 10px;
}

.content-box h1 {
  margin-bottom: 15px;
}

/* Embeds */
.embed-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  margin-top: 15px;
}

.embed-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Footer */
footer {
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  padding: 12px;
  font-size: 0.9rem;
}

/* Mobile */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
  }

  .nav-links.show {
    display: flex;
  }
}