
  /* ===============================
   CHAPTER LIST HANGING INDENT
================================ */
/* Description Box */


.desc-box.collapsed{
    max-height:120px;
}

.desc-box:not(.collapsed){
    max-height:2000px;
}

.desc-toggle{
    border: 1px solid #636467;
    display:inline-flex;
    align-items:center;
    gap:6px;
    margin-top:10px;
    background: none;
    border-radius: 8px;
    color:#00ff99;
    cursor:pointer;
    font-size:14px;
}



.desc-box{
 /* background: #111;
  text-align: justify;*/
  border-radius: .5rem;
  border: .1rem solid rgba(255, 255, 255, .08);
  padding: .5rem;
  color: #ddd;
  max-height:90px;          /* preview height */
  overflow:hidden;
  position:relative;
  transition:max-height .4s ease;
}

.desc-box p {
  margin: 0;
}

.desc-box::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  height:40px;
  background:linear-gradient(to bottom, rgba(11,11,11,0), #0b0b0b);
}

.desc-box.open{
  max-height:2000px;
}

.desc-box.open::after{
  display:none;
}



.desc-toggle:hover{
  text-decoration:none;
}

.desc-toggle i{
  font-size:12px;
  transition:transform .3s ease;
}












.chapter-list li a{
  font-size: 15px;
  padding:5px 1px;
  border-radius:5px;
  color:#eee;
  text-decoration:none;
  line-height:1.2;
  padding-left:100px;
  text-indent:-90px;
}













/* ===== PAGE ===== */
.page-content{
  padding:5px;
  min-height:100vh;
}
@media (min-width: 992px){
  .page-content{
    max-width: 1100px;
    margin: auto;
  }
}
 
/*
.novel-desc h2 {
    color: #fff;
    font-size: 22px;
    margin-top: 0;

    position: relative;
    padding-left: 12px;
}

.novel-desc h2::before{
    content: "";
    position: absolute;

    left: 0;
    top: 3px;

    width: 2px;
    height: 24px;

    background: #3498ff;
    border-radius: 2px;
}

*/ 


/* REQUEST MORE */

.request-more{
    margin:15px 0;
    text-align:center;
}


.request-more a{

    display:inline-flex;
    align-items:center;
    gap:8px;

    padding:12px 25px;

    border: 0.1px solid #777;

    color:#fff;

    border-radius:8px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}


.request-more a:hover{

    background:#267acc;

}



/*


.chapter-list h2 {
    color: #fff;
    margin-top: 0;
    font-size: 22px;
}
*/

.chapter-group{
    margin-bottom:5px;
}

.chapter-dropdown{

    width:100%;

    background:#1a1a1a;

    color:#fff;

    border:1px solid #333;

    padding:15px;

    border-radius:8px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    cursor:pointer;

    font-size:16px;
}

.chapter-dropdown i{
    transition:.3s;
}

.chapter-dropdown.active i{
    transform:rotate(180deg);
}

.chapter-content{
    border-radius: 8px;

    max-height:0;

    overflow:hidden;

    transition:max-height .4s ease;

    border-radius:0 0 8px 8px;
}

.chapter-content ul{
    list-style:none;
    margin:0;
    padding: 5px;
}

.chapter-content li{
    margin-bottom: 5px;
}

.chapter-content li:last-child{
    border-bottom:none;
}

.chapter-content a{
    border-radius: 8px;

    display:block;

    padding:12px 10px;

    color:#ddd;

    text-decoration:none;
}

.chapter-content a:hover{
    background:#1c1c1c;
}



/* ======================
   SIMILAR NOVELS
====================== */

.similar-novels{
    margin-top: 10px;
    padding: 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);

}

.similar-novels h2{
    margin-left: 5px;
    font-size:22px;
    margin-top:5px;

    position:relative;
    padding-left:12px;
}

.similar-novels h2::before{
    content:"";
    position:absolute;

    left:0;
    top:3px;

    width:2px;
    height:24px;

    background:#3498ff;
    border-radius:2px;

 /*   box-shadow:0 0 6px #3498ff; */
}

.similar-scroll{

    display:flex;

    gap:10px;

    overflow-x:auto;

    padding-bottom:10px;

    scrollbar-width:thin;
}

.similar-card{

    flex:0 0 150px;

    background:#1a1a1a;

    border:1px solid #333;

    border-radius:6px;

    overflow:hidden;

    text-decoration:none;

    color:#fff;
}

.similar-cover{
    position:relative;
}

.similar-cover img{

    width:100%;

    height:230px;

    object-fit:fill;

    display:block;
}

.rating-badge{

    position:absolute;

    top:1px;

    right:1px;

    background:rgba(0,0,0,.3);

    padding:4px 8px;

    border-radius:6px;

    font-size:12px;
}

.similar-info{
    padding: 5px;
}

.similar-title{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 5px;
}

.similar-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    font-size:12px;

    color:#aaa;
}

.genre-pill{

    border:1px solid #555;

    border-radius:20px;

    padding:3px 8px;
}




.show-more-card{

    flex:0 0 150px;

    border:1px solid #333;

    border-radius:12px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    cursor:pointer;

    color:#6ea8ff;

    background:#1a1a1a;
}

.show-more-card:hover{
    background:#222;
}

.show-more-icon{
    font-size:30px;
    margin-bottom:10px;
}

.show-more-text{
    text-align:center;
}



i.fa-solid.fa-list{
    margin-right: 5px;
    color: #5fe3b3;
}




.comment-header{
color: #fff;
display:flex;

justify-content:space-between;

align-items:center;

cursor:pointer;

}

