body {
  margin: 0;
  padding: 0 20px;
  font-family: Arial, sans-serif;
  background: #0f0c29;
  color: white;
  box-sizing: border-box;
}

.navbar {
  background-color: #111;
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 30px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.7);
  z-index: 999;
}

.navbar .logo {
  font-size: 1.8em;
  font-weight: bold;
  color: #ff0099;
  text-shadow: 1px 1px 2px black;
  text-decoration: none;
}

.navbar .logo:hover {
  opacity: 0.8;
}

.navbar nav {
  display: flex;
  gap: 20px;
}

.navbar nav a,
footer nav a {
  margin: 0 15px;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.navbar nav a:hover,
footer nav a:hover {
  color: #ff0099;
}

.menu-toggle {
  display: none;
  font-size: 1.8em;
  cursor: pointer;
  color: white;
}

@media (max-width: 768px) {
  .navbar nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background: #111;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 0 10px black;
  }

  .navbar nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

.hero {
  text-align: center;
  padding: 50px 20px 20px;
}

.hero h1 {
  font-size: 3em;
  color: #ff0099;
}

.live-label {
  background: red;
  display: inline-block;
  padding: 5px 15px;
  font-weight: bold;
  border-radius: 5px;
  box-shadow: 0 0 10px red;
  margin: 10px auto;
}

.player-wrapper {
  text-align: center;
  margin-bottom: 30px;
}

video {
  width: 90%;
  max-width: 1000px;
  border: 4px solid #ff0099;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(0,0,0,0.7);
  margin-bottom: 15px;
}

.controls {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.controls button {
  margin: 10px 5px;
  padding: 10px 20px;
  font-size: 1em;
  background: #ff0099;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.controls button:hover {
  background: #ff33aa;
}

.info-sections {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  padding: 40px 20px;
  background-color: #1e1e2f;
}

.section {
  flex: 1;
  min-width: 250px;
  max-width: 400px;
  text-align: center;
}

.section h2 {
  color: #ff0099;
}

footer {
  background-color: #111;
  color: #ccc;
  text-align: center;
  padding: 40px 20px;
  margin-top: 30px;
  font-size: 0.9em;
  border-top: 1px solid #333;
}

.footer-logo {
  font-size: 1.8em;
  font-weight: bold;
  color: #ff0099;
  text-shadow: 1px 1px 2px black;
  margin-bottom: 10px;
}

.news-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 40px 20px;
  background-color: #1e1e2f;
}

@media (max-width: 991px) {
  .news-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .news-container {
    grid-template-columns: 1fr;
  }
}

.news-card {
  background-color: #222;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
}

.news-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.news-card .content {
  padding: 15px;
}

.news-card h3 {
  font-size: 1.1em;
  color: #ff0099;
  margin-bottom: 10px;
}

.news-card p {
  font-size: 0.95em;
  color: #ccc;
}

.news-card a {
  text-align: center;
  display: block;
  padding: 10px;
  background-color: #ff0099;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-top: 1px solid #333;
}

.news-card a:hover {
  background-color: #ff33aa;
}

.contact-wrapper {
  max-width: 600px;
  margin: 0 auto 60px;
  padding: 30px;
  background: #1e1e2f;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  background: #2c2f4a;
  border: 1px solid #444;
  border-radius: 8px;
  color: white;
  font-size: 1em;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  background-color: #ff0099;
  border: none;
  color: white;
  font-weight: bold;
  border-radius: 8px;
  font-size: 1.1em;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background-color: #ff33aa;
}

.contact-success {
  color: limegreen;
  text-align: center;
  margin-bottom: 20px;
}

.contact-error {
  color: red;
  text-align: center;
  margin-bottom: 20px;
}
