    /* Global Styles */
    body {
      margin: 0;
      padding: 0;
      background-color: rgba(22, 21, 29, 1); 
      font-family: "Plus Jakarta Sans", sans-serif;
      color: #fff;
    }

    /* ======= Manga Info Container ======= */
    .info-container {
      max-width: 1200px;
      margin: 40px auto;
      background-color: #212121;
      border-radius: 8px;
      padding: 20px;
      display: flex;
      gap: 20px;
    }
    .cover-column {
      flex: 0 0 300px;
    }
    .cover-image {
      width: 100%;
      border-radius: 8px;
      object-fit: cover;
      display: block;
    }
    .info-column {
      display: flex;
      flex-direction: column;
      width: 90%;
    }
    .status-title-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 12px;
      margin-bottom: 8px;
    }
    .status-badge {
      background-color: #ffa21b;
      color: #16151d;
      padding: 6px 14px;
      border-radius: 46px;
      font-size: 12px;
      font-weight: 600;
      white-space: nowrap;
    }
    .series-title {
      font-size: 28px;
      font-weight: 700;
      margin: 0;
    }
    .genre-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 12px;
    }
    .genre-badge {
      background-color: rgba(255, 255, 255, 0.1);
      border-radius: 46px;
      padding: 6px 12px;
      font-size: 12px;
      white-space: nowrap;
    }
    .description {
      font-size: 14px;
      line-height: 1.6;
      margin: 0;
      max-height: 60px;
      overflow: hidden;
      transition: max-height 0.4s ease;
    }
    .description.expanded {
      max-height: 500px;
    }
    .show-more-btn {
      background: none;
      border: 1px solid #fff;
      color: #fff;
      padding: 5px 10px;
      font-size: 14px;
      cursor: pointer;
      margin-top: 6px;
      border-radius: 6px;
      transition: 0.3s;
    }
    .show-more-btn:hover {
      background-color: #333;
    }
    .bottom-row {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-top: 20px;
    }
    /* Star Rating */
    .stars {
      display: flex;
      gap: 5px;
    }
    .star {
      font-size: 24px;
      color: #5a5a5a;
      cursor: pointer;
      transition: color 0.3s;
    }
    .star.active {
      color: #ffa21b;
    }
    /* Icons (Heart & Bookmark) */
    .right-section {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 10px;
    }
    .icons-container {
      display: flex;
      gap: 10px;
    }
    .icon-btn {
      background-color: #3a2f23;
      border: none;
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      cursor: pointer;
      transition: background 0.3s;
    }
    .icon-btn svg {
      width: 24px;
      height: 24px;
      fill: #fff;
    }
    .icon-btn.active svg {
      fill: #ffa21b;
    }
    .details {
      margin-top: 4px;
      text-align: right;
    }
    .details span {
      display: block;
      font-size: 14px;
      color: #b0b0b0;
    }
    .details strong {
      color: #fff;
    }
    
    .link-icons {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        flex-flow: row wrap;
        gap: 20px;
        align-items: center;
        justify-content: center;
    }
    
    .hover-grow {
      transition: transform 0.3s;
    }
    .hover-grow:hover {
      transform: scale(1.05);
      cursor: pointer;
    }
    
    
    @media (max-width: 768px) {
      .info-container {
        flex-direction: column;
      }
      .cover-column, .info-column {
        width: 100%;
      }
      .bottom-row {
        flex-direction: column;
        align-items: flex-start;
      }
      .right-section {
        align-items: flex-start;
      }
      .details {
        text-align: left;
      }
    }

    /* ======= Ad Placeholder ======= */
    .ad-placeholder {
      height: fit-content;
      margin: 40px 0;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #aaa;
      font-size: 14px;
      font-style: italic;
    }
    
    .ad-section {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .ad-div {
        width: 80%;
        max-width: 1200px;
        margin: var(--spacing-lg) auto;
        min-height: clamp(120px, 25vw, 300px);
        background-color: transparent;
        border: 2px dashed rgba(52, 45, 39, 1);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 40px;
    }

    /* ======= Chapter Navigation Container ======= */
    .chapter-container {
      max-width: 1200px;
      margin: 20px auto;
      background-color: #212121;
      border-radius: 8px;
      padding: 20px;
    }
    .chapter-title {
      text-align: center;
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 20px;
    }
    .chapter-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-bottom: 20px;
      flex-wrap: wrap;
    }
    .chapter-button {
      flex: 1;
      background-color: #ffa21b;
      color: #16151d;
      font-size: 36px;
      font-weight: 600;
      padding: 28px 0;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: transform 0.1s ease;
    }
    .chapter-button:active {
      transform: scale(0.95);
    }
    .chapter-search {
      display: block;
      width: 80%;
      max-width: 500px;
      margin: 0 auto;
      padding: 12px;
      font-size: 16px;
      border: none;
      border-radius: 6px;
      background-color: #2f2f2f;
      color: #fff;
      outline: none;
    }
    .chapter-search::placeholder {
      color: #ccc;
    }

    /* ======= Chapters List (Brown Strips) ======= */
    .chapters-list-container {
      max-width: 1200px;
      margin: 20px auto;
      padding: 0 20px;
    }
    .chapter-item {
      display: flex;
      align-items: center;
      background-color: #3a2f23;
      border-radius: 8px;
      margin-bottom: 12px;
      padding: 12px;
      width: 100%;
    }
    .chapter-thumbnail img {
      width: 100px;
      height: auto;
      object-fit: cover;
      border-radius: 4px;
      display: block;
    }
    .chapter-info {
      flex: 1;
      margin-left: 12px;
    }
    .chapter-title-strip {
      margin: 0 0 4px;
      font-size: 16px;
      font-weight: 600;
      line-height: 1.3;
    }
    .chapter-time {
      font-size: 14px;
      color: #ccc;
    }
    .chapter-like {
      margin-left: auto;
    }
    .like-btn {
      background-color: #2b2926;
      border: none;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.3s;
    }
    .like-btn:hover {
      background-color: #2f2a26;
    }
    .like-btn svg {
      fill: #fff;
      width: 20px;
      height: 20px;
    }
    .like-btn.active svg {
      fill: #ffa21b;
    }
