@media (max-width: 768px) {
  .menu-item {
    display: none !important
  }
  .menu {
    height: 50px !important;
  }
  .menu::before {
    position: relative;
    top: 0.6em;
  }
}

body.newsline h2 {
  color: #000;
  letter-spacing: -1px;
  font-weight: 700;
}


.tik4-tag-filter__list,
ul.tik4-sl__d.tik4-sl__d {
  padding-left: 0 !important;
  padding-right: 0 !important;
  list-style-type: none !important;
}

.tik4-sl__a svg {
  fill: none;
}

@media (max-width: 1130px) {
  .tik4.tik4 {
    --t4-sc: 0.83333;
  }
}


.tik4-rich-text.tik4-rich-text h2 {
  color: inherit;
}


.tik4-tag.tik4-tag, button.tik4-tag.tik4-tag.tik4-tag {
  color: var(--t4-txt);
}

.tik4-media-image__img {
  min-height: 0 !important;
  max-width: 100% !important;
}

.tik4-live img {
  max-width: 100% !important;
  min-height: 0 !important;
}



/* Video ad styles */
.ad-video {
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 300px;
  height: 60vh;
  display: block;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  scale: 1.5
  /* Prevent fullscreen and other video controls */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: auto;
}

/* Prevent fullscreen API calls */
.ad-video::-webkit-media-controls-fullscreen-button {
  display: none !important;
}

.ad-video::-webkit-media-controls {
  overflow: hidden !important;
}

/* Additional fullscreen prevention */
.ad-video:fullscreen {
  display: none !important;
}

.ad-video:-webkit-full-screen {
  display: none !important;
}

.ad-video:-moz-full-screen {
  display: none !important;
}

.ad-video:-ms-fullscreen {
  display: none !important;
}

/* Mobile-only parallax effect */
@media screen and (max-width: 768px) {
  .ad-video {
    transition: transform 0.1s ease-out;
    will-change: transform;
  }
  
  .ad-video.parallax-enabled {
    transform: translateY(0);
    transition: transform 0.1s ease-out;
  }
}
@media screen and (min-width: 768px) {
  .ad-video {
    min-height: 0;
    height: auto;
    scale: 1;
  }
}

.ad-container {
  position: relative;
  overflow: hidden;
}

.ad-container span {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 4px 8px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 500;
  z-index: 1;
}

.ad-container--img img {
  display: block;
  max-width: 100%;
}


.unmute-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.7);
  border: none;
  color: white;
  padding: 8px 12px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  z-index: 2;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.unmute-btn:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}

.unmute-btn:active {
  transform: scale(0.95);
}

.leader-board-ad-image-mobile {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.sidebar-ad-image {
  width: 100%;
  display: block;
  max-width: 100%;
}

.leaderboard-ad-image {
  display: none;
  margin: 0 auto;
}

@media screen and (min-width: 600px) {
  .leaderboard-ad-image {
    display: block
  }
  .leader-board-ad-image-mobile {
    display: none;
  }
}