body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: black;
  color: #eee;
  line-height: 1.6;
}

    .top-bar {
      background-color: #111;
      padding: 16px 32px;
      display: flex;
      align-items: center;
      border-bottom: 1px solid #333;
    }

    .site-name {
      font-size: 1.7rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .site-name svg {
      width: 24px;
      height: 24px;
      stroke: #38bdf8;
    }

    .bottom-bar {
      background-color: #222;
      padding: 12px 32px;
      display: flex;
      flex-wrap: wrap;
      gap: 28px;
      align-items: center;
      position: relative;
      z-index: 10;
      border-bottom: 1px solid #333;
    }

    .bottom-bar a,
    .more-btn {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 15px;
      font-weight: 500;
      color: #cbd5e1;
      text-decoration: none;
      padding-bottom: 3px;
      position: relative;
      cursor: pointer;
      transition: color 0.25s ease;
    }

    .bottom-bar a:hover,
    .more-btn:hover {
      color: #f8fafc;
    }

    .bottom-bar a::after,
    .more-btn::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      height: 2px;
      width: 100%;
      background-color: #38bdf8;
      transform: scaleX(0);
      transform-origin: right;
      transition: transform 0.3s ease;
    }

    .bottom-bar a:hover::after,
    .more-btn:hover::after {
      transform: scaleX(1);
      transform-origin: left;
    }

    .bottom-bar svg {
      width: 18px;
      height: 18px;
      stroke: #38bdf8;
    }

    .more {
      position: relative;
    }

    .dropdown {
      position: absolute;
      top: 100%;
      left: 0;
      background-color: #222;
      border: 1px solid #333;
      border-radius: 6px;
      padding: 10px 0;
      display: none;
      flex-direction: column;
      z-index: 999;
      min-width: 180px;
      margin-top: 18px;
    }

    .dropdown a {
      padding: 10px 16px;
      font-size: 14px;
      color: #cbd5e1;
      text-decoration: none;
    }

    .dropdown a:hover {
      background-color: #475569;
      color: white;
    }

    .bottom-bar::-webkit-scrollbar {
      display: none;
    }


/* Hero */
.hero-article {
  padding: 20px 20px;
  text-align: center;
  margin-top: 2px;
  border-bottom: 1px solid #111;
  background-color: #222;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero-article h1 {
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 18px;
}

.hero-article .highlight {
  color: #38bdf8;
}

.hero-article p {
  font-size: 16px;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 14px;
  padding: 0 12px;
}


/* Layout */
.layout {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
}
.sidebar {
  flex: 1 1 250px;
}
.sidebar.right {
  flex: 1 1 250px;
}
.main {
  flex: 2 1 500px;
}

/* Card styling */
.card {
  background: #111;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
    cursor: pointer;
}
.card h2 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 16px;
}
.item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s;
}
.item:hover {
  background-color: #2a2a2a;
}
.item img {
  height: 45px;
  width: 45px;
  border-radius: 50%;
  margin-right: 10px;
}
.item span {
  color: #ccc;
  font-size: 13px;
}

.match-box {
  background: #222;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #333;
}
.match-box h3 {
  font-size: 20px;
  color: #facc15;
}
.match-box .sub {
  font-size: 13px;
  color: #999;
}

.card {
  background: #111;
  border-radius: 12px;
  padding: 16px;
  color: white;
  font-family: 'Segoe UI', sans-serif;
  border: 1px solid #222;
}

.poster {
  margin-bottom: 16px;
  text-align: center;
}

.poster img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 6px;
}

.event-time {
  font-size: 13px;
  color: #ccc;
}

/* Footer */
.footer {
  text-align: center;
  padding: 20px;
  background: #1a1a1a;
  color: #777;
  font-size: 13px;
  border-top: 1px solid #333;
}

.search-box {
  position: relative;
  margin-bottom: 25px;
}
.search-box input {
  width: 100%;
  padding: 10px 40px 10px 35px;
  background-color: #111;
  border: 1px solid #222;
  border-radius: 6px;
  color: #eee;
  font-size: 14px;
}
.search-box input::placeholder {
  color: #777;
}
.search-box .icon-left,
.search-box .icon-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 18px;
  width: 18px;
  cursor: pointer;
}
.search-box .icon-left {
  left: 10px;
  color: white;
}
.search-box .icon-right {
  right: 10px;
  display: none;
  color: white;
}


.match-card {
  background: #222;
  border-radius: 10px;
  border: 1px solid #333;
  padding: 20px;
  margin-bottom: 10px;
  cursor: pointer;
}

.match-card {
  position: relative;
  background: #222;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 10px;
}

.status-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #1e1e2e;
  color: white;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  opacity: 0.9;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(3px);
  z-index: 10;
  transition: all 0.3s ease;
}

.status-badge svg {
  width: 14px;
  height: 14px;
  stroke: white;
  display: inline-block;
}

.status-badge.live {
  background-color: #b91c1c;
  color: white;
  border: none;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 0 6px rgba(185, 28, 28, 0.4);
  transition: transform 0.3s ease;
}

.status-badge.live:hover {
  transform: scale(1.05);
}


.status-badge.live svg {
  fill: #fff;
  stroke: none;
}


.status-badge.live svg {
  width: 12px;
  height: 12px;
  fill: #ef4444;
  animation: bubble-pulse 1.2s infinite ease-in-out;
  filter: drop-shadow(0 0 4px #ef4444aa);
}

@keyframes bubble-pulse {
  0%, 100% {
    transform: scale(0.7);
    opacity: 0.7;
    filter: drop-shadow(0 0 2px #ef444455);
  }
  50% {
    transform: scale(1.4);
    opacity: 1;
    filter: drop-shadow(0 0 6px #ef4444cc);
  }
}

.match-card .match-league {
  text-align: center;
  font-size: 13px;
  color: #aaa;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.match-card .match-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}
.match-card .team {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.match-card .team img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  border-radius: 50%;
  margin-bottom: 5px;
}
.match-card .team span {
  color: #eee;
  font-size: 14px;
}
.match-card .match-info {
  flex: 2;
}
.match-card .match-info h3 {
  font-size: 17px;
  color: #facc15;
  margin-bottom: 5px;
}
.match-card .match-info p {
  font-size: 13px;
  color: #bbb;
}

.match-section {
  background-color: #111;
  border-radius: 10px;
  padding: 20px;
  border: 1px solid #222;
}

/* Responsive */
@media (max-width: 768px) {
  .layout {
    flex-direction: column;
  }
  .nav {
    justify-content: center;
    margin-top: 10px;
  }
}
@media (max-width: 600px) {
  .match-card .match-content {
    flex-direction: column;
    gap: 10px;
  }
}
