.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-156 .elementor-element.elementor-element-55ad5fe{text-align:center;}.elementor-156 .elementor-element.elementor-element-55ad5fe .elementor-heading-title{font-family:"Roboto", Sans-serif;font-weight:700;color:#FAB62F;}/* Start custom CSS for html, class: .elementor-element-4715dee */.tab-content {
  display: none;
  padding: 10px;
  background: #16202c;
  border-radius: 10px;
  border: 1px solid #253445;
  margin-top: 10px;
  position: relative; /* needed for absolute positioning of live icon */
}

.tab-content.active {
  display: block;
}

video {
  width: 100%;
  height: auto;
  max-height: 100vh;
  border-radius: 10px;
  display: block;
  object-fit: cover;
}

/* LIVE badge */
.live-badge {
  position: absolute;
  top: 35px;
  left: 15px;
  background-color: red;
  color: white;
  font-weight: bold;
  font-size: 14px;
  padding: 5px 10px;
  border-radius: 5px;
  z-index: 10;
  text-transform: uppercase;
  pointer-events: none; /* allows clicks to pass through */
}
.mute-btn {
     position: absolute;
    top: 75px;
  left: 15px;
      background: rgba(0, 0, 0, 0.6);
      border: 1px solid #555;
      color: #fff;
      border-radius: 50%;
      padding:10px;
      font-size: 13px;
      cursor: pointer;
      transition: background 0.3s;
      z-index: 3;
    }

    .mute-btn:hover {
      background: rgba(255, 68, 68, 0.8);
    }
/* 📱 Mobile adjustments */
@media (max-width: 768px) {
  .tab-content {
    padding: 10px;
    border-radius: 8px;
  }

  video {
    min-height: auto;
  }

  .live-badge {
    top: 10px;
    left: 10px;
    font-size: 12px;
    padding: 3px 8px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-0b7a9be */.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto; /* center */
  padding: 10px;
}

/* Card styles */
.card {
  background: #1f2a48;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px); /* subtle hover effect */
}

/* Card image */
.card img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 10px;
  border: 3px solid #1f2a48;
  transition: all 0.3s ease;
}

/* Card title */
.card h4 {
  color: #ffffff;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  transition: font-size 0.3s ease;
}

/* Tablet */
@media (max-width: 1024px) {
  .grid-container {
    gap: 8px;
  }

  .card img {
    width: 75px;
    height: 75px;
  }

  .card h4 {
    font-size: 14px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .grid-container {
    gap: 6px;
  }

  .card img {
    width: 60px;
    height: 60px;
  }

  .card h4 {
    font-size: 13px;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .grid-container {
    gap: 5px;
  }

  .card img {
    width: 50px;
    height: 50px;
  }

  .card h4 {
    font-size: 12px;
  }
}/* End custom CSS */