
  body{
    background-color: #000000;
  }
   .profile-trigger {
        position: fixed;
        top: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        border: 3px solid var(--vs-theme-color);
        cursor: pointer;
        transition: all 0.3s ease;
        overflow: hidden;
        z-index: 1000;
      }

      .profile-trigger:hover {
        border-color: var(--vs-theme-color2);
        transform: scale(1.1);
      }

      .profile-trigger img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      /* Sidemenu Styles */
      .sidemenu-wrapper {
        position: fixed;
        z-index: 999999;
        right: 0;
        top: 0;
        height: 100%;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.75);
        visibility: hidden;
        opacity: 0;
        transition: all 0.3s ease;
      }

      .sidemenu-wrapper.show {
        visibility: visible;
        opacity: 1;
      }

      .sidemenu-content {
        --sidebarPosition: 400px;
        background-color: var(--vs-theme-color);
        width: var(--sidebarPosition);
        margin-left: auto;
        padding: 40px 30px 30px 30px;
        height: 100%;
        overflow-y: auto;
        position: relative;
        right: calc(-1 * var(--sidebarPosition));
        cursor: auto;
        transform-origin: right;
        transition: right 0.3s ease;
      }

      .sidemenu-wrapper.show .sidemenu-content {
        right: 0;
      }

      @media (max-width: 768px) {
        .sidemenu-content {
          --sidebarPosition: 300px;
          padding: 20px 15px;
        }
      }

      /* Scrollbar Styles */
      .sidemenu-content::-webkit-scrollbar {
        width: 5px;
      }

      .sidemenu-content::-webkit-scrollbar-track {
        box-shadow: inset 0 0 5px var(--bg-color);
        border-radius: 0px;
      }

      .sidemenu-content::-webkit-scrollbar-thumb {
        background: var(--bg-color);
        border-radius: 10px;
      }

      .sidemenu-content::-webkit-scrollbar-thumb:hover {
        background: var(--vs-theme-color2);
      }

      .sidemenu-logo {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 30px;
      }

      .closeButton {
        display: inline-block;
        border: none;
        color: var(--bg-color);
        background-color: transparent;
        font-size: 40px;
        padding: 0;
        border-radius: 50%;
        transform: rotate(0);
        transition: all ease 0.4s;
        font-family: var(--title-font);
        font-weight: 700;
        cursor: pointer;
      }

      .closeButton:hover {
        color: var(--white-color);
        transform: rotate(180deg);
      }

      .sidemenu-hr {
        height: 4px;
        border-top: 1px solid var(--bg-color);
        border-bottom: 1px solid var(--bg-color);
        opacity: 1;
        margin: 30px 0 35px;
      }

      .sidemenu-inner {
        display: flex;
        flex-direction: column;
        height: calc(100vh - 150px);
        justify-content: space-between;
      }

      /* Profile Menu Options */
      .profile-menu {
        margin-bottom: 40px;
      }

      .menu-option {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 15px 20px;
        margin-bottom: 15px;
        background-color: rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        color: var(--bg-color);
        font-weight: 600;
        font-size: 16px;
      }

      .menu-option:hover {
        background-color: rgba(0, 0, 0, 0.2);
        transform: translateX(-5px);
      }

      .menu-option i {
        font-size: 20px;
        width: 25px;
        text-align: center;
      }

      .auth-options {
        display: flex;
        gap: 10px;
        margin-bottom: 20px;
      }

      .auth-btn {
        flex: 1;
        padding: 12px 20px;
        border: 2px solid var(--bg-color);
        background-color: transparent;
        color: var(--bg-color);
        border-radius: 8px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 14px;
      }

      .auth-btn:hover {
        background-color: var(--bg-color);
        color: var(--vs-theme-color);
      }

      .auth-btn.primary {
        background-color: var(--bg-color);
        color: var(--vs-theme-color);
      }

      .auth-btn.primary:hover {
        background-color: transparent;
        color: var(--bg-color);
      }

      /* Subscription Section */
      .subscription-section {
        margin-top: auto;
      }

      .sidemenu-subtitle {
        font-size: 1.1rem;
        color: var(--bg-color);
        letter-spacing: 0.2px;
        margin-bottom: 15px;
        text-transform: uppercase;
      }

      .email-subscription__form {
        background-color: var(--bg-color);
        border-radius: 10px;
        display: flex;
        overflow: hidden;
        margin-bottom: 15px;
      }

      .email-subscription__input {
        flex: 1;
        color: var(--body-color);
        font-family: var(--title-font);
        padding: 12px 20px;
        border: none;
        outline: none;
        background-color: transparent;
      }

      .email-subscription__input::placeholder {
        color: var(--body-color);
      }

      .email-subscription__btn {
        /* background-color: var(--bg-color); */
        border: none;
        padding: 12px 20px;
        cursor: pointer;
        transition: all 0.3s ease;
      }

      .email-subscription__btn:hover svg path {
        fill: var(--vs-theme-color);
      }

      .sidemenu-text {
        color: var(--bg-color);
        font-size: 13px;
        font-weight: 600;
        font-family: var(--title-font);
        margin-bottom: 0;
        line-height: 1.4;
      }

      /* Demo Content */
      .demo-content {
        text-align: center;
        padding: 50px 20px;
      }

      .demo-content h1 {
        color: var(--vs-theme-color);
        margin-bottom: 20px;
      }

      .demo-content p {
        color: var(--body-color);
        margin-bottom: 30px;
      }

      /* Animation Classes */
      .sidemenu-item {
        opacity: 0;
        transform: translateX(30px);
        transition: all 0.3s ease;
      }

      .sidemenu-wrapper.show .sidemenu-item {
        opacity: 1;
        transform: translateX(0);
      }

      .sidemenu-wrapper.show .sidemenu-item:nth-child(1) {
        transition-delay: 0.1s;
      }
      .sidemenu-wrapper.show .sidemenu-item:nth-child(2) {
        transition-delay: 0.2s;
      }
      .sidemenu-wrapper.show .sidemenu-item:nth-child(3) {
        transition-delay: 0.3s;
      }
      .sidemenu-wrapper.show .sidemenu-item:nth-child(4) {
        transition-delay: 0.4s;
      }
      .sidemenu-wrapper.show .sidemenu-item:nth-child(5) {
        transition-delay: 0.5s;
      }
      .sidemenu-wrapper.show .sidemenu-item:nth-child(6) {
        transition-delay: 0.6s;
      }
  





      .sidemenu-wrapper {
  position: fixed;
  z-index: 999999;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.sidemenu-wrapper.show {
  visibility: visible;
  opacity: 1;
}

.sidemenu-content {
  --sidebarPosition: 400px;
  background-color: var(--vs-theme-color);
  width: var(--sidebarPosition);
  margin-left: auto;
  padding: 40px 30px 30px 30px;
  height: 100%;
  overflow-y: auto;
  position: relative;
  right: calc(-1 * var(--sidebarPosition));
  cursor: auto;
  transform-origin: right;
  transition: right 0.3s ease;
}

.sidemenu-wrapper.show .sidemenu-content {
  right: 0;
}

@media (max-width: 768px) {
  .sidemenu-content {
    --sidebarPosition: 300px;
    padding: 20px 15px;
  }
}

/* Scrollbar Styles */
.sidemenu-content::-webkit-scrollbar {
  width: 5px;
}

.sidemenu-content::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--bg-color);
  border-radius: 0px;
}