.comment-header h2{

margin:0;

display:flex;

align-items:center;

gap:10px;

}

.comment-arrow{

transition:.3s;

}

.comment-section.closed .comment-arrow{

transform:rotate(-90deg);

}

#commentContent{

overflow:hidden;

max-height:0;

transition:max-height .35s ease;

}

.comment-section.open #commentContent{

max-height:5000px;

}


.login-now {
    border-radius: 10px;
    padding: 10px;
    margin: 10px;
    text-align: center;
    background: #222;
}


.login-now a {
    text-decoration: none;
    color: #00bbff;
}


.status-row{
    align-items:center;
    gap:10px;
    padding:10px;
    border:1px solid #666;
    border-radius:8px;
    margin-bottom:8px;
}

.status-badge{
    display:inline-flex;
    align-items:center;
    gap:5px;
    padding:4px 12px;
    border-radius:20px;
    font-size:14px;
    font-weight:600;
}

/* Ongoing */
.status-ongoing{
    color:#35e46d;
   /* background:#163d24;
    border:1px solid #35e46d; */
}

/* Completed */
.status-dropped{
    color:#4da3ff;
   /* background:#132d52;
    border:1px solid #4da3ff;*/
}

/* Dropped */
.status-completed{
    color:#ff5c5c;
   /* border:1px solid #ff5c5c;
    background:#4b1616; */
}

/* Hiatus */
.status-hiatus{
    background:#4b3814;
    color:#ffb84d;
    border:1px solid #ffb84d;
}


.latest-chapters{
    margin-bottom: 10px;
    background: #333;
    border:1px solid #333;
    border-radius:10px;
    padding:15px;
}


/*

.latest-chapters h2{
    color:#fff;
    font-size:22px;
    margin-top:0;
    margin-bottom:12px;

    position:relative;
    padding-left:12px;
}


.latest-chapters h2::before{
    content:"";
    position:absolute;

    left:0;
    top:3px;

    width:2px;
    height:24px;

    background:#3498ff;
    border-radius:2px;
}

*/

.latest-item{
    background: #1a1a1a;
    border-radius: .5rem;
    border: 1px solid rgba(255, 255, 255, .08);
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding: 10px 10px 5px;
    margin: 5px;
    text-decoration:none;
    color:#fff;
    transition:.2s;
}



.latest-item:hover{
    color:#4da3ff;
}

.latest-title{
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size:15px;
    
}

.latest-date{
    text-align: start;
    margin-top:4px;
    font-size:12px;
    color:#999;
}

.latest-item i{
    color:#777;
}


/* =========================================
   SYNOPSIS / CHAPTERS TABS
========================================= */

.novel-content-section{
    background:#333;
    border:1px solid #333;
    border-radius:10px;
    padding:10px;
    margin-bottom:10px;
}


/* ===== TAB BUTTONS ===== */

.novel-tabs{
    display:flex;
    width:100%;
    gap:5px;
    margin-bottom:15px;
    padding:4px;
    background:#444;
    border-radius:8px;
}

.novel-tab{
    flex:1;
    border:0;
    background:transparent;
    color:#aaa;
    padding:12px 10px;
    border-radius:7px;
    cursor:pointer;
    font-size:16px;
    font-weight:500;
    transition:.25s ease;
}

.novel-tab:hover{
    color:#fff;
    background:#222;
}

.novel-tab.active{
    background:#333;
    color:#fff;
}


/* ===== TAB CONTENT ===== */

.novel-tab-content{
    display:none;
}

.novel-tab-content.active{
    display:block;
}


/* ===== SYNOPSIS ===== */

.novel-tab-content .novel-desc{
    margin:0;
    padding:5px;
}

.novel-tab-content .novel-desc h2{
    color:#fff;
    font-size:22px;
    margin-top:0;
    margin-bottom:12px;

    position:relative;
    padding-left:12px;
}

.novel-tab-content .novel-desc h2::before{
    content:"";

    position:absolute;

    left:0;
    top:-1px;

    width:2px;
    height:30px;

    background:#3498ff;
    border-radius:2px;
}


/* =========================================
   LATEST RELEASE
========================================= */

.novel-tab-content .latest-chapters{
    margin:0 5px 15px;
    padding:0;
    background:transparent;
    border:0;
    border-radius:0;
}

.novel-tab-content .latest-chapters h2{
    color:#fff;
    font-size:22px;
    margin:20px 0 12px;

    position:relative;
    padding-left:12px;
}

.novel-tab-content .latest-chapters h2::before{
    content:"";

    position:absolute;

    left:0;
    top:-1px;

    width:2px;
    height:30px;

    background:#3498ff;
    border-radius:2px;
}


.novel-tab-content .latest-item{
    margin:5px 0;
}


/* =========================================
   CHAPTER LIST
========================================= */

.novel-tab-content .chapter-list{
    margin:0 5px;
    padding:0;
}

.novel-tab-content .chapter-list h2{
    color:#fff;
    font-size:22px;
    margin:20px 0 12px;

    position:relative;
    padding-left:12px;
}

.novel-tab-content .chapter-list h2::before{
    content:"";

    position:absolute;

    left:0;
    top:-1px;

    width:2px;
    height:30px;

    background:#3498ff;
    border-radius:2px;
}


/* ===== MOBILE ===== */

@media(max-width:600px){

    .novel-content-section{
        padding:8px;
    }

    .novel-tabs{
        margin-bottom:12px;
    }

    .novel-tab{
        padding:11px 8px;
        font-size:15px;
    }

}