h1 {
  font-size: 28px;
  text-align: center;
  margin: 8px 0;
}

p {
  margin: 4px 0;
  font-size: 14px;
}

.block,
.profile-container {
  margin: 0 auto;
}

.breadcrumbs {
  font-size: 13px;
  color: #ccc;
  margin: 12px 0 4px;
}

.breadcrumbs a {
  color: #fff;
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs a:visted {
    color:#3A86FF;
}

.breadcrumbs span {
  color: #888;
}

.live-badge {
  background-color: #ff0832;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 4px;
  margin-left: 10px;
  text-transform: uppercase;
}

.badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #FFC107;
  color: #1a1a1a;
  padding: 3px 8px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
}

.combined-badge {
  letter-spacing: 0.5px;
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.iframe{
    align-items: center;
    background: #1a1a1a;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
    
    
}

.iframe-container {
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.iframe-scaler {
    position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding-top: 55%;
}

.iframe-scaler iframe {
     position: absolute;
  top: 0;
  left: 0;
  width: 905px;
  height: 510px;
  transform: scale(0.95); /* Adjust based on container fit */
  transform-origin: top left;
}

.profile-details,
.extra-info {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
}

.cardItem {
  background-color: #161B22;
  padding: 10px 14px;
  border-radius: 8px;
  flex: 1 1 45%;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
}

.cardItem p {
  margin: 0;
  font-size: 13px;
}

#about {
  background: #161B22;
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}

#tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tag-pill {
  background-color: #F15BB5;
  color: #fff;
  font-weight: 600;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.35);
  text-shadow: 0 1px 1px rgba(0,0,0,.35);
  padding: 6px 10px;
  border-radius: 16px;
  font-size: 12px;
  text-transform: lowercase;
  text-decoration: none;
}

.tag-pill a {
  text-decoration: none;
  color: inherit;
}

.tag-pill:hover {
  background-color: #d14c9c;
}

#button-container {
  margin-top: 20px;
  text-align: center;
  width: 100%;
}

.watch-now-btn {
  display: block;
  background-color: #3A86FF;
  color: #fff;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
  padding: 14px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 0 8px rgba(55, 125, 237, 0.4);
  transition: background 0.3s ease;
  width:100%;
  text-align: center;
}

.watch-now-btn:hover {
  background-color: rgba(55, 125, 237, 0.4);
}

.modelmobileAds{
    display:none;
}

@media (max-width: 728px) {
.modelDesktopAd{
    display:none;
}
.modelmobileAds{
    display:block;
}

.iframe-scaler iframe {
    transform: scale(0.33);
  }
}

@media (max-width: 600px) {
  .cardItem {
    flex: 1 1 100%;
  }

  .hero-img {
    max-height: 250px;
  }
}

