

html {
      scroll-behavior: smooth; /* Enables smooth scrolling */
    }

.body{
    font-family: Arial, Helvetica, sans-serif;
    background-color: white;
}
/* Image Section Styles */
.image-section {
    padding: 20px;
    background-color: ; /* Add a background color */
    color: #fff;
    text-align: center;
}

.image-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #44C6A5;
}

.image-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.image-item {
    flex: 1;
    background-color: ; /* Dark background for image card */
    border-radius: ;
    border: ;
    min-width: 140px;  /* Set a minimum size for each image card */
    max-width: 280px;  /* Fixed size for the image card */
    padding: 15px;
    border-radius: 10px;
    transition: transform 0.3s ease;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    text-align: center;
    height: 240px;  /* Fixed height for the image card */
}

.image-item:hover {
    transform: scale(1.05);
}

/* Image Card */
.image-card {
    height: 150px;  /* Set height to match the video card */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: ; /* Dark background for image card */
    border-radius: ;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 2px 4px;
    transition: transform 0.2s ease;
}

.image-card:hover {
    transform: scale(1.02);
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;  /* Ensure the image covers the card without distortion */
    border-radius: ;
}

/* Image Title */
.image-title {
    margin-top: 10px;
    font-size: 1rem;  /* Slightly smaller font size */
    font-weight: bold;
    color: #fff;
    text-align: center;
     font-family: "Poppins", serif;
}

.image-title a {
    text-decoration: none;
    color: ; /* Use a consistent color */
    font-weight: bold;
    transition: color 0.3s ease;
     font-family: "Poppins", serif;
}

.image-title a:hover {
    color: #fff;  /* Hover effect on the title */
}


.image-title a:hover {
    color: #fff;
}

/* View More Button */
.view-more-button {
    margin-top: 30px;
}

.btn-view-more {
    background-color: #353935 ;
    padding: 6px 8px;
    color: #fff;
    text-decoration: none;
    font-size: 10px;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

.btn-view-more:hover {
    background-color: #333;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .image-item {
        max-width: 30%;  /* Adjust for medium screens */
    }
}

@media (max-width: 900px) {
    .image-item {
        max-width: 45%;  /* Adjust for smaller screens */
    }
}

@media (max-width: 600px) {
    .image-item {
        max-width: 90%;  /* Adjust for mobile devices */
    }

    .image-section h2 {
        font-size: 1.5rem;
    }

    .btn-view-more {
        font-size: 1rem;
    }
}
.title-font{

  font-family:Arial, Helvetica, sans-serif ;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 34px;
}
.marq{
    font-family: "Coiny", serif;
  font-weight: 400;
  font-style: normal;
  border: solid #E44D2E;
  border-bottom-left-radius: 12px;
}
#stickyBox {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 100;
    background-color: #353935;
    color: #fff;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 14px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    max-width: 250px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease-in-out;
    pointer-events: none;
}
#stickyBox.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}



  
    .popup {
      position: fixed;
      bottom: -200px; /* Hidden initially */
      left: 0;
      height: container-b1e6ec557fe6a54cc7dd175f6ad9675cpx;
      width: 100%;
      background: #353935;
      border-bottom: 4px solid #000;
      box-shadow: 0 -3px 10px rgba(0,0,0,0.2);
      padding: 15px 20px;
      transition: bottom 0.4s ease;
      z-index: 999;
      font-size: 16px;
    }
    .popup.active {
      bottom: 0;
    }
    .popup-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1000px;
      margin: auto;
    }
    .popup-text {
      flex: 1;
      color: #000;
      font-size: 23px;
      font-weight: bold;
    }
    .popup-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }
   .click-btn {
  display: inline-block;
  padding: 10px 25px;
  background-color: #000; /* Yellow background */
  color: #E50914; /* Black text */
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  border: none;
  border-radius: 0; /* No round corners */
  text-transform: uppercase;
  transition: background 0.3s ease;
 
}
.click-btn:hover {
 /* Slightly darker yellow on hover */
}

    .close-icon {
      font-size: 29px;
      font-weight: bold;
      background: ;
      color: black;
      border: none;
      border-radius: %;
      width: 35px;
      height: 35px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    @media(max-width: 600px){
      .popup-content {
        flex-direction: column;
        text-align: center;
      }
      .popup-actions {
        margin-top: 10px;
      }
    }

.share-sidebar {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #353935;
  padding: 10px 5px;
  border-radius: 0 8px 8px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.share-sidebar a {
  color: white;
  text-align: center;
  font-size: 20px;
  transition: transform 0.2s, background 0.2s;
}

.share-sidebar a:hover {
  transform: scale(1.2);
  color: #E50914;
}

/* Optional: Hide on small screens */

@media (max-width: 768px) {
  .share-sidebar {
    flex-direction: row;
    bottom: 0;
    top: auto;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 8px 8px 0 0;
    background: #353935;
    padding: 10px;
  }
}

#sharePopup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-content {
  background:#353935;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  max-width: 350px;
  width: 90%;
  animation: popupFade 0.5s ease;
}

.popup-content h2 {
  color: #E50914;
  margin-bottom: 15px;
}

.popup-content p {
  margin-bottom: 20px;
  font-size: 16px;
  color:;
}

.popup-buttons button {
  margin: 5px;
  padding: 10px 20px;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.popup-buttons button:first-child {
  background-color: #E50914;
  color: white;
}

.popup-buttons button:last-child {
  background-color: #ccc;
  color: #000;
}

@keyframes popupFade {
  from {opacity: 0; transform: scale(0.8);}
  to {opacity: 1; transform: scale(1);}
}







.slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 10px;
  background: #000;
  box-sizing: border-box;
}

.slider-container {
  overflow-x: scroll;
  scroll-behavior: smooth;
}

.slider-track {
  display: flex;
  gap: 10px;
  width: max-content;
}

.slide {
  flex: 0 0 auto;
  width: 120px;
  background: #111;
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  font-size: 0.75rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
  transition: transform 0.3s;
}

.slide:hover {
  transform: scale(1.05);
}

.slide img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  display: block;
}