.sidemenu-content::-webkit-scrollbar-thumb {
  background: var(--bg-color);
  border-radius: 10px;
}

.sidemenu-content::-webkit-scrollbar-thumb:hover {
  background: var(--vs-theme-color2);
}

.sidemenu-logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.closeButton {
  display: inline-block;
  border: none;
  color: var(--bg-color);
  background-color: transparent;
  font-size: 40px;
  padding: 0;
  border-radius: 50%;
  transform: rotate(0);
  transition: all ease 0.4s;
  font-family: var(--title-font);
  font-weight: 700;
  cursor: pointer;
}

.closeButton:hover {
  color: var(--white-color);
  transform: rotate(180deg);
}

.sidemenu-hr {
  height: 4px;
  border-top: 1px solid var(--bg-color);
  border-bottom: 1px solid var(--bg-color);
  opacity: 1;
  margin: 30px 0 35px;
}

.sidemenu-inner {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 150px);
  justify-content: space-between;
}

/* Authentication Section in Sidemenu */
.auth-section {
  margin-bottom: 30px;
}

.auth-form-side {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 20px;
}

.auth-title {
  color: var(--bg-color);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

.side-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group-side {
  display: flex;
  flex-direction: column;
}

.form-group-side label {
  color: var(--bg-color);
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 0.9rem;
}

.form-group-side input {
  padding: 12px 15px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--bg-color);
  font-size: 14px;
  transition: all 0.3s;
}

.form-group-side input:focus {
  outline: none;
  border-color: var(--bg-color);
  background-color: white;
}

.form-group-side input::placeholder {
  color: #666;
}

.auth-btn-side {
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.auth-btn-side.primary {
  background-color: #FFA700;
  color: var(--vs-theme-color);
}

.auth-btn-side.primary:hover {
  background-color: #333;
  transform: translateY(-2px);
}

.auth-btn-side.logout {
  background-color: #df2a00;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-left: 30px;
}

.auth-btn-side.logout:hover {
  background-color: #FFA700;
  transform: translateY(-2px);
}

.auth-switch {
  text-align: center;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.auth-switch p {
  color: var(--bg-color);
  font-size: 0.9rem;
  margin: 0;
}

.auth-switch a {
  color: #FFA700;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid var(--bg-color);
}

.auth-switch a:hover {
  color: var(--white-color);
  border-bottom-color: var(--white-color);
}

/* Logged In State */
.logged-in-state {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
}

.user-profile {
  margin-bottom: 20px;
}

.user-avatar {
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
}

.user-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--bg-color);
  object-fit: cover;
}

.user-details h4 {
  color: var(--bg-color);
  font-size: 1.2rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.user-details p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 0.9rem;
  margin: 0;
}

/* Profile Menu Options */
.profile-menu {
  margin-bottom: 40px;
}
.menu-item-has-children >a{
  color:#df2a00 !important;
}

.menu-option {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  margin-bottom: 15px;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--bg-color);
  font-weight: 600;
  font-size: 16px;
}

.menu-option:hover {
  background-color: rgba(0, 0, 0, 0.2);
  transform: translateX(-5px);
  /* color: var(--bg-color); */
  text-decoration: none;
}

