
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: none;
  text-decoration: none;
  background: none;
  -webkit-font-smoothing: antialiased;
}

menu, ol, ul {
  list-style-type: none;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #06080e;
  color: #ffffff;
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

.app-layout {
  display: grid;
  grid-template-columns: 236px 1fr 301px;
  min-height: 100vh;
  width: 100%;
}

.sidebar {
  background: #06080e;
  border-right: 1px solid #131a27;
  width: 236px;
  min-height: 100vh;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  z-index: 100;
}

.sidebar::-webkit-scrollbar {
  width: 4px;
}
.sidebar::-webkit-scrollbar-thumb {
  background: #131a27;
  border-radius: 2px;
}

.sidebar-inner {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px 25px;
}

.logo-live-indicator {
  width: 16px;
  height: 16px;
  background: rgba(108, 24, 25, 0.51);
  border: 0.5px solid rgba(167, 36, 36, 0.42);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.live-dot {
  width: 6px;
  height: 6px;
  background: #e22b2b;
  border-radius: 50%;
  box-shadow: 0px 0px 5.2px 0px rgba(167, 36, 36, 1);
  display: block;
}
.logo-live-indicator.live {
  background: rgba(24, 108, 30, 0.51);
  border-color: rgba(36, 167, 44, 0.42);
  cursor: pointer;
}
.logo-live-indicator.live .live-dot {
  background: #cffe1a;
  box-shadow: 0px 0px 5.2px 0px rgba(207, 254, 26, 0.8);
  animation: livePulse 1.5s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.logo-img {
  height: 21px;
  width: auto;
  object-fit: contain;
}

.sidebar-section {
  padding: 10px 0;
}

.sidebar-section-title {
  color: #8ba4ba;
  font-size: 9px;
  font-weight: 800;
  padding: 8px 27px;
  letter-spacing: 0.5px;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 27px 8px 28px;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
  transition: opacity 0.2s;
  position: relative;
}

.sidebar-link:hover {
  opacity: 0.8;
}

.sidebar-link.muted {
  color: #88969c;
  font-weight: 600;
}

.sidebar-icon {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  object-fit: contain;
}

.sidebar-icon-placeholder {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
}

.soon-badge {
  background: #2c3c47;
  border-radius: 2px;
  font-size: 6px;
  font-weight: 800;
  color: #88969c;
  padding: 2px 5px;
  margin-left: 4px;
  transform: rotate(-3.377deg);
}

.sidebar-bottom {
  margin-top: auto;
  padding: 20px;
}

.sidebar-social-card {
  background: #0e111a;
  border-radius: 5px;
  padding: 12px;
}

.sidebar-social-card .sidebar-section-title {
  padding: 0 0 10px 0;
  font-size: 12px;
}

.social-icons {
  display: flex;
  gap: 8px;
}

.social-icon-btn {
  width: 25px;
  height: 25px;
  background: #131a27;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.2s;
}

.social-icon-btn:hover {
  opacity: 0.7;
}

.social-icon-btn img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.main-content {
  padding: 25px 30px 60px;
  overflow-x: hidden;
  min-width: 0;
}

.video-section {
  margin-bottom: 30px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  border-radius: 9px;
  border: 1px solid #131a27;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(7, 10, 17, 0) 0%, rgba(6, 8, 14, 1) 100%);
}

.video-thumbnail {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 1200 / 676;
  border-radius: 9px;
}

.video-iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: 9px;
  display: block;
  background: #000;
  transition: opacity 0.3s ease;
}

.video-pause-overlay {
  position: absolute;
  inset: 0;
  bottom: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 8, 14, 0.5);
  z-index: 8;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  cursor: pointer;
  border-radius: 9px;
}

.video-pause-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

.settings-panel {
  position: absolute;
  bottom: 56px;
  right: 12px;
  background: #131a27;
  border: 1px solid #1e2a3a;
  border-radius: 8px;
  padding: 8px 0;
  z-index: 20;
  min-width: 140px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.settings-panel.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.settings-panel-title {
  color: #88969c;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 6px 16px;
  letter-spacing: 0.5px;
}

.settings-option {
  display: block;
  width: 100%;
  padding: 8px 16px;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s;
}

.settings-option:hover {
  background: rgba(154, 63, 255, 0.15);
}

.settings-option.active {
  color: #a750fe;
}

.settings-option.active::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #a750fe;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}

.video-progress-fill.live-pulse {
  animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.live-badge.paused {
  opacity: 0.4;
}

.live-badge.paused .live-badge-dot {
  animation: none;
  opacity: 0.4;
}

.live-badge.is-offline {
  opacity: 0.5;
}

.live-badge.is-offline .live-badge-dot {
  background: #88969c !important;
  animation: none;
}

.live-badge.is-live {
  opacity: 1;
}

.video-wrapper.offline-state .video-controls-left .video-ctrl-btn {
  opacity: 0.4;
  pointer-events: none;
}

.live-badge-dot {
  animation: dotPulse 1.5s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.video-wrapper.is-fullscreen {
  border-radius: 0;
}

.video-wrapper.is-fullscreen .video-iframe {
  border-radius: 0;
  aspect-ratio: auto;
  height: 100vh;
}

.video-wrapper.is-fullscreen .video-top-bar {
  display: none;
}

.video-wrapper.is-fullscreen .video-pause-overlay {
  border-radius: 0;
  bottom: 48px;
}

.video-wrapper.controls-hidden .video-controls,
.video-wrapper.controls-hidden .video-progress {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.video-wrapper.controls-hidden {
  cursor: none;
}

.video-top-bar {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.video-top-bar-inner {
  background: #131a27;
  border-radius: 0 0 5px 5px;
  border: 1px solid transparent;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.video-logo-shuffle {
  height: 17px;
  width: auto;
  object-fit: contain;
}

.video-top-x {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
}

.video-logo-cousik {
  height: 13px;
  width: auto;
  object-fit: contain;
}

.video-progress {
  position: absolute;
  bottom: 48px;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(19, 26, 39, 0.6);
  z-index: 14;
}

.video-wrapper.vod-mode .video-progress {
  cursor: pointer;
  height: 16px;
  padding: 6px 0;
  background: transparent;
  box-sizing: border-box;
  position: absolute;
}

.video-wrapper.vod-mode .video-progress::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 6px;
  height: 4px;
  background: rgba(19, 26, 39, 0.6);
  border-radius: 2px;
}

.video-wrapper.vod-mode .video-progress-fill {
  position: absolute;
  left: 0;
  top: 6px;
  height: 4px;
  border-radius: 2px;
  max-width: 100%;
}

.video-wrapper.vod-mode .video-progress:hover .video-progress-fill,
.video-wrapper.vod-mode .video-progress:active .video-progress-fill {
  background: #b86dff;
}

.vod-skip-hint {
  position: absolute;
  right: 18%;
  top: 50%;
  transform: translateY(-50%) scale(0.85);
  z-index: 13;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(8, 10, 16, 0.78);
  border: 1px solid rgba(167, 80, 254, 0.35);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.3px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.vod-skip-hint.visible {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.video-progress-fill {
  height: 100%;
  width: 100%;
  background: #a750fe;
}

.video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  background: rgba(6, 8, 14, 0.8);
}

.video-controls-left,
.video-controls-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.video-ctrl-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
  padding: 4px;
}

.video-ctrl-btn:hover {
  opacity: 1;
}

.video-ctrl-btn img,
.video-ctrl-btn svg {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.volume-control {
  display: flex;
  align-items: center;
  gap: 4px;
}

.volume-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 80px;
  height: 14px;
  background: transparent;
  outline: none;
  cursor: pointer;
  transition: width 0.2s;
  margin: 0;
  padding: 0;
  vertical-align: middle;
}

.volume-slider::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.2);
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  box-shadow: 0 0 4px rgba(0,0,0,0.3);
  margin-top: -5px;
}

.volume-slider::-moz-range-track {
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.2);
}

.volume-slider::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  border: none;
  box-shadow: 0 0 4px rgba(0,0,0,0.3);
}

.video-time {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}

.live-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}

.live-badge-dot {
  width: 8px;
  height: 8px;
  background: #a750fe;
  border-radius: 50%;
  display: block;
}

.promo-banners {
  margin-bottom: 0;
}

.bonus-images-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  justify-items: center;
}