.slide-info {
  padding: 5px 8px;
}

/* Slider buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 8px 12px;
  z-index: 10;
  transition: background 0.3s;
}
.slider-btn:hover {
  background: rgba(255,255,255,0.3);
}
.slider-btn.left {
  left: 0;
}
.slider-btn.right {
  right: 0;
}

/* Responsive tweaks */
@media (max-width: 500px) {
  .slide {
    width: 90px;
    font-size: 0.65rem;
  }
  .slide img {
    height: 60px;
  }
}


  
  
  
  
  
  
    
    @keyframes big-shake {
      0%   { transform: scale(1) rotate(0deg); }
      10%  { transform: scale(1.6) rotate(15deg); }
      20%  { transform: scale(1.6) rotate(-15deg); }
      30%  { transform: scale(1.6) rotate(10deg); }
      40%  { transform: scale(1.6) rotate(-10deg); }
      50%  { transform: scale(1.6) rotate(5deg); }
      60%  { transform: scale(1.6) rotate(-5deg); }
      70%  { transform: scale(1.4) rotate(0deg); }
      100% { transform: scale(1) rotate(0deg); }
    }

    @keyframes typewriter {
      from { width: 0; }
      to { width: 100%; }
    }

    @keyframes blinkCaret {
      0%, 100% { border-color: transparent; }
      50% { border-color: #0088cc; }
    }

    .telegram-animate {
      display: inline-flex;
      align-items: center;
      text-decoration: none;
      font-weight: bold;
      font-size: 17px;
    }

    .telegram-icon {
      color: #0088cc;
      font-size: 20px;
      margin-right: 6px;
      animation: big-shake 2.5s infinite;
    }

    .typewriter-text {
      overflow: hidden;
      white-space: nowrap;
      border-right: 2px solid #0088cc;
      animation: typewriter 3s steps(20) 1 normal both, blinkCaret 0.75s step-end infinite;
    }
  


  /* Base card */
  .card{
    width:300px;
    background:;
    padding-top: 12px;
    color: ;
    border-radius:16px;
    box-shadow:0 8px 20px rgba(0,0,0,.1);
    overflow:hidden;
    text-align:center;
  }
  .card img{width:100%;height:auto;}
  .card-content{padding:20px;}
  .card h3{margin:0 0 10px;font-size:1.2rem;}
  .card p{color:#555;font-size:.95rem;}
  .download-btn{
    display:inline-block;
    margin-top:15px;
    padding:10px 22px;
    background:#1e88e5;
    color:#fff;
    font-weight:600;
    border-radius:25px;
    text-decoration:none;
    transition:background .3s;
  }
  .download-btn:hover{background:#1565c0;}

  /* Mobile tweaks */
  @media (max-width:480px){
    .card{width:90%;}
    .card-content{padding:16px;}
    .card h3{font-size:1.05rem;}
    .card p{font-size:.9rem;}
    .download-btn{padding:9px 18px;font-size:.9rem;border-radius:22px;}
  }


.video-cards-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Exactly 4 cards per row */
    gap: 30px;
    margin-top: 20px;
    padding: 0 20px;
}

.video-card {
    background-color:;
    border-radius: ;
    overflow: hidden;
    border: ;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 2px 4px;
    transition: transform 0.2s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.video-card:hover {
    transform: scale(1.02);
}

.thumbnail-container {
    width: 100%;
    aspect-ratio: 16 / 9; /* Keeps thumbnails at 16:9 ratio */
    background-color: #000;
    overflow: hidden;
    position: relative;
}
.thumbnail-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #000;
    overflow: hidden;
}

.thumbnail-container::before,
.thumbnail-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 30px; /* adjust blur width */
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.thumbnail-container::before {
    left: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4), transparent);
}

.thumbnail-container::after {
    right: 0;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.4), transparent);
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Prevents cropping */
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    filter: contrast(110%) brightness(105%) saturate(120%);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.thumbnail-container:hover .video-thumbnail {
    transform: scale(1.05);
    filter: contrast(115%) brightness(110%) saturate(125%);
}

.video-details {
    padding: 10px;
    flex-grow: 1;
}

