body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background-color: #0f172a;
  color: white;
  text-align: center;
  animation: fadeIn 1s ease-in-out;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
header {
  background: #1e293b;
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.header-left, .header-middle, .header-right {
  flex: 1 1 100%;
}
@media(min-width: 600px) {
  .header-left, .header-middle, .header-right {
    flex: 1;
  }
}
.thumbnail {
  width: 100px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
}
h1 {
  margin: 0.2rem 0;
  font-size: 1.6rem;
  color: #38bdf8;
}
.league, .teams, .time {
  margin: 0.2rem 0;
  font-size: 1rem;
  color: #e2e8f0;
}
.telegram {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
  background: #38bdf8;
  color: #0f172a;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s;
}
.telegram:hover {
  background: #0ea5e9;
}
main {
  padding: 1rem;
}
video {
  width: 100%;
  max-width: 800px;
  border-radius: 16px;
  box-shadow: 0 0 12px rgba(0,0,0,0.5);
}
footer {
  background: #1e293b;
  color: #94a3b8;
  padding: 0.5rem;
  font-size: 0.9rem;
}
