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

body {
  font-family: Arial, sans-serif;
  background: #f4f4f4;
  color: #222;
}

/* HEADER */
.hero {
  background: #000;
  color: #fff;
  padding: 35px 15px;
  text-align: center;
}

.hero span {
  color: #ff4b2b;
}

/* LAYOUT */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

.layout {
  display: flex;
  gap: 20px;
}

/* MAIN CONTENT */
.main-content {
  flex: 3;
}

.match-info,
.video-section {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.match-info h2,
.video-section h2 {
  margin-bottom: 12px;
}

.match-info ul {
  list-style: none;
}

.match-info li {
  margin-bottom: 6px;
}

/* VIDEO */
.video-wrapper {
  position: relative;
  padding-top: 56.25%;
  background: #000;
  border-radius: 6px;
  overflow: hidden;
}

.video-wrapper{position:relative;padding-top:56.25%}
.video-wrapper iframe{position:absolute;top:0;left:0}

.note {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #555;
}

/* SIDEBAR */
.sidebar {
  flex: 1;
}

.sidebar-box {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.sidebar-box h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.sidebar-box ul {
  list-style: none;
}

.sidebar-box li {
  padding: 6px 0;
  border-bottom: 1px solid #eee;
}

/* AD */
.ad-box {
  height: 250px;
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .layout {
    flex-direction: column;
  }
}