.bonus-banner-wrap {
  border-radius: 5px;
  overflow: hidden;
  width: 100%;
  max-width: min(440px, 75vw);
  margin: 0 auto;
}

.bonus-banner {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

.bonus-cards-section {
  margin-bottom: 40px;
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

.bonus-cards-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.bonus-card {
  background: #0e111a;
  border: 1px solid #131a27;
  border-radius: 5px;
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.bonus-card-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  margin-bottom: 4px;
}

.bonus-card-content {
  text-align: center;
  flex: 1;
}

.bonus-card-text {
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.4;
}

.bonus-highlight-green {
  color: #d0ff00;
}

.bonus-highlight-purple {
  color: #886cff;
}

.bonus-card-sub {
  color: #425a69;
  font-size: 15px;
  font-weight: 600;
  margin-top: 4px;
}

.bonus-card-code {
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(180deg, rgba(46, 64, 72, 0) 0%, rgba(111, 155, 174, 0.34) 100%);
  border: 1px solid #2c3c47;
  border-radius: 5px;
  padding: 10px 20px;
  width: 100%;
  justify-content: center;
}

.bonus-card-code span {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
}

.code-value {
  font-weight: 800 !important;
}

.code-green {
  color: #d0ff00 !important;
}

.code-purple {
  color: #886cff !important;
}

.copy-icon {
  width: 13px;
  height: 15px;
  cursor: pointer;
  opacity: 0.7;
}

.copy-icon:hover {
  opacity: 1;
}

.bonus-card-btn {
  width: 100%;
  height: 41px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: opacity 0.2s;
  font-family: 'Montserrat', sans-serif;
  margin-top: auto;
}

.bonus-card-btn:hover {
  opacity: 0.85;
}

.btn-green {
  background: linear-gradient(180deg, rgba(206, 255, 92, 1) 0%, rgba(208, 255, 0, 1) 100%);
  color: #0e111a;
}

.btn-purple {
  background: #886cff;
  color: #ffffff;
}

.faq-section {
  margin-bottom: 40px;
}

.faq-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  justify-content: center;
}

.faq-icon {
  width: 55px;
  height: auto;
}

.faq-title-text {
  display: flex;
  flex-direction: column;
}

.faq-title-sub {
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
}

.faq-title-main {
  font-size: 36px;
  font-weight: 800;
  font-style: italic;
  background: linear-gradient(92.35deg, rgba(139, 44, 255, 1) 0%, rgba(211, 135, 255, 1) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: #0e111a;
  border-radius: 5px;
}

.faq-item-header {
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-item-header:hover .faq-item-text { color: #b0bec5; }

.faq-item-text {
  color: #88969c;
  font-size: 20px;
  font-weight: 700;
  transition: color 0.2s;
}

.faq-item-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}

.faq-item.open .faq-item-answer {
  max-height: 300px;
  padding: 0 24px 22px;
}

.faq-item-answer p {
  color: #5a7080;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
}

.faq-item-answer strong {
  color: #d0ff00;
  font-weight: 700;
}

.faq-item.open .faq-item-text { color: #ffffff; }
.faq-item.open .faq-toggle img { transform: rotate(180deg); }

.faq-toggle {
  width: 45px;
  height: 45px;
  background: rgba(6, 8, 14, 0.73);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.faq-toggle img {
  width: 23px;
  height: 17px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.chat-sidebar {
  width: 301px;
  background: rgba(19, 26, 39, 0.1);
  border: 1px solid #131a27;
  border-radius: 7px;
  position: sticky;
  top: 24px;
  height: calc(100vh - 48px);
  margin: 24px 0;
  overflow: hidden;
}

.chat-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.chat-header {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  gap: 10px;
}

.chat-close {
  width: 20px;
  height: 20px;
  cursor: pointer;
  opacity: 0.6;
}

.chat-close:hover {
  opacity: 1;
}

.chat-title {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  flex: 1;
  text-align: center;
}

.chat-header-icons {
  display: flex;
  gap: 8px;
}

.chat-icon {
  width: 16px;
  height: 13px;
  cursor: pointer;
  opacity: 0.6;
}

.chat-body {
  flex: 1;
  padding: 16px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.chat-settings-icon {
  width: 20px;
  height: 18px;
  opacity: 0.5;
}

.chat-footer {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chat-input-wrapper {
  display: flex;
  gap: 6px;
}

.chat-input {
  flex: 1;
  background: rgba(44, 60, 71, 0.24);
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 10px 14px;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  outline: none;
}

.chat-input::placeholder {
  color: #2e4048;
}

.chat-send-btn {
  width: 41px;
  height: 41px;
  background: #9a3fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.chat-login-btn {
  background: #cffe1a;
  border-radius: 6px;
  padding: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: #0e111a;
  cursor: pointer;
  text-align: center;
  width: 100%;
}

.chat-login-btn:hover {
  opacity: 0.9;
}

.mobile-menu-btn {
  display: none;
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 200;
  width: 40px;
  height: 40px;
  background: #131a27;
  border-radius: 6px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 1400px) {
  .app-layout {
    grid-template-columns: 236px 1fr;
  }

  .chat-sidebar {
    display: none;
  }
}

@media (max-width: 1100px) {
  .app-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: fixed;
    left: -260px;
    top: 0;
    transition: left 0.3s ease;
    z-index: 150;
  }

  .sidebar.open {
    left: 0;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .main-content {
    padding: 70px 20px 40px;
  }
}

@media (max-width: 768px) {
  .main-content {
    padding: 70px 12px 30px;
  }

  .faq-title-main {
    font-size: 24px;
  }

  .faq-title-sub {
    font-size: 12px;
  }

  .promo-banners {
    display: none;
  }
  .bonus-cards-section {
    margin-top: 0;
  }
  .bonus-cards-row {
    grid-template-columns: 1fr;
  }

  .live-badge {
    font-size: 16px;
  }

  .video-time {
    font-size: 14px;
  }

  .video-ctrl-btn img {
    width: 22px;
    height: 22px;
  }

  .faq-item-text {
    font-size: 16px;
  }

  .faq-toggle {
    width: 38px;
    height: 38px;
  }

  .faq-icon {
    width: 40px;
  }
}

@media (max-width: 480px) {
  .faq-title-main {
    font-size: 20px;
  }

  .video-controls {
    padding: 0 8px;
    height: 40px;
  }

  .video-ctrl-btn img {
    width: 20px;
    height: 20px;
  }

  .live-badge {
    font-size: 14px;
  }

  .video-time {
    font-size: 12px;
  }

  .video-top-bar-inner {
    padding: 5px 10px;
  }

  .video-logo-shuffle {
    height: 12px;
  }

  .video-logo-cousik {
    height: 10px;
  }

  .video-top-x {
    font-size: 12px;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.cookie-banner.visible {
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-banner-inner {
  background: #0e111a;
  border-top: 1px solid #1c2740;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cookie-text {
  flex: 1;
}

.cookie-title {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

.cookie-text p {
  color: #8ba4ba;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}

.cookie-text a {
  color: #886cff;
  text-decoration: underline;
  font-weight: 600;
}

.cookie-text a:hover {
  color: #a88dff;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 24px;
  border-radius: 5px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.cookie-btn:hover {
  opacity: 0.85;
}

.cookie-btn-reject {
  background: #131a27;
  color: #8ba4ba;
  border: 1px solid #1c2740;
}

.cookie-btn-accept {
  background: linear-gradient(180deg, rgba(206, 255, 92, 1) 0%, rgba(208, 255, 0, 1) 100%);
  color: #0e111a;
}

@media (max-width: 768px) {
  .cookie-banner-inner {
    flex-direction: column;
    padding: 16px 16px;
    gap: 14px;
    text-align: center;
  }

  .cookie-actions {
    width: 100%;
    justify-content: center;
  }

  .cookie-btn {
    flex: 1;
    padding: 12px 16px;
  }
}

/* ==========================================
   Theater Mode & Chat Resize
   ========================================== */

/* Resize handle styling */
.chat-resize-handle {
  width: 8px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 101;
  cursor: col-resize;
  background: transparent;
}

/* The visible highlight line */
.chat-resize-handle::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: transparent;
  transition: background 0.2s;
}

.chat-resize-handle:hover::after,
.chat-resize-handle.resizing::after {
  background: #a750fe;
}

/* Prevent selection and maintain cursor while resizing */
body.resizing-chat {
  user-select: none !important;
  -webkit-user-select: none !important;
  cursor: col-resize !important;
}

.app-layout {
  transition: grid-template-columns 0.3s ease;
}

/* Theater Mode Styles */
.app-layout.theater-mode .sidebar {
  display: none;
}

.app-layout.theater-mode .main-content {
  padding: 0 0 60px 0 !important;
  grid-column: 1;
  min-width: 0;
  width: 100%;
}

.app-layout.theater-mode .video-section {
  margin-bottom: 24px;
}

.app-layout.theater-mode .video-wrapper {
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-top: none;
  min-height: min(56.25vw, calc(100vh - 88px));
}

.app-layout.theater-mode .video-iframe {
  border-radius: 0;
  width: 100%;
  height: auto;
  max-height: calc(100vh - 88px);
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.app-layout.theater-mode .video-pause-overlay {
  border-radius: 0;
}

.app-layout.theater-mode .watch-reward-bar,
.app-layout.theater-mode .promo-banners,
.app-layout.theater-mode .bonus-cards-section,
.app-layout.theater-mode .faq-section,
.app-layout.theater-mode .recent-broadcasts-section {
  padding-left: 30px;
  padding-right: 30px;
}

.app-layout.theater-mode #btnTheater svg {
  color: #cffe1a !important;
  stroke: #cffe1a !important;
}

body.streaming-theater-active {
  overflow-x: hidden;
}

.theater-exit-float {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(207, 254, 26, 0.35);
  background: rgba(14, 17, 26, 0.92);
  backdrop-filter: blur(10px);
  color: #cffe1a;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.theater-exit-float[hidden] {
  display: none !important;
}

.theater-exit-float:hover {
  background: rgba(24, 30, 44, 0.96);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

.theater-exit-float:active {
  transform: translateX(-50%) scale(0.98);
}

.theater-exit-float svg {
  stroke: #cffe1a;
  flex-shrink: 0;
}

@media (max-width: 1400px) {
  .chat-resize-handle {
    display: none !important;
  }
}

@media (max-width: 1100px) {
  .app-layout.theater-mode .main-content {
    padding-top: 56px !important;
  }

  .theater-exit-float {
    top: 72px;
  }
}

/* ==========================================
   Recent Broadcasts (VOD) Section Styles
   ========================================== */
.recent-broadcasts-section {
  margin-top: 30px;
  margin-bottom: 40px;
}

.recent-broadcasts-section .section-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.recent-broadcasts-section .section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.recent-broadcasts-section .section-icon {
  color: #a750fe;
}

.vod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}

.vod-grid-loading {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 32px 16px;
  color: #8ba4ba;
  font-size: 13px;
  font-weight: 600;
}

.vod-grid-spinner {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border: 2px solid rgba(167, 80, 254, 0.18);
  border-top-color: #a750fe;
  border-radius: 50%;
  animation: vodGridSpin 0.75s linear infinite;
}

@keyframes vodGridSpin {
  to { transform: rotate(360deg); }
}

.live-badge.is-vod .live-badge-dot {
  background: #886cff !important;
  animation: none;
}

.vod-now-playing {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 56px;
  z-index: 12;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.52);
  border: none;
  backdrop-filter: blur(6px);
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.35s ease;
}

.video-wrapper.vod-mode.vod-banner-dimmed .vod-now-playing {
  opacity: 0.28;
}

.video-wrapper.controls-hidden.vod-mode .vod-now-playing {
  opacity: 0.28;
}

.vod-now-playing[hidden] {
  display: none !important;
}

.vod-now-playing-label {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: rgba(136, 108, 255, 0.95);
}

.vod-now-playing-title {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vod-card {
  background: rgba(14, 17, 26, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.25s, box-shadow 0.25s;
  cursor: pointer;
  position: relative;
  text-decoration: none !important;
}

.vod-card.is-active {
  border-color: rgba(136, 108, 255, 0.65);
  box-shadow: 0 0 0 1px rgba(136, 108, 255, 0.35), 0 8px 20px rgba(0, 0, 0, 0.35);
}

.vod-card--disabled {
  cursor: default;
  opacity: 0.65;
}

.vod-kick-badge {
  position: absolute;
  left: 8px;
  bottom: 8px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.vod-kick-badge img {
  display: block;
  width: 14px;
  height: 14px;
}

.vod-kick-badge:hover {
  background: rgba(83, 252, 26, 0.18);
  border-color: rgba(83, 252, 26, 0.45);
  transform: scale(1.05);
}

.vod-card:hover {
  transform: translateY(-4px);
  border-color: rgba(167, 80, 254, 0.4);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4), 0 0 12px rgba(167, 80, 254, 0.1);
}

.vod-thumb-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #090c12;
  overflow: hidden;
}

.vod-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.vod-hover-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 4px;
  padding: 14px 10px 38px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.94) 0%,
    rgba(0, 0, 0, 0.72) 38%,
    rgba(0, 0, 0, 0.2) 68%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
}

.vod-hover-title {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.85);
}

.vod-hover-date {
  font-size: 10px;
  font-weight: 600;
  color: #cffe1a;
  letter-spacing: 0.2px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.vod-card:hover .vod-thumb {
  transform: scale(1.04);
}

.vod-card:hover .vod-hover-overlay {
  opacity: 1;
}

.vod-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.22s;
  pointer-events: none;
}

.vod-card:hover .vod-play-overlay {
  opacity: 1;
}

.vod-play-btn {
  background: rgba(167, 80, 254, 0.92);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 18px rgba(167, 80, 254, 0.65);
  transform: scale(0.85);
  transition: transform 0.22s cubic-bezier(0.25, 0.8, 0.25, 1);
  margin-bottom: 18px;
}

.vod-card:hover .vod-play-btn {
  transform: scale(1);
}

.vod-duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 6px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  letter-spacing: 0.4px;
  z-index: 5;
}

/* Chat Exit Theater Mode Banner & Button */
.theater-exit-chat-banner {
  display: none;
  padding: 10px 16px;
  background: rgba(167, 80, 254, 0.1);
  border-bottom: 1px solid rgba(167, 80, 254, 0.2);
  align-items: center;
  justify-content: center;
}

.theater-exit-chat-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #a750fe;
  color: #fff;
  border: none;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(167, 80, 254, 0.3);
}

.theater-exit-chat-btn:hover {
  background: #b56cff;
  box-shadow: 0 4px 16px rgba(167, 80, 254, 0.5);
}

.theater-exit-chat-btn:active {
  transform: scale(0.98);
}

.theater-exit-chat-btn svg {
  stroke: #fff;
}

.app-layout.theater-mode .theater-exit-chat-banner {
  display: flex;
}

