/* === BASE === */
body {
  font-family: Arial, sans-serif;
  background-color: #111;
  color: #fff;
  margin: 0;
  padding: 0;
}

/* === HEADER === */
header {
  background: #000;
  text-align: center;
  padding: 30px 20px;
}

.logo {
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 2px;
  color: #e50914;
  font-family: 'Segoe UI', sans-serif;
}

.subtitle {
  font-size: 18px;
  color: #ddd;
  margin-top: 10px;
}

/* === CTA Buttons === */
.cta-section {
  text-align: center;
  margin: 40px auto;
}
.cta-button {
  display: inline-block;
  padding: 15px 30px;
  margin: 10px;
  background-color: #e50914;
  color: white;
  font-size: 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.cta-button:hover {
  background-color: #b00610;
}

/* === Content Sections === */
.section {
  max-width: 960px;
  margin: auto;
  padding: 40px 20px;
}
h2 {
  color: #e50914;
}
ul {
  list-style: none;
  padding-left: 0;
}
ul li::before {
  content: "✔️ ";
  color: #e50914;
}

/* === Demo Gallery === */
.demo-gallery {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  margin-top: 20px;
}
.demo-item {
  flex: 0 0 auto;
  width: 220px;
  background: #222;
  padding: 10px;
  border-radius: 8px;
}
.demo-item img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 10px;
}

/* === Footer === */
footer {
  text-align: center;
  font-size: 14px;
  color: #777;
  padding: 30px 20px;
}

/* === Form Elements === */
input[type="text"], input[type="file"], select {
  padding: 10px;
  font-size: 16px;
  width: 80%;
  max-width: 400px;
  margin-bottom: 10px;
  border-radius: 5px;
  border: none;
}
button {
  padding: 10px 20px;
  background: #e50914;
  border: none;
  color: white;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}
button:hover {
  background: #b00610;
}

/* === Clip Previews === */
.clips-wrapper {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  padding: 10px 0;
}
.clip-item {
  flex: 0 0 auto;
  width: 200px;
  background: #222;
  padding: 10px;
  border-radius: 8px;
}
.clip-item img,
.clip-item video {
  width: 100%;
  border-radius: 6px;
}
