/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #0f0f1a;
  color: #fff;
  line-height: 1.6;
  text-align: center;
}

/* Górne przyciski */
.top-buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 30px 0;
}

.btn {
  display: inline-block;
  background: #222;
  color: #fff;
  padding: 15px 25px;
  border-radius: 15px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background: #ff6600;
  color: #fff;
}

/* Sekcje */
.section {
  display: block;
  padding: 40px 20px;
  background: #1e1e2f;
  margin: 20px auto;
  max-width: 900px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  text-align: center;
}

.section h2 {
  margin-bottom: 20px;
}

/* Film responsywny */
.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}