.menu-option i {
  font-size: 20px;
  width: 25px;
  text-align: center;
}

/* Animation Classes */
.sidemenu-item {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.3s ease;
}

.sidemenu-wrapper.show .sidemenu-item {
  opacity: 1;
  transform: translateX(0);
}

.sidemenu-wrapper.show .sidemenu-item:nth-child(1) {
  transition-delay: 0.1s;
}
.sidemenu-wrapper.show .sidemenu-item:nth-child(2) {
  transition-delay: 0.2s;
}
.sidemenu-wrapper.show .sidemenu-item:nth-child(3) {
  transition-delay: 0.3s;
}
.sidemenu-wrapper.show .sidemenu-item:nth-child(4) {
  transition-delay: 0.4s;
}
.sidemenu-wrapper.show .sidemenu-item:nth-child(5) {
  transition-delay: 0.5s;
}
.sidemenu-wrapper.show .sidemenu-item:nth-child(6) {
  transition-delay: 0.6s;
}


.game-card__stats-row {
  display: flex;
  justify-content: space-between; 
  gap: 20px; 
  flex-wrap: wrap; 
}

.game-card__stats-row p {
  margin: 0;
  font-size: 14px;
  color: black;    
}


.slot-text {
  color: rgb(255, 255, 255) !important;
}




/* CS2 Setup Modal Styles  */
.cs2-setup-modal {
  display: none;
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.cs2-setup-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cs2-setup-content {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 15px;
  padding: 40px;
  max-width: 600px;
  width: 90%;
  border: 2px solid #DF2A00;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  position: relative;
  animation: slideIn 0.3s ease;
  margin-bottom: 4000px;
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cs2-setup-close {
  position: absolute;
  right: 15px;
  top: 15px;
  background: none;
  border: none;
  color: #DF2A00;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s;
}

.cs2-setup-close:hover {
  color: #fff;
  transform: rotate(90deg);
}

.cs2-setup-header {
  text-align: center;
  margin-bottom: 30px;
}

.cs2-setup-title {
  color: #DF2A00;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.cs2-setup-title i {
  font-size: 2.5rem;
  color: #DF2A00;
}

.cs2-setup-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  line-height: 1.6;
}

.cs2-setup-steps {
  margin-bottom: 30px;
}

.setup-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 15px;
  background: rgba(166, 215, 25, 0.1);
  border-radius: 10px;
  border-left: 4px solid #DF2A00;
  transition: all 0.3s ease;
}

.setup-step:hover {
  background: rgba(166, 215, 25, 0.15);
  transform: translateX(5px);
}

.setup-step-number {
  background: #DF2A00;
  color: #1a1a2e;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.setup-step-content {
  flex: 1;
}

.setup-step-title {
  color: #DF2A00;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.setup-step-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.5;
}

