/* === Popular Today Section === */
.popular-today-container {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(16px);
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    margin-top: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }

  .section-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #fff;
  }

  /* === Popular Today Scroll Area === */
  .popular-today-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 8px;

    scroll-snap-type: none;
    scroll-behavior: smooth;
    user-select: none;
    cursor: grab;

    transition: all 0.2s ease;
  }

  .popular-today-scroll.dragging {
    cursor: grabbing;
    scroll-behavior: auto !important;
  }

  .popular-today-scroll::-webkit-scrollbar {
    height: 2px;
  }

  .popular-today-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
  }

  .popular-today-scroll::-webkit-scrollbar-track {
    background: transparent;
  }

  .today-card-link {
    display: block;
    flex: 0 0 auto;
    text-decoration: none;
    color: inherit;
  }


  /* === Today Card === */
  .today-card {
    flex: 0 0 auto;
    width: 140px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 7px;
    overflow: hidden;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    scroll-snap-align: none;
    transition: transform 0.3s ease;
  }

  .today-card, .today-card * {
    user-select: none;
    -webkit-user-drag: none;
  }

  /* === Cover Image === */
  .today-card .cover img {
    padding: 5px;
    border-radius: 7px;
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: top;
    display: block;
    border-radius: 10px 10px 0 0;

    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
  }

  /* === Card Info === */
  .today-card .info {
    padding: 8px 10px;
    color: #ccc;
  }

  .today-card .title {
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #fff;
  }

  .today-card .chapter {
    font-size: 12px;
    margin: 4px 0;
    color: #aaa;
  }

  /* === Star Rating === */
  .today-card .rating {
    font-size: 12px;
    color: #FFD700;
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .today-card .rating .fa-star,
  .today-card .rating .fa-star-half {
    font-size: 13px;
  }

  .today-card .rating-number {
    color: #ccc;
    font-size: 11px;
    margin-left: 2px;
  }

  @media (max-width: 996px) {

    .popular-today-container {
        padding: 10px;
        margin-top: 10px;

      }

      .popular-today-scroll::-webkit-scrollbar {
        height: 0px;
      }

.today-card .cover img {
   
    height: 220px;
   
  }





  }
