body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: url("https://tr.rbxcdn.com/180DAY-6f7ecb307a1935ba97776b7092d21c09/768/432/Image/Webp/noFilter") no-repeat center center fixed;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  backdrop-filter: blur(10px);
  z-index: -1;
}

.container {
  max-width: 900px;
  width: 90%;
  background: rgba(20, 24, 32, 0.9);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.6);
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
header img {
  height: 50px;
}
header .title {
  font-size: 22px;
  font-weight: bold;
  margin-left: 10px;
  color: #fff;
}
nav a {
  margin-left: 20px;
  color: #bbb;
  text-decoration: none;
  font-weight: bold;
}
nav a:hover {
  color: #fff;
}

.main {
  text-align: center;
}
.main h1 {
  margin-top: 0;
  font-size: 32px;
}
.subtitle {
  background: #222;
  color: #FFFFFF;
  padding: 6px 12px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 20px;
}
.video {
  width: 100%;
  border-radius: 10px;
  margin: 20px 0;
}
.description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}
.links a {
  flex: 1;
  min-width: 100px;
  text-align: center;
  background: #0d6efd;
  padding: 10px;
  border-radius: 6px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s;
}
.links a:hover {
  background: #0a58ca;
}

button.play-btn {
  background: #0d6efd;
  border: none;
  padding: 12px 20px;
  font-size: 18px;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  margin-top: 20px;
}
button.play-btn:hover {
  background: #0a58ca;
}