.cs2-play-now-btn {
  width: 100%;
  background: linear-gradient(135deg, #DF2A00 0%, #8bc34a 100%);
  color: #1a1a2e;
  border: none;
  padding: 18px 30px;
  border-radius: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.cs2-play-now-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.cs2-play-now-btn:hover:before {
  left: 100%;
}

.cs2-play-now-btn:hover {
  background: linear-gradient(135deg, #8bc34a 0%, #DF2A00 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(166, 215, 25, 0.4);
}

.cs2-play-now-btn:active {
  transform: translateY(-1px);
}

.cs2-play-now-btn i {
  font-size: 1.3rem;
}

.cs2-requirements {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cs2-requirements h4 {
  color: #DF2A00;
  font-size: 1.1rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cs2-requirements ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cs2-requirements li {
  color: rgba(255, 255, 255, 0.8);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cs2-requirements li:before {
  content: "✓";
  color: #DF2A00;
  font-weight: bold;
  font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .cs2-setup-content {
    padding: 25px;
    margin: 20px;
  }

  .cs2-setup-title {
    font-size: 1.6rem;
  }

  .cs2-setup-title i {
    font-size: 2rem;
  }

  .setup-step {
    padding: 15px;
    gap: 15px;
  }

  .setup-step-number {
    width: 25px;
    height: 25px;
    font-size: 0.9rem;
  }

  .cs2-play-now-btn {
    padding: 15px 25px;
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .setup-step {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .setup-step-number {
    align-self: center;
  }
}




.vs-btn.vs-btn--style2 {
 
  display: inline-block;
  color: #fff;
 
  border: none;
  border-radius: 8px;
  background: linear-gradient(270deg, #DA2A00 60%, #FFA700  110%);
  box-shadow: 0 0 10px #DF2A00, 0 0 20px #DF2A00;
  animation: glowPulse 1.5s infinite ease-in-out;
}

@keyframes glowPulse {
  0% {
    box-shadow: 0 0 10px #DF2A00, 0 0 20px #DF2A00;
  }
  50% {
    box-shadow: 0 0 20px #DF2A00, 0 0 30px #DF2A00;
  }
  100% {
    box-shadow: 0 0 10px #DF2A00, 0 0 20px #DF2A00;
  }
}



 .esports-hero-section {
  position: relative;
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center; /* Center text inside */
  padding: 20px;
  box-sizing: border-box;
  overflow: hidden;
padding-top: 100px;
}

.esports-hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Add your gradient styling here */
  
  z-index: 1;
}

.esports-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  width: 100%;
}

.esports-hero-news-title {
  margin-top: 40px;
}


.main-menu > ul > li > a {
    padding: 0px 0 !important;
    color: #df2a00;
}

.main-menu > ul > li {
    margin: 0 0px !important;
}

.main-menu ul {
    margin: 0;
    padding: 0;
    /* margin-left: -160px; */
    margin-right: 190px;
}

        :root {
            --primary-bg: #181a20;
            --card-bg: #23262f;
            --accent: #ffa700;
            --text-main: #fff;
            --text-muted: #aaa;
            --card-radius: 18px;
            --card-shadow: 0 6px 24px 0 rgba(0,0,0,0.22);
        }
        body {
            background: black;
            color: var(--text-main);
            font-family: 'Poppins', Arial, sans-serif;
            margin: 0;
            min-height: 100vh;
        }
        header {
            /* background: #101115; */
            padding: 1.5rem 0 1rem 0;
            text-align: center;
            box-shadow: 0 4px 16px 0 rgba(0,0,0,0.12);
        }
        .site-title {
            font-family: 'Unbounded', cursive;
            font-size: 2.4rem;
            color: var(--accent);
            letter-spacing: 1px;
            margin: 0 0 0.2em 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5em;
        }
        nav {
            text-align: center;
            margin-bottom: 1.5em;
        }
        nav a {
            color: #ffa700;
            text-decoration: none;
            margin: 0 1.2em;
            font-weight: 600;
            transition: color 0.2s;
            font-size: 1.08em;
        }
        nav a.active, nav a:hover {
            color: #ffa700;
        }
        .news-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2em 1em 3em 1em;
        }
        .news-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2em;
        }
        .news-card {
            background: #141414;
            border-radius: var(--card-radius);
            box-shadow: var(--card-shadow);
            overflow: hidden;
            display: flex;
            flex-direction: row;
            transition: transform 0.18s, box-shadow 0.18s;
           
            min-height: 180px;
        }
        .news-link {
            display: flex;
            flex: 1;
            text-decoration: none;
            color: inherit;
        }
        .news-link:hover .news-title,
        .news-link:hover .news-meta,
        .news-link:hover .news-summary {
            color: var(--accent);
        }
        .news-link:hover {
            cursor: pointer;
        }
        .news-card:hover {
            transform: translateY(-8px) scale(1.025);
            box-shadow: 0 12px 32px 0 rgba(255,167,0,0.13), var(--card-shadow);
            border-color: var(--accent);
        }
        .news-img {
            width: 260px;
            min-width: 200px;
            
          
            object-fit: cover;
            background: #222;
            border-top-left-radius: var(--card-radius);
            border-bottom-left-radius: var(--card-radius);
            border-top-right-radius: 0;
            border-bottom-right-radius: 0;
            display: block;
        }
        .news-content {
            padding: 1.2em 1.3em 1.1em 1.3em;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .news-title {
            font-family: 'Unbounded', cursive;
            font-size: 1.25rem;
            color: #df2a00;
            margin: 0 0 0.2em 0;
            line-height: 1.2;
        }
        .news-meta {
            font-size: 0.98em;
            color: var(--text-muted);
            margin-bottom: 0.7em;
            display: flex;
            align-items: center;
            gap: 0.7em;
        }
        .news-summary {
            color: var(--text-main);
            font-size: 1.05em;
            margin-bottom: 0.2em;
            flex: 1;
        }
        .news-readmore {
            color: #df2a00;
            text-decoration: none;
            font-weight: 600;
            font-size: 1em;
            margin-top: 0.7em;
            align-self: flex-start;
            transition: color 0.18s;
        }
        .news-readmore:hover {
            color: #fff;
            text-decoration: underline;
        }
        @media (max-width: 900px) {
            .news-grid {
                grid-template-columns: 1fr;
            }
            .news-card {
                flex-direction: column;
                min-height: unset;
            }
            .news-img {
                width: 100%;
                min-width: 0;
                height: 160px;
                max-height: 300px;
                border-top-left-radius: var(--card-radius);
                border-top-right-radius: var(--card-radius);
                border-bottom-left-radius: 0;
                border-bottom-right-radius: 0;
            }
            .news-content {
                padding: 0.9em 0.8em 0.7em 0.8em;
            }
        }
        @media (max-width: 700px) {
            .site-title { font-size: 1.5rem; }
        }


        /* images */
        .slider-bottom-images {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 400px;
}

.slider-bottom-image {
  width: 100px; /* Adjust as needed */
  height: 100px; /* Adjust as needed */
}
.slider-bottom-images {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  gap: 90px;
}

.slider-bottom-image {
   width: 300px; /* Adjust as needed */
  height: 400px; /* Adjust as needed */
}
 /* images */


 /* Friends List Section */
.friends-list-section {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-left: 30px;
}

.friends-title {
  color: var(--bg-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  padding-left: 20px;
}

.friends-container {
  max-height: 100%;
  overflow-y: auto;
}

.friend-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  margin-bottom: 8px;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.friend-item:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.friend-avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  object-fit: cover;
}

.friend-info {
  flex: 1;
}

.friend-name {
  color: var(--bg-color);
  font-weight: 500;
  font-size: 0.9rem;
  margin: 0;
}

.friend-status {
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.75rem;
  margin: 0;
}

.friend-status.online {
  color: #4CAF50;
}

/* Find Friend Modal */
.find-friend-modal {
  display: none;
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.find-friend-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.find-friend-content {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 15px;
  padding: 30px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  border: 2px solid #DF2A00;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  position: relative;
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.find-friend-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.find-friend-header h2 {
  color: #DF2A00;
  font-size: 1.8rem;
  margin: 0;
}

.find-friend-close {
  background: none;
  border: none;
  color: #DF2A00;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.3s;
  line-height: 1;
}

.find-friend-close:hover {
  color: #fff;
  transform: rotate(90deg);
}

.find-friend-search {
  position: relative;
  margin-bottom: 25px;
}

.find-friend-search input {
  width: 100%;
  padding: 15px 45px 15px 20px;
  border: 2px solid rgba(223, 42, 0, 0.3);
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 16px;
  transition: all 0.3s;
}

.find-friend-search input:focus {
  outline: none;
  border-color: #DF2A00;
  background-color: rgba(255, 255, 255, 0.15);
}

.find-friend-search input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.search-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #DF2A00;
  font-size: 18px;
}

.find-friend-results {
  max-height: 400px;
  overflow-y: auto;
}

.search-result-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  margin-bottom: 10px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.search-result-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.search-result-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.search-result-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #DF2A00;
}

.search-result-details h4 {
  color: #fff;
  margin: 0 0 5px 0;
  font-size: 1rem;
}

.search-result-details p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-size: 0.85rem;
}

.add-friend-btn {
  padding: 8px 20px;
  background-color: #DF2A00;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.add-friend-btn:hover {
  background-color: #ff3a00;
  transform: translateY(-2px);
}

.add-friend-btn.added {
  background-color: #4CAF50;
  cursor: default;
}

.add-friend-btn.added:hover {
  transform: none;
}

.no-results {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  padding: 40px 20px;
}

/* Scrollbar for results */
.find-friend-results::-webkit-scrollbar,
.friends-container::-webkit-scrollbar {
  width: 5px;
}

.find-friend-results::-webkit-scrollbar-track,
.friends-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
}

.find-friend-results::-webkit-scrollbar-thumb,
.friends-container::-webkit-scrollbar-thumb {
  background: #DF2A00;
  border-radius: 5px;
}

.find-friend-results::-webkit-scrollbar-thumb:hover,
.friends-container::-webkit-scrollbar-thumb:hover {
  background: #ff3a00;
}

/* Update sidemenu scrolling */
.sidemenu-content {
  --sidebarPosition: 400px;
  background-color: var(--vs-theme-color);
  width: var(--sidebarPosition);
  margin-left: auto;
  padding: 40px 30px 30px 30px;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  right: calc(-1 * var(--sidebarPosition));
  cursor: auto;
  transform-origin: right;
  transition: right 0.3s ease;
  
  /* Hide scrollbar but keep functionality */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.sidemenu-content::-webkit-scrollbar {
  display: none;
}

/* Update find friend modal scrolling */
.find-friend-content {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 15px;
  padding: 30px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  overflow-x: hidden;
  border: 2px solid #DF2A00;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  position: relative;
  animation: modalSlideIn 0.3s ease;
  
  /* Hide scrollbar but keep functionality */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.find-friend-content::-webkit-scrollbar {
  display: none;
}

/* Update find friend results scrolling */
.find-friend-results {
  max-height: 400px;
  overflow-y: auto;
  overflow-x: hidden;
  
  /* Hide scrollbar but keep functionality */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.find-friend-results::-webkit-scrollbar {
  display: none;
}

/* Update friends container scrolling */
.friends-container {
  max-height: 200px;
  overflow-y: auto;
  overflow-x: hidden;
  
  /* Hide scrollbar but keep functionality */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.friends-container::-webkit-scrollbar {
  display: none;
}

/* Update friend item styling for invite button */
.friend-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 15px;
  margin-bottom: 8px;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.friend-item:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.friend-avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.friend-info {
  flex: 1;
  min-width: 0; /* Allow text truncation */
}

.friend-name {
  color: var(--bg-color);
  font-weight: 500;
  font-size: 0.9rem;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.friend-status {
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.75rem;
  margin: 0;
}

.friend-status.online {
  color: #4CAF50;
}

/* Invite button styling */
.invite-btn {
  padding: 5px 12px;
  background-color: #DF2A00;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.invite-btn:hover {
  background-color: #ff3a00;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(223, 42, 0, 0.3);
}

.invite-btn:active {
  transform: translateY(0);
}

.invite-btn.invited {
  background-color: #4CAF50;
  cursor: default;
}

.invite-btn.invited:hover {
  transform: none;
  box-shadow: none;
}

/* Add smooth scroll behavior */
.sidemenu-content,
.find-friend-content,
.find-friend-results,
.friends-container {
  scroll-behavior: smooth;
}

/* Optional: Add visual indicator for scrollable areas */
.scroll-indicator {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
  pointer-events: none;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-5px); }
}

/* Main Sidemenu Styles */
.sidemenu-wrapper {
  position: fixed;
  z-index: 999999;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  isolation: isolate;
}

.sidemenu-wrapper.show {
  visibility: visible;
  opacity: 1;
}

.sidemenu-content {
  --sidebarPosition: 400px;
  background-color: var(--vs-theme-color);
  width: var(--sidebarPosition);
  margin-left: auto;
  padding: 40px 30px 30px 30px;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  right: calc(-1 * var(--sidebarPosition));
  cursor: auto;
  transform-origin: right;
  transition: right 0.3s ease;
  
  /* Hide scrollbar but keep functionality */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  overscroll-behavior: contain;
  touch-action: pan-y;
  scroll-behavior: smooth;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.sidemenu-content::-webkit-scrollbar {
  display: none;
}

.sidemenu-wrapper.show .sidemenu-content {
  right: 0;
}

@media (max-width: 768px) {
  .sidemenu-content {
    --sidebarPosition: 300px;
    padding: 20px 15px;
  }
}

.sidemenu-logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.closeButton {
  display: inline-block;
  border: none;
  color: var(--bg-color);
  background-color: transparent;
  font-size: 40px;
  padding: 0;
  border-radius: 50%;
  transform: rotate(0);
  transition: all ease 0.4s;
  font-family: var(--title-font);
  font-weight: 700;
  cursor: pointer;
}

.closeButton:hover {
  color: var(--white-color);
  transform: rotate(180deg);
}

.sidemenu-hr {
  height: 4px;
  border-top: 1px solid var(--bg-color);
  border-bottom: 1px solid var(--bg-color);
  opacity: 1;
  margin: 30px 0 35px;
}

.sidemenu-inner {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 150px);
  justify-content: space-between;
}

/* Authentication Section in Sidemenu */
.auth-section {
  margin-bottom: 30px;
}

.auth-form-side {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 20px;
}

.auth-title {
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

.side-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group-side {
  display: flex;
  flex-direction: column;
}

.form-group-side label {
  color: white;
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 0.9rem;
}

.form-group-side input {
  padding: 12px 15px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--bg-color);
  font-size: 14px;
  transition: all 0.3s;
}

.form-group-side input:focus {
  outline: none;
  border-color: var(--bg-color);
  background-color: white;
}

.form-group-side input::placeholder {
  color: #666;
}

.auth-btn-side {
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.auth-btn-side.primary {
  background-color: #FFA700;
  color: var(--vs-theme-color);
}

.auth-btn-side.primary:hover {
  background-color: #333;
  transform: translateY(-2px);
}

.auth-btn-side.logout {
  background-color: #df2a00;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.auth-btn-side.logout:hover {
  background-color: #ffa700;
  transform: translateY(-2px);
}

.auth-switch {
  text-align: center;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.auth-switch p {
  color: white;
  font-size: 0.9rem;
  margin: 0;
}

.auth-switch a {
  color: #FFA700;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid var(--bg-color);
}

.auth-switch a:hover {
  color: var(--white-color);
  border-bottom-color: var(--white-color);
}

/* Logged In State */
.logged-in-state {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
}

.user-profile {
  margin-bottom: 20px;
}

.user-avatar {
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
}

.user-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--bg-color);
  object-fit: cover;
}

.user-details h4 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.user-details p {
  color: white;
  font-size: 0.9rem;
  margin: 0;
}

/* Profile Menu Options */
.profile-menu {
  margin-bottom: 40px;
}

.menu-option {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  margin-bottom: 15px;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 16px;
}

.menu-option:hover {
  background-color: rgba(0, 0, 0, 0.2);
  transform: translateX(-5px);
  /* color: var(--bg-color); */
  text-decoration: none;
}

.menu-option i {
  font-size: 20px;
  width: 25px;
  text-align: center;
}

/* Friends List Section */
.friends-list-section {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.friends-title {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  padding-left: 20px;
}

.friends-container {
  max-height: 200px;
  overflow-y: auto;
  overflow-x: hidden;
  
  /* Hide scrollbar but keep functionality */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  overscroll-behavior: contain;
  touch-action: pan-y;
  scroll-behavior: smooth;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.friends-container::-webkit-scrollbar {
  display: none;
}

.friend-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 15px;
  margin-bottom: 8px;
  background-color: #141414;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.friend-item:hover {
  background-color:#DA2A00;
}

.friend-avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.friend-info {
  flex: 1;
  min-width: 0; /* Allow text truncation */
}

.friend-name {
  color: white;
  font-weight: 500;
  font-size: 0.9rem;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.friend-status {
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.75rem;
  margin: 0;
}

.friend-status.online {
  color: #ffa700;
}

/* Invite button styling */
.invite-btn {
  padding: 5px 12px;
  background-color: #DF2A00;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.invite-btn:hover {
  background-color: #FFA700;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(223, 42, 0, 0.3);
}

.invite-btn:active {
  transform: translateY(0);
}

.invite-btn.invited {
  background-color: #4CAF50;
  cursor: default;
}

.invite-btn.invited:hover {
  transform: none;
  box-shadow: none;
}

/* Animation Classes */
.sidemenu-item {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.3s ease;
}

.sidemenu-wrapper.show .sidemenu-item {
  opacity: 1;
  transform: translateX(0);
}

.sidemenu-wrapper.show .sidemenu-item:nth-child(1) {
  transition-delay: 0.1s;
}

.sidemenu-wrapper.show .sidemenu-item:nth-child(2) {
  transition-delay: 0.2s;
}

.sidemenu-wrapper.show .sidemenu-item:nth-child(3) {
  transition-delay: 0.3s;
}

.sidemenu-wrapper.show .sidemenu-item:nth-child(4) {
  transition-delay: 0.4s;
}

.sidemenu-wrapper.show .sidemenu-item:nth-child(5) {
  transition-delay: 0.5s;
}

.sidemenu-wrapper.show .sidemenu-item:nth-child(6) {
  transition-delay: 0.6s;
}

/* Find Friend Modal */
.find-friend-modal {
  display: none;
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  isolation: isolate;
}

.find-friend-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.find-friend-content {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 15px;
  padding: 30px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  overflow-x: hidden;
  border: 2px solid #DF2A00;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  position: relative;
  animation: modalSlideIn 0.3s ease;
  
  /* Hide scrollbar but keep functionality */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  overscroll-behavior: contain;
  touch-action: pan-y;
  scroll-behavior: smooth;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.find-friend-content::-webkit-scrollbar {
  display: none;
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.find-friend-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.find-friend-header h2 {
  color: #DF2A00;
  font-size: 1.8rem;
  margin: 0;
}

.find-friend-close {
  background: none;
  border: none;
  color: #DF2A00;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.3s;
  line-height: 1;
}

.find-friend-close:hover {
  color: #fff;
  transform: rotate(90deg);
}

.find-friend-search {
  position: relative;
  margin-bottom: 25px;
}

.find-friend-search input {
  width: 100%;
  padding: 15px 45px 15px 20px;
  border: 2px solid rgba(223, 42, 0, 0.3);
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 16px;
  transition: all 0.3s;
}

.find-friend-search input:focus {
  outline: none;
  border-color: #DF2A00;
  background-color: rgba(255, 255, 255, 0.15);
}

.find-friend-search input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.search-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #DF2A00;
  font-size: 18px;
}

.find-friend-results {
  max-height: 400px;
  overflow-y: auto;
  overflow-x: hidden;
  
  /* Hide scrollbar but keep functionality */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  overscroll-behavior: contain;
  touch-action: pan-y;
  scroll-behavior: smooth;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.find-friend-results::-webkit-scrollbar {
  display: none;
}

.search-result-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  margin-bottom: 10px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.search-result-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.search-result-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.search-result-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #DF2A00;
}

.search-result-details h4 {
  color: #fff;
  margin: 0 0 5px 0;
  font-size: 1rem;
}

.search-result-details p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-size: 0.85rem;
}

.add-friend-btn {
  padding: 8px 20px;
  background-color: #DF2A00;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.add-friend-btn:hover {
  background-color: #ff3a00;
  transform: translateY(-2px);
}

.add-friend-btn.added {
  background-color: #4CAF50;
  cursor: default;
}

.add-friend-btn.added:hover {
  transform: none;
}

.no-results {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  padding: 40px 20px;
}

/* Add visual indicator for scrollable areas (optional) */
.scroll-indicator {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
  pointer-events: none;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-5px); }
}

/* Body scroll lock */
body.scroll-locked {
  overflow: hidden !important;
  position: fixed;
  width: 100%;
  height: 100%;
}

/* Notification styles */
.notification, .error-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 9999999;
  animation: slideIn 0.3s ease;
}

.notification {
  background-color: #4CAF50;
  color: white;
}

.error-notification {
  background-color: #f44336;
  color: white;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

  

       /* Container */
    #leaderboard-section {
      max-width: 2500px;
      /* margin: 2rem auto; */
      padding: 0 1rem 4rem;
    }

    /* Header Section */
    #leaderboard-header {
      margin-bottom: 1rem;
    }
    #leaderboard-title {
      font-weight: 700;
      font-size: 1.7rem;
      color: #eee;
      margin-bottom: 0.15rem;
    }
    #leaderboard-update {
      font-size: 0.85rem;
      color: #999;
    }

    /* Table container */
    #leaderboard-table-wrapper {
      background-color: #1f1f1f;
      border-radius: 8px;
      overflow-x: auto;
      box-shadow: 0 0 8px rgb(255 255 255 / 0.05);
      border: 1px solid #2b2b2b;
    }

    table#leaderboard-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.94rem;
      min-width: 700px;
      user-select: none;
    }

    /* Header row */
    #leaderboard-table thead tr {
      border-bottom: 1px solid #3a3a3a;
    }
    #leaderboard-table thead th {
      padding: 0.75rem 1rem;
      text-align: left;
      font-weight: 600;
      font-size: 0.9rem;
      color: #bbb;
      letter-spacing: 0.015em;
      white-space: nowrap;
    }
    #leaderboard-table thead th:nth-child(1) {
      width: 40px; /* Rank */
    }
    #leaderboard-table thead th:nth-child(2) {
      width: 220px; /* Name */
    }
    #leaderboard-table thead th:nth-child(n+3) {
      text-align: center;
      width: 80px;
    }

    /* Body rows */
    #leaderboard-table tbody tr {
      border-bottom: 1px solid #2a2a2a;
      transition: background-color 0.15s ease-in-out;
      cursor: default;
    }
    #leaderboard-table tbody tr:hover {
      background-color: #2e2e2e;
    }

    #leaderboard-table tbody td {
      padding: 0.7rem 1rem;
      vertical-align: middle;
      color: #ddd;
    }
    #leaderboard-table tbody td:nth-child(1) {
      text-align: center;
      font-weight: 700;
      color: #ffa726;
      user-select: text;
    }
    #leaderboard-table tbody td:nth-child(2) {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      white-space: nowrap;
      font-weight: 600;
      color: #eee;
    }

    /* Player icon circle */
    .player-icon {
      background-color: #444;
      color: #bbb;
      border-radius: 50%;
      font-size: 0.85rem;
      width: 28px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      user-select: none;
      flex-shrink: 0;
    }

    /* Numeric columns center */
    #leaderboard-table tbody td:nth-child(n+3) {
      text-align: center;
      font-feature-settings: "tnum";
      font-variant-numeric: tabular-nums;
    }

    /* KDA column: style as decimal */
    .kda-value {
      font-weight: 700;
      color: #ffa726;
    }

    /* Loading & error messages */
    #loading-message,
    #error-message {
      text-align: center;
      padding: 2rem 1rem;
      font-size: 1.1rem;
      color: #ccc;
      background: #222;
      border-radius: 6px;
      margin-top: 1.5rem;
    }
    

  
  .announcement-bar {
    background-color: #191919;
    max-width: 920px;
    width: 90%;
    margin-bottom: 2.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #eee;
    font-size: 0.85rem;
    padding: 10px 15px;
    user-select: none;
    box-sizing: border-box;
  }
  .announcement-bar img {
    height: 30px;
    width: auto;
    object-fit: contain;
  }
  .live-dot {
    background-color: #e50914;
    border-radius: 10px;
    padding: 2px 8px;
    color: white;
    font-weight: 700;
    font-size: 0.75rem;
    user-select: none;
  }
  .date-text {
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .date-text svg {
    fill: #eee;
    width: 14px;
    height: 14px;
  }
 .main-video-carousel1 {
  position: relative;
  width: 100%;
  max-width: 1700px;           /* Increased max width */
  height: 520px;               /* Increased height */
  display: flex;
  justify-content: center;
  align-items: center;         /* Center vertically */
  gap: 30px;                   /* More gap between cards */
  margin: 0 auto;              /* Center horizontally */
  overflow: visible;
  user-select: none;
  background-color: #000000;
}

.main-video-carousel1 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;  /* Space between cards */
  padding: 20px 0;
  overflow: visible;
}

