/* === Global page styles === */
body {
  /* Dark theme base */
  background-color: #000000;
  color: #ffffff;
  margin: 0;
  padding: 0;
  display: flex;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* === Navbar === */
.navbar {
  background-color: #1e1e1e;               /* dark charcoal bar */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5em 1em;
  flex-wrap: wrap;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.6); /* subtle depth */
}

.nav-left {
  display: flex;
  align-items: center;
}

.flag-icon {
  height: 60px;
  margin-right: 10px;
}

.nav-title {
  font-size: 2em;
  font-weight: bold;
  color: #fafafa;                           /* bright for contrast */
}

.nav-links a {
  margin-left: 15px;
  text-decoration: none;
  font-weight: bold;
  color: #d0d0ff;                           /* soft blue-white */
  font-size: 1.1em;
  transition: color 0.2s ease;              /* smooth hover */
}

.nav-links a:hover,
.nav-links a:focus {
  color: #ffd700;                           /* gold accent */
  text-decoration: underline;
}

/* === Page content === */
.content {
  text-align: center;
  padding: 3em 1em;
}

.content h1 {
  font-size: 2.8em;
  color: #ffffff;
}

/* === Layout === */
.page-wrapper {
  display: flex;
  width: 100%;
  min-height: 100vh;
}

.side-bar {
  width: 10%;
  background-color: #2a003d;
}

.main-content {
  width: 80%;
  padding: 20px;
}

h1 {
  font-size: 2em;
  margin: 1em 0 0.5em;
}

/* === Video block === */
#video-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 1em;
}

video {
  width: 100%;
  height: auto;
  background-color: #000000;
  display: block;
  outline: none;
}
