@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

/* CSS Reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
}

:root {
  --nav-bg: #0c1220;
  --btn-dark: #0f172a;
  --btn-gold: #da9d24;
  --btn-white: #ffffff;
  --highlight: #f4b537;
}

html {
  background: linear-gradient(135deg, #0a0f1a 0%, #1a2847 100%);
  color: #ffffff;
}

body {
  width: 100%;
}

.nav-bg {
  background-color: var(--nav-bg);
}

.btn-gold {
  background-color: var(--btn-gold);
  color: #000;
}

.btn-dark {
  background-color: var(--btn-dark);
  color: #fff;
  border: 1px solid #fff;
}

.highlight {
  color: var(--highlight);
}

.main-bg {
  background-image: url("./img/Background.png");
  background-size: cover;
  background-position: top-center;
  background-repeat: no-repeat;
  background-color: #172442;
}
@media (max-width: 767px) {
  .main-bg {
    background-image: url("./img/Background Mobile.png");
  }
}

.sidebar-button {
  background: linear-gradient(90deg, #253763 0%, #2b71b0 50%, #253763 100%);
  border: 1.5px solid #32aafd;
  color: white;
  font-weight: 700;
  font-size: 22px;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25), 0 0 10px rgba(43, 113, 176, 0.5);
}

.sidebar-button:hover {
  background: linear-gradient(90deg, #f4b537 0%, #ffe0a2 50%, #f4b537 100%);
  border-color: #f4b537;
  color: #000000;
  transform: scale(1.001);
}

.sidebar-button.active {
  border-color: #ffffff;
  background: linear-gradient(90deg, #f4b537 0%, #ffe0a2 50%, #f4b537 100%);
  color: #000000;
}

@media (max-width: 1440px) {
  .sidebar-button {
    font-size: 12px;
    padding: 8px;
    border-width: 1px;
    border-radius: 4px;
  }
}

/* Custom Scrollbar Styling */
.custom-scrollbar::-webkit-scrollbar {
  width: 8px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* For Firefox */
.custom-scrollbar {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) rgba(255, 255, 255, 0.05);
}




.video-container {
      position: relative;
      width: 90%;
      max-width: 1200px;
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      grid-template-rows: repeat(5, 1fr);
      border-radius: 0 12px 12px 0px;
      background-color: #00000033;

    }

    .video-wrapper {
      width: 100%;
      position: relative;
      grid-column: span 4 / span 4;
      grid-row: span 5 / span 5;
    }

    video {
      width: 100%;

    }

    .viewer-count {
      position: absolute;
      top: 15px;
      right: 15px;
      background: rgba(0, 0, 0, 0.8);
      color: #fff;
      padding: 8px 12px;
      border-radius: 20px;
      font-size: 14px;
      font-weight: bold;
      display: flex;
      align-items: center;
      gap: 6px;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .viewer-dot {
      width: 8px;
      height: 8px;
      background: #ff4444;
      border-radius: 50%;
      animation: pulse 2s infinite;
    }

    .chat-box {
      grid-column: span 2 / span 2;
      grid-row: span 5 / span 5;
      grid-column-start: 5;
    }

    @media screen and (max-width: 1200px) {
      .video-container {
        display: flex;
        flex-direction: column;
      }
      .video-wrapper {
        width: 100%;
      
      }

      .chat-box {
      width: 100%;
      }
    }

    @keyframes pulse {
      0% {
        opacity: 1;
      }

      50% {
        opacity: 0.5;
      }

      100% {
        opacity: 1;
      }
    }

    .poster-overlay:after{
      content: "";
      background-image: url(./img/cover-photo-video-thumb.png?v=1.2);
      position: absolute;
      z-index: 1;
      top: 0;
      left: 0;
      background-size: contain;
      width: 100%;
      height: 100%;
    }




    .chatbox-live{
      position: relative;
      width: 400px;
      height: 420px;
      border-radius: 20px;
      overflow: hidden;
      border-radius: 14px;
    }