.video-details h3 {
    margin: 0;
    font-size: 25px;
    color: #fff;
    font-weight: 200px;
 
}

.video-details a {
    font-size: ;
}

.video-details a:hover {
    text-decoration: underline;
}

.video-details p {
  
}

.video-details small {
  
}

.thumbnail-container .video-thumbnail {
    transition: transform 0.5s ease, filter 0.5s ease;
    will-change: transform;
}

.thumbnail-container:hover .video-thumbnail,
.thumbnail-container:active .video-thumbnail {
    transform: scale(1.04);
    filter: contrast(115%) brightness(110%) saturate(125%);
}
@media (hover: none) {
  .thumbnail-container:hover .video-thumbnail {
    transform: none;
    filter: none;
  }

  .thumbnail-container:active .video-thumbnail {
    transform: scale(1.04);
    filter: contrast(115%) brightness(110%) saturate(125%);
  }
}
@media (max-width: 600px) {
  .video-cards-container {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    padding: 0 10px;
  }

  .thumbnail-container {
    aspect-ratio: 16 / 9; /* Keeps it proportional */
  }

  .video-thumbnail {
    object-fit: contain;
    transition: transform 0.4s ease, filter 0.4s ease;
  }

  .thumbnail-container:active .video-thumbnail {
    transform: scale(1.04); /* subtle zoom */
    filter: contrast(115%) brightness(110%) saturate(125%);
  }
}


  .thumbnail-container {
    aspect-ratio: 16 / 9;
  }

  .video-details h3 {
    font-size: 1em;
  }

  .video-details a {
    font-size: 13px;
  }
}

.thumbnail-link {
  position: relative;
  display: block;
  overflow: hidden;
}


.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 60px;
  color: ; /* Bright orange/red */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 3;
  text-shadow: ;
}

.thumbnail-link:hover .play-overlay {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.play-overlay i {
  color: #fff;
  font-size: 60px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  text-shadow: ;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    margin-top: 20px;
}

.pagination a {
    text-decoration: none;
    color: ;
    padding: 8px 15px;
    border: 1px solid #353935;
    border-radius: 4px;
    background-color: #353935;
    transition: background-color 0.3s, color 0.3s;
}

.pagination a:hover {
    background-color: #00bcd4;
    color: #ffffff;
}

.pagination .current {
    background-color: #333;
    color: #ffffff;
}





nav ul.menu {
    list-style: none;
    display: flex;
}

.menu > li a {
    padding: 10px;
    color: #ffffff;
    text-decoration: none;
}

.menu > li a:hover {
    color: #00bcd4;
}

.search-results {
    background: #1e1e1e;
    border-color: #444;
}

.search-results li a {
    color: #fff;
}

.play-overlay {
    font-size: 3em;
    color: rgba(255, 255, 255, 0.8);
}

.thumbnail-link:hover .play-overlay {
    opacity: 1;
}

.thumbnail-link:hover .video-thumbnail {
    opacity: 0.8;
}
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.pagination a, .pagination .page-number {
    text-decoration: none;
    color: white;
    padding: 8px 15px;
    border: 1px solid ;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
    font-size: 16px;
}

.pagination .page-number.active {
    background-color: transparent;
    border: none;
    color: ;
    font-weight: bold;
}

.pagination a:hover {
    background-color:#E50914 ;
    color: white;
}

/* Responsive Design */
@media (max-width: 600px) {
    .pagination {
        gap: 5px;
    }

    .pagination a, .pagination .page-number {
        padding: 6px 12px;
        font-size: 14px;
    }
}

.categories-section {
    margin-top: 30px;
    padding: 15px;
    background-color: #2d2d2d;
    border-radius: 8px;
    color: #fff;
  font-family: "Poppins", serif;
  font-weight: 300;
  font-style: normal;
}

.categories-section h2 {
    font-size: 18px;
    margin-bottom: 10px;
}

.categories-section ul {
    list-style-type: none;
    padding: 0;
    display: flex; /* Display links inline */
    flex-wrap: wrap; /* Allow wrapping if space is limited */
    gap: 15px; /* Space between items */
}

.categories-section li {
    margin-bottom: 0; /* Remove vertical margin since inline layout is used */
}

.categories-section a {
    text-decoration: none;
    color: #E50914;
}

.categories-section a:hover {
    color: ;
}



.latest-video-header{
    background-color: #353935;
    border: ;
    border-radius:5px;
    padding: 5px;
}

#scrollToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    background-color: #E50914;
    color: white;
    border: none;
    outline: none;
    padding: 10px 15px;
    border-radius: 4px; /* Square corners */
    font-size: 18px;
    cursor: pointer;
    display: none; /* Hidden by default */
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

#scrollToTopBtn:hover {
    background-color: #E50914;
}

/* Scrollbar track (background) */
::-webkit-scrollbar {
  width: 8px;       /* vertical */
  height: 8px;      /* horizontal */
}

/* Thumb (the draggable part) */
::-webkit-scrollbar-thumb {
  background-color: #E50914;  /* pink/red, like YouPorn */
  border-radius: 10px;
}

/* Track background */
::-webkit-scrollbar-track {
  background-color: #111;  /* dark background */
}

