* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background-color: #eaf0f2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.container {
  width: 95%;
  max-width: 900px;
  background: #002c42;
  border-radius: 10px;
  overflow: hidden;
  margin: 15px 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.banner-top {
  width: 100%;
  height: 65px;
  background: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 500;
}
.banner-bottom {
  width: 100%;
  height: 65px;
  background: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-size: clamp(14px, 2vw, 20px);
  margin-top: 10px;
  font-weight: 500;
}




.match-info {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0;
  text-align: center;
}
.match-info h3 {
  color: #ffb500;
  font-weight: 700;
  font-size: clamp(14px, 2vw, 20px);
}
.match-info img {
  width: clamp(30px, 5vw, 45px);
  height: clamp(30px, 5vw, 45px);
  border-radius: 50%;
}
.match-info span {
  font-size: clamp(14px, 3vw, 20px);
  font-weight: 700;
    color: #ffffff;
}
.live-area {
  position: relative;
  width: 100%;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
}
#video {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  background: #000;
  object-fit: cover;
}
.marquee {
  position: absolute;
  top: 5px;
  left: 0;
  width: 100%;
  color: #fff;
  font-weight: 600;
  background: rgba(0,0,0,0.5);
  padding: 4px 0;
  font-size: clamp(10px, 2vw, 14px);
}
.link-taruhan {
  position: absolute;
  bottom: 8px;
  right: 10px;
  background: #00224c;
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: clamp(10px, 2vw, 13px);
  text-decoration: none;
}
.link-taruhan:hover {
  background: #00753f;
}

/* --- Thumbnail Overlay --- */
.thumbnail-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.3s ease;
}
.thumbnail-overlay img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 0;
}
.thumbnail-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.live-btn {
  position: relative;
  z-index: 2;
  background: red;
  color: white;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 700;
  font-size: clamp(12px, 3vw, 18px);
  letter-spacing: 1px;
  animation: pulse 1.2s infinite;
  box-shadow: 0 0 12px rgba(255,0,0,0.6);
}
@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 12px rgba(255,0,0,0.6);}
  50% { transform: scale(1.05); box-shadow: 0 0 25px rgba(255,0,0,0.8);}
  100% { transform: scale(1); box-shadow: 0 0 12px rgba(255,0,0,0.6);}
}

.profile-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 15px 10px;
  flex-wrap: wrap;
}
.profile-left {
  display: flex;
  align-items: center;
  gap: 15px;
}
.profile-left img {
  width: clamp(60px, 10vw, 80px);
  height: clamp(60px, 10vw, 80px);
  border-radius: 50%;
  border: 3px solid red;
}
.profile-info {
  display: flex;
  flex-direction: column;
}
.profile-info h3 {
  margin: 0;
  font-size: clamp(14px, 3vw, 20px);
  font-weight: 700;
  color: #00fff5;
  letter-spacing: 6px;
}
.profile-info p {
  color: red;
  margin: 2px 0;
  font-weight: 600;
  font-size: clamp(10px, 2.5vw, 14px);
}
.btn-wa {
  background: #25d366;
  color: white;
  border-radius: 20px;
  padding: 6px 14px;
  font-weight: 600;
  font-size: clamp(10px, 2.5vw, 14px);
  text-decoration: none;
  transition: 0.3s ease;
  display: inline-block;
}
.btn-wa:hover {
  background: #128c7e;
  transform: scale(1.1);
}

/* Banner samping bergerak */
.side-banner {
  width: 100%;
  min-width: 150px;
  height: 100px;
  background: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-size: clamp(12px, 3vw, 18px);
  border-radius: 8px;
}


/* Responsif */
@media(max-width: 700px){
  .profile-section {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .side-banner {
    width: 100%;
    order: 2;
  }
  .profile-left {
    flex-direction: column;
    text-align: center;
  }
}