.video-card {
  position: relative;
  height: 500px;               /* Height of cards */
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.5s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  margin: 0 -50px;  /* Overlap cards slightly */
  transform: scale(0.9);
  opacity: 0.8;
}

.video-card.selected {
  height: 550px;               /* Slightly taller when selected */
  z-index: 20;
  margin: 0;
  transform: scale(1);
  opacity: 1;
  border: 1px solid #333;
  border-radius: 24px;
}

/* Video controls */
.video-controls {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-card:hover .video-controls {
  opacity: 1;
}

.control-btn {
  background: rgba(0, 0, 0, 0.7);
  border: none;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.2s ease;
}

.control-btn:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: black;
  border-radius: 24px;
}
  .video-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,0.9) 20%, rgba(0,0,0,0) 100%);
    color: #eee;
    padding: 12px 14px 14px;
    font-size: 0.85rem;
    box-sizing: border-box;
    height: 106px;
    border-radius: 0 0 15px 15px;
    font-weight: 400;
    user-select: none;
  }
  .live-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-weight: 700;
  }
  .live-dot-small {
    background-color: #e50914;
    border-radius: 50%;
    width: 10px;
    height: 10px;
  }
  .viewers-count {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    color: #eee;
    font-size: 0.9rem;
  }
  .viewers-count svg {
    width: 14px;
    height: 14px;
    fill: #eee;
  }
  .team-list {
    margin-top: 4px;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .team-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
  }
  .team-icon {
    height: 18px;
    width: 18px;
    aspect-ratio: 1/1;
    background-color: #fff;
    border-radius: 50%;
    flex-shrink: 0;
  }
  .event-info {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: #fdbf49;
  }
  .event-info svg {
    width: 16px;
    height: 16px;
  }
  .controls {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: row;
    gap: 10px;
  }
  .control-button {
    background-color: rgba(0,0,0,0.6);
    border: none;
    padding: 6px;
    border-radius: 50%;
    cursor: pointer;
    width: 28px;
    height: 28px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .control-button:hover {
    background-color: rgba(255, 255, 255, 0.3);
  }
  /* Arrows for navigation */
  .nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #ccc;
    font-size: 35px;
    cursor: pointer;
    user-select: none;
    z-index: 30;
    transition: color 0.3s;
  }
  .nav-arrow:hover {
    color: #ffcc00;
  }
  .nav-left {
    left: 10px;
  }
  .nav-right {
    right: 10px;
  }

  /* Fullscreen styles */
  #fullScreenOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(0,0,0,0.98);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
#fullScreenOverlay video {
  max-width: 98vw !important;
  max-height: 98vh !important;
  width: auto !important;
  height: auto !important;
  border-radius: 18px;
  background: #000;
  box-shadow: 0 0 40px #000;
}
#fullScreenCloseBtn {
  position: fixed;
  top: 24px;
  right: 36px;
  font-size: 44px;
  cursor: pointer;
  color: #fff;
  background: rgba(0,0,0,0.7);
  border-radius: 50%;
  width: 54px;
  height: 54px;
  line-height: 54px;
  text-align: center;
  z-index: 10000;
  user-select: none;
  border: 2px solid #ffa700;
  transition: background 0.2s;
}
#fullScreenCloseBtn:hover {
  background: #ffa700;
  color: #000;
}
