/*
 Theme Name: Blogus Child
 Template: blogus
*/
/* test */
/* NavBAR */
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    margin: 0;
	padding:0;
    font-family: "Fira Sans", serif;
    font-style: normal;
  
}


/******************************* custom header ***********************************/
/* ================= GLOBAL RESET ================= */
body {
    margin: 0;
    font-family: 'Spectral SC', serif;
    background-color: #0b0b0b;
    color: #f8e8e8;
    line-height: 1.7;
}

a {
    color: #ff4a4a;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #ff1a1a;
}

/* ================= WRAPPER ================= */
.wrapper {
    background-color: #0b0b0b;
}

/* =================== HEADER =================== */
.custom-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1a0000;
    padding: 14px 40px;
    color: #f8e8e8;
    border-bottom: 1px solid #300000;
    position: relative;
    z-index: 1000;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-logo-img {
    width: 42px;
    height: 42px;
    object-fit: cover;
    filter: brightness(0.9) contrast(1.2) hue-rotate(-20deg);
}

.logo a {
    color: #ffcccc;
    font-family: 'Cinzel', serif;
    font-size: 1.7rem;
    font-weight: bold;
    text-shadow: 0 0 5px #500000;
}

/* =================== NAVIGATION =================== */
.nav-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 17.5px;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    color: #ffeaea;
    font-size: 1rem;
    font-family: 'Cinzel', serif;
    position: relative;
}

.nav-menu li a:hover {
    color: #ff4a4a;
    text-shadow: 0 0 8px #ff1a1a;
}

/* =================== HAMBURGER =================== */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger-menu .line {
    width: 28px;
    height: 3px;
    background-color: #ff4a4a;
    transition: 0.4s;
}

/* =================== MOBILE MENU =================== */
@media (max-width: 768px) {
    .custom-header {
        padding: 10px 20px;
    }

    .hamburger-menu {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #1a0000;
        display: none;
        flex-direction: column;
        padding: 20px 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu ul {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu li a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid #330000;
    }
}

/* =================== DEFAULT WP HEADER/FOOTER HIDE =================== */
header.bs-default,
.footer {
    display: none !important;
}

.mainfeatured {
    margin-bottom: 0 !important;
}

/* =================== FOOTER =================== */
.custom-footer {
    background-color: #140000;
    color: #ffcccc;
    padding: 40px 20px;
    font-family: 'Spectral SC', serif;
    border-top: 1px solid #3d0000;
    margin-top: 60px;
}

.custom-footer h4 {
    font-family: 'Cinzel', serif;
    color: #ff6666;
    margin-bottom: 15px;
}

.custom-footer a {
    color: #ff9999;
    text-decoration: none;
}

.custom-footer a:hover {
    color: #ff4a4a;
    text-shadow: 0 0 6px #ff1a1a;
}

.footer-copyright {
    text-align: center;
    font-size: 0.9rem;
    color: #aa7b7b;
    padding-top: 20px;
}

/* =================== TRANSITIONS =================== */
.nav-menu li a,
.custom-footer a {
    transition: color 0.3s ease, text-shadow 0.3s ease;
}


@import url("../blogus/style.css");
body{
	background-color:#16151d !important;
}
* {
    user-select: text !important; 
    pointer-events: auto !important; 
}

/*********************** librarypage new css *************************/
.top-bar-read{
	display:flex;
	align-items:center;
	justify-content:space-between;
	padding:20px;
	border-radius:10px;
	background-color:#222222;
}
.top-bar-read h1{
	margin-bottom:0;
	font-size:30px;
}

.top-bar-read .bookmark{
	display:flex; gap:10px; align-items:center; background-color: rgba(109, 40, 217, 0.3); border: 1px solid #6d28d9; border-radius:50px; padding:5px 15px;
	font-size:14px
}

.readlist-box {
    margin: 20px 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr); 
    gap: 20px;
}

.readlist-card {
    border-radius: 8px;
    background-color: #222222;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    max-width: 100%;
}
.bookmark-img {
    position: relative;
    width: 100%; 
    height: 250px; 
}

.bookmark-img img {
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
    width: 100%; 
    height: 100%; 
    object-fit: cover;
}

.bookmark-content {
    padding: 10px;
}

.bookmark-content h1 {
    margin-bottom: 0;
    font-size: 18px;
    white-space: nowrap; 
    overflow: hidden; 
    text-overflow: ellipsis; 
}

.bookmark-read-btn {
    display: flex;
    align-items: center;
	justify-content:center;
    gap: 10px;
    font-weight: 400;
    width: 100%;
    border-radius: 8px;
    padding: 4px 0px;
    background-color: #6d28d9;
    border: none;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bookmark-read-btn:hover {
    background-color: #8549d9;
    transform: translateY(-3px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.bookmark-read-btn:active {
    transform: translateY(1px);
    background-color: #5821a9;
}

.bookmark-read-btn:focus {
    background-color: #6d28d9;
    outline: none;
    border: none;
}



/*********************** single novel new css *************************/
.single-novel-bottom-btn{
	display:flex; gap:10px; position:absolute; bottom:20px;
}
.single-new-novel{
	margin-top:40px;
	display:flex;
	gap:20px;
}
.single-left{
	display:flex;
	flex-direction:column;
	gap:10px;
	border-radius:10px;
	box-shadow: rgba(0, 0, 0, 0.25) 0px 4px 8px -2px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;

}
.single-left-img{
	position:relative;
	 overflow: hidden;
	width:250px;
	border-radius:10px;
	perspective: 1000px;
}
.main-img-single{
	width: 100%;
	height: auto;
	border-radius:10px;
	transition: transform 0.5s ease;
}
.main-img-single:hover{
	    transform: rotate(5deg) scale(1.1);
}
.new-bm {
    padding: 6px 12px;
    font-weight: 400;
    background-color: #6d28d9;
    color: white;
    border: none;
	outline:none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.new-bm:hover {
    background-color: #8549d9;
    transform: translateY(-3px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.new-bm:active {
    transform: translateY(1px);
    background-color: #5821a9;
}

.new-bm:focus {
    background-color: #6d28d9;
	outline:none;
	border:none;
}

.read-first, .read-last {
    padding: 6px 50px;
    border: none;
    outline: none;
    font-weight: 400;
    color: white;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color:#e754a5;
}

.read-first:hover, .read-last:hover {
    background-color: #E044C5; 
    color: white; 
    transform: translateY(-2px);
}

.read-first:active, .read-last:active {
    background-color: #5821a9; 
    transform: translateY(1px); 
}

.read-first:focus, .read-last:focus {
      border: 2px solid #6d28d9;
}


.top-content{
	width:100%; position:absolute; top:0; left:0; padding:10px; display:flex; justify-content:space-between;
}
.below-content{
	width:100%; position:absolute; bottom:0; left:0; padding:10px; display:flex; justify-content:space-between;
}
.below-span{
	background-color:#222222; border-radius:4px; padding:2px 10px; font-size:12px; box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
	gap:5px;
	display:flex;
	align-items:center;
}

.single-right-content{
	position:relative;
	flex:1;
	padding:20px;
	border-radius:15px;
	background: rgba(25, 10, 10, 0.92);
	box-shadow: 0 0 40px rgba(255, 70, 100, 0.5);
	color:wheat;

}
.single-right-content .title{
	font-size:30px;
	    color: #ff6b81;
	font-weight: 500;
}
.single-right-content .description{
	font-size:15px;
	color:wheat;
	border-left: 4px solid #ff6b81;
	border-radius:10px;
	overflow-y:auto;
	max-height:80px;
	padding:5px 10px;
	margin-bottom:15px;
}
.single-novel-tags, .weekdays{
	display:flex;
	flex-wrap:wrap;
	gap:10px;
	font-size:13px;
}
.weekdays{
	margin-bottom:70px;
}
.single-tags{
	border: 1px solid #FF4EDB;
	padding: 4px 10px;
	border-radius:6px;
	background-color: rgba(255, 128, 235, 0.35);
}


.chapter-section {
    margin: 50px 0;
}

.dropdown {
    border-radius: 5px;
    margin-bottom: 20px;
    overflow: hidden;
}

.dropdown-toggle {
    padding: 20px;
    background-color: #f3e8dc;
    font-size: 20px;
	font-weight:bold;
    cursor: pointer;
    border-top-right-radius: 5px;
     border-top-left-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color:black;
}
.dropdown-toggle::after{
	display:none;
}
.dropdown-arrow {
    width: 8px;
    height: 8px;
    border: solid black;
    border-width: 0 2px 2px 0;
    display: inline-block;
    transform: rotate(45deg); /* Default arrow pointing down */
    transition: transform 0.3s ease;
}

details[open] .dropdown-arrow {
    transform: rotate(-135deg); /* Arrow pointing up when open */
}

.dropdown-content {
    padding: 0 10px 10px 0px;
     background-color: #f3e8dc;
    max-height: 200px; /* Maximum height for scrollable section */
    overflow-y: auto;
}

.dropdown-content ul {
	display:flex;
	flex-direction:column;
	gap:10px;
	padding-left:20px;
    list-style-type: none;
    margin: 0;
}

.ch-ul-li {
    background-color: #fdf9f6;
    display: flex;
    color:black;
    gap: 10px;
    border-radius: 5px;
    padding: 10px;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.ch-ul-li:hover {
 background: linear-gradient(120deg, rgba(255, 173, 214, 0.1), rgba(255, 116, 179, 0.25));
    transform: scale(1.01);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #ff82b2;
}




.free-span{
	height:fit-content;
	background-color: #FF4EDB;
	padding:2px 4px;
	border-radius:3px;
	font-size:11px;
	color:white;
}
.paid-span{
    color:white;
	display:flex;
	align-items:center;
	gap:5px;
	padding:2px 4px;
	border-radius:3px;
	font-size:12px;
	height:fit-content;
	background-color: black;
}

.chapter-info{
	width:fit-content;
	padding:1px 5px;
	font-size:10px;
	display:flex;
	gap:10px;
	border: 1px solid white;
	border-radius:5px;
}

.ch-time{
	font-size:11px;
}


/***********************top editor section*************************/

.editor-section-container {
	margin-top:40px;
    display: flex;
    gap: 10px;
    margin-bottom:40px;
    color: #d3d3d3;
}

.editors-choice-carousel-section {
    width: 50%;
     
}

.trending-novels-section {
    width: 50%;   
}

.unique-carousel-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}


.unique-carousel-wrapper {
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.5s ease-in-out;  
}

.unique-carousel-item {
    position: relative;
    display: flex;
    justify-content: space-between;
	align-items:center;
    gap: 20px;
    padding: 30px;
    min-width: 100%; 
    background-size: cover;
    background-position: center;
    border-radius: 15px;
}


.unique-carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    background-color: rgba(0, 0, 0, 0.7);
    background-image: url('https://i.postimg.cc/Vk02286z/pattern.png');
    backdrop-filter: blur(10px);
    z-index: 1;
}

.unique-carousel-novel-image {
    width: 30%;
    height: 250px;
    z-index: 2;
    border-radius: 10px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
	

}

.unique-carousel-novel-image img {
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    border-radius: 10px; 
	
}

.unique-carousel-details {
    z-index: 2;
    color: #fff;
    flex: 1;
    overflow:hidden;
}

.unique-carousel-details h2 {
    margin: 0 0 10px 0;
    font-size:25px;
     white-space: nowrap;
     overflow:hidden;
      text-overflow: ellipsis; 
}

.unique-carousel-details p {
     color: #b0b0b0; 
    margin: 0;
       white-space: nowrap;
     overflow:hidden;
      text-overflow: ellipsis; 
}

.tags {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    overflow:hidden;
}

.tag-item {
    background: rgba(169, 169, 169, 0.4); 
    color: #fff;
    padding: 4px 8px;
    border-radius: 7px;
    font-size: 14px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.carousel-dots .dot {
    width: 12px;
    height: 12px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.carousel-dots .dot.active {
    background-color: #a78bfa;
}




/* Trending Section */
.trending-novel-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.trending-novel-card {
    position:relative;
    display:flex;
    gap:15px;
    padding:25px;
    flex:1;
    background-color: #222;
    border-radius: 12px;
}

.trending-novel-image {
    position:relative;
    width:105px;
    height:105px;
    border-radius: 15px; 
}

.trending-novel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    border-radius: 15px;
}
.unique-trending-details {
    padding-right:20px;
    z-index: 2;
    flex: 1;
    overflow:hidden;
}

.unique-trending-details h2 {
     margin: 0 0 10px 0;
     font-size:20px;
     white-space: nowrap;
     color:white;
     overflow:hidden;
     text-overflow: ellipsis; 
}
.unique-trending-details p {
     margin: 4px 0;
     font-size:15px;
      color: #b0b0b0; 
     white-space: nowrap;
     overflow:hidden;
     text-overflow: ellipsis; 
}

.tag-item2 {
     background: rgba(169, 169, 169, 0.4); 
    color: #fff;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
}
.rating-tag{
    z-index:10;
     position: absolute;
     right:0;
     top:0;
     background-color:#8b5cf6;
     padding:2px 6px;
      border-top-right-radius: 10px; 
    border-bottom-left-radius: 10px;
}

.rating-tag-star {
    z-index: 10;
    position: absolute;
    right: 5px;
    top: 5px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rating-tag-star img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0; 
    left: 0;
    z-index: 1;
}

.rating-value {
    z-index: 2;
    font-size: 14px;
    color:black;
}


.status-tag {
    position: absolute;
    bottom: 0; 
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    text-align: center;
    padding: 3px;
    font-size: 14px;
    border-radius: 0 0 15px 15px; 
}




/***********************gems popup*************************/
/* Popup Container */
.popup-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    z-index: 9999;
    padding: 20px;
    display: none;
    color: #333; /* Ensure default text color */
}

/* Popup Content */
.popup-content {
    text-align: center;
    position: relative; /* So the close button can be positioned relative to this container */
}

.popup-content h2 {
	
    font-size: 1.5rem;
    margin: 15px 0;
    color: #333; /* Set text color to match the container's border */
}

/* Close Button */
.close-btn {
	position:absolute;
	top:-20px;
	right:-10px;
    font-size: 1.5rem;
    cursor: pointer; 
	text-align:right;
	font-weight:bold;
	width:100%;
}

/* Popup Text */
.popup-content p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #555;
}

/* Call-to-Action Button */
.cta-btn {
    background: #f96854;
    border: none;
    border-radius: 5px;
    color: white;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px;
    transition: background 0.3s;
}

.cta-btn:hover {
    background: #f33a6a;
}

/* Footer Link */
.popup-footer {
    font-size: 0.9rem;
}

.popup-footer a {
    color: #007bff;
    text-decoration: none;
}

.popup-footer a:hover {
    text-decoration: underline;
}


/***********************points system*************************/
/* .myCRED-buy-form{
	display:flex !important;
	justify-content:space-evenly;
	flex-direction:row;
	
} */

.checkout-body img{
	width:70px;
}
.balance-box p{
	margin:0;
}
.form-group .form-control {
	border-radius:2px !important;
}
.myCRED-buy-form button{
	background: linear-gradient(45deg, #4a90e2, #0072ff);
	border:none;
	border-radius:15px;
}
.mycred-sell-this-wrapper button{
	 background: linear-gradient(45deg, #4a90e2, #0072ff);
	border:none;
	border-radius:15px;
}
.dark #buycred-checkout-form{
	background-color:#2E2C2E;
	padding:15px;
	border-radius:15px;
}
#buycred-checkout-form button{
	background: linear-gradient(45deg, #4a90e2, #0072ff);
	border:none;
	border-radius:15px;
}

.form-inline{
	display:flex;
	justify-content:center;
	width:100%;
	
}
.table-responsive{
	max-width:100%;
	width:100% !important;
}

.dark .mycred-table{
	color: white !important;
}
.pagination-bottom{
	display:none;
}
.pagination-top{
	display:none;
}
.dark #rubies-section{
    background-color:transparent !important;
	color:white !important;
 }
.dark #rubies-section h2{
 
	color:white !important;
 }
.dark #rubies-section p{
 
	color:white !important;
 }
.dark #rubies-section span{
 
	color:white !important;
 }
.dark #purchase{
	background-color:transparent !important;
	box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2) !important;
}
.dark #purchase h3{
	color: white !important;
}



.dark #buycred-checkout-form table{
	background-color:#7F8487;
}
.dark .bs-card-box{
	background-color:#2E2C2E;
}
.chapter-points-mobile{
    display:none;
	margin-bottom:0;
}
.myCRED-buy-form{
	display:flex;
	justify-content:space-evenly;
}
.paid-chapters {
  border: 2px solid transparent;
  background: linear-gradient(45deg, #ffffff, #ffffff) padding-box, 
              linear-gradient(45deg, #20c997, #6610f2) border-box;
  box-shadow: 0 0 6px rgba(32, 201, 151, 0.7),   
              0 0 10px rgba(32, 201, 151, 0.5), 
              0 0 14px rgba(102, 16, 242, 0.4); 
}

.dark .paid-chapters { 
  background: linear-gradient(45deg, #111, #111) padding-box, 
              linear-gradient(45deg, #20c997, #6610f2) border-box;
}


   
/***********************Lock chapters css patreon ********************/
.lock-chapters-list{
	display:flex;
	flex-direction:column;
    gap:10px;
}

.lock-chapters{
	color:white;
	cursor:pointer;
	padding:10px;
	font-size:1.2em;
	border-radius:10px;
	background: linear-gradient(135deg, #8e2de2, #4a00e0);
}
.lock-chapters:hover {
	background: radial-gradient(circle, #8e2de2, #4a00e0);
}

/***********************patreon banner css ********************/
.patreon-banner {
  position: relative;
  background-image: url('https://nhvnovels.com/wp-content/uploads/2024/09/mm-png.webp');
  background-size: cover;
  background-position: center;
  padding: 30px 5px;
  border-radius: 12px;
  color: white;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  margin: 20px 0;
}
.discord-banner{
	background-image: url('https://nhvnovels.com/wp-content/uploads/2024/09/mm-png.webp');
}

.patreon-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6); 
  border-radius: 12px;
}

.patreon-banner .content {
  position: relative;
  z-index: 1;
}

.patreon-banner h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: bold;
}

.patreon-banner p {
  font-size: 1rem;
  margin-bottom: 30px;
}

.patreon-banner p span {
  font-weight: bold;
}

.patreon-banner .patreon-button {
  display: inline-block;
  background-color: #e85d4a;
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.patreon-banner .patreon-button:hover {
  background-color: #d14a38;
}

.patreon-button {
	margin-top: 10px;
    background: linear-gradient(45deg, #f96854, #f33a6a);
    border: none;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* Custom styles for the child theme */
.my-main-container{
     background-color: #000;
    padding: 15px;
}
.novel {
    max-width: 1000px;
    margin: 0 auto;
}
.novel-topcard{
    display: flex;
    gap: 20px;
}
.novel-thumbnail-2{
    width: 25%;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
   
}
.novel-thumbnail-2 img{
    border-radius: 10px;
    height: 400px;
    width:100%;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.novel-content-2{
    border-radius: 10px;
    width: 75%;
    position: relative;
}

.novel-content-2 h1{
    font-size: 1.8rem;
    font-weight: 500;
}
.dark .novel-content-2 p{
    color: #818181;
}
.novel-category-tags-2{
    background: #b5d4eb;
    border-radius: 5px;
    padding: 5px 10px;
    color: black !important;
    font-size: 0.8rem;
    margin-bottom: 0;
}

.button-container{
    display: flex;
	flex-wrap:wrap;
    gap: 10px;
    position: absolute;
    bottom: 0;
}
.button-container button{
	border:none;
	background:green;
    border-radius: 5px;
    padding: 5px 20px;
    font-weight: 400;
    font-size: 0.9rem;
}
.chapters{
    margin-top: 40px;
}
.chapters h2{
    font-size: 1.8rem;
}
.dark .chapters p{
    color: #818181;
}
.chapters ul {
    list-style: none;
    padding: 0;
    font-size: 0.8rem;
}

.chapters ul li :hover {
    background: #b7b7b7;
    color: black;
} 


 .chapters ul li a {
    margin: 10px 0;
    border-radius: 10px;
    text-decoration: none;
    color: #0073aa;
    font-size: 1.2em;
    display: block;
    padding: 10px;
    background: #f9f9f9;
    transition: background 0.3s;
}
.dark .chapters ul li a{
    background-color: #4b4b4b;
    color: rgb(23, 147, 255);
}
.dark .chapters ul li :hover {
    background: #d6d6d6;
    color: black;
} 
 

/*************************************************** home page ***********************************/


.novel-archive {
    margin: 0 auto;
    max-width: 1300px;

}

.novel-archive h1 {
    font-size: 2em;
    margin-bottom: 20px;
}

.novel-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px !important;
	row-gap:15px !important;
    margin-bottom: 100px;
    margin-top: 30px;
}

.novel-item {
    position:relative;
	max-width:95% !important;
    border-radius: 10px;
    background-color:#222222;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 4px 8px -2px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;

}

.novel-item a {
    text-decoration: none;
    color: inherit;
}

.novel-thumbnail {
    position:relative;
    overflow: hidden;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
	box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
}
.novel-thumbnail span {
    position: absolute;
    bottom: 0;
    left: 10px;
    color: white;
    z-index:10;
} 

.novel-thumbnail a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 320px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1));
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
     border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    z-index: 1; 
    
}




.novel-thumbnail img {
	
    width: 100%;
    height: 280px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    object-fit:cover;
    transition: transform 0.3s ease; 
}

.novel-thumbnail:hover img {
    transform: scale(1.1); 
}

.novel-content-text{
    display:flex;
    gap:2px;
   padding:10px;
   background-color:#1a0000;
   color:wheat;
   border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}
.novel-content-text h1{
    font-size:18px;
    margin-bottom:0;
      white-space: nowrap;
     overflow:hidden;
      text-overflow: ellipsis;
       color:wheat;
}
.novel-content-text p{
    font-size:12px;
    margin-bottom:0;
      white-space: nowrap;
     overflow:hidden;
      text-overflow: ellipsis;
}
.novel-content-rating{
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    text-align:center;
    border:2px solid #a78bfa;
    border-radius:8px;
}
.score-novel {
    background-color: #a78bfa;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
    font-size: 10px !important;
    padding: 3px 5px;
    color: white; 
    text-align: center; 
    display: inline-block;
}



.novel-content{
    width: 100%;
    margin: 0;
    position: absolute;
    padding: 10px;
   background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
    border-radius: 0 0 10px 10px;
}
.novel-content h2{
    color: white;
    font-size: 1rem;
    margin-top: 10px;
    margin-bottom: 0;
}
.novel-category{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.novel-category-tags{
    background: #b5d4eb;
    border-radius: 5px;
    padding: 0px 5px;
    color: black;
    margin: 0;
    font-size: 0.8rem;
}
.status {
    position: absolute;
    top: 0;
    right: 0;
     /*background: #b5d4eb; */
    color: white;
    padding: 5px 10px;
    border-radius: 0 10px 0 10px;
    font-size: 0.8em;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}
.novel-type{
	position: absolute;
    top: 0;
    left: 0;
	 padding: 5px 10px;
	  font-size: 0.8em;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
	 color: white;
	 border-radius: 10px 0 10px 0;
background-color: #2e2e2e;
}

.status-ongoing {
    background-color: #6d28d9;
}

.status-completed {
    background-color: #a78bfa; 
}
.status-comingup {
  background-color: #f5d03f;
}
.status-dropped{
	background-color: red;
}

.status-newly-added {
    background-color: #8b5cf6;
}

.rating{
    top: 0;
    left: 0;
    max-width: fit-content;
    border-radius: 10px 0 10px 0;
    background: rgb(65, 65, 65);
    color: white;
}
.view_shortnovel{
	display:flex;
	position:absolute;
    bottom: 0;
    left: 0;
	padding: 5px 10px;
    width:100%;
	background: rgb(65, 65, 65);
	font-size: 0.8em;
	color: white;
	p{
		margin-bottom:0;
	}
}

.latest-updates-grid{
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.latest-content{
    display: flex;
    gap: 10px;
}
.latest-content:hover{
    background-color: #cacaca;
    transition: 0.3s ease-in;
    cursor: pointer;
    border-radius: 10px;
}
.dark .latest-content:hover {
    background-color: rgba(255, 255, 255, 0.2); 
}


.lc-thumbnail{
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    border-radius: 10px;
    width: 125px;
    height: 130px;
}
.lc-thumbnail img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
.lc-content{
    padding: 10px;
    width: 100%;
    position: relative;
}
.lc-content h1{
    font-weight: 100;
    font-size: 1.1rem;
    margin-bottom: 5px;
}
.status-2{
    font-size: 0.8rem;
    background-color: #0073aa;
    width:fit-content;
    padding: 0 10px;
    border-radius: 5px;
    color: white;
}
.timestamp{
    color: rgb(178, 178, 178);
    font-size: 0.8rem;
    position: absolute;
    bottom: 0;
    margin: 0;
}

/*----------------------------CHAPTER CSS ------------------------------*/

.ch-review-div{
	width:100%;
	display:flex;
	flex-wrap:wrap;
	gap:10px;
	justify-content:center;
}
.ch-review-btn {
    padding: 5px 24px;
    background-color: #3498db;
    font-weight: bold;
    border-radius: 30px; 
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.ch-review-btn:hover {
    background-color: #2980b9; 
    transform: translateY(-2px); 
}

.ch-discord-btn {
    padding: 5px 24px;
    background-color: #3498db;
    font-weight: bold;
    border-radius: 30px; 
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.ch-discord-btn:hover {
    background-color: #2980b9; 
    transform: translateY(-2px); 
}

.ch-review-btn.shake {
    animation: shake 0.5s ease-in-out;
}

.ch-discord-btn.shake {
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0% { transform: translateX(0); }
    20% { transform: translateX(-10px); }
    40% { transform: translateX(10px); }
    60% { transform: translateX(-10px); }
    80% { transform: translateX(10px); }
    100% { transform: translateX(0); }
}

.chapter-list-timestamp{
	color: rgb(178, 178, 178);
	font-size:0.8rem;
}
.chapter-content-container {
    display: flex;
    margin: auto;
    max-width: 1200px;
    padding: 20px;
}
.chapter-container{
	width:100%;
}

.chapter-header {
   color: black;
    display: flex;
	flex-direction:column-reverse;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid ;
    padding-bottom: 10px;
}
.chapter-title {
    margin: 0;
    font-size: 1.7rem;
     color:black;
}

.controls {
    display: flex;
	justify-content:space-between;
	width:100%;
	margin-bottom:30px;
}

/*.down-controls{*/
/*    display: flex;*/
/*    padding: 10px 0px;*/
/*    justify-content: space-evenly;*/
/*    align-items: center;*/
/*}*/
/*.down-nav-button{*/
/*    padding: 10px;*/
/*    font-size: 24px;*/
/*    color: var(--button-color);*/
/*    background-color: transparent;*/
/*    border: none;*/
/*    cursor: pointer;*/
/*    margin: 0 10px;*/
/*}*/
/*.down-nav-button button{*/
/*    background-color: black;*/
/*    border:1px solid black;*/
/*    padding: 5px 10px;*/
/*    color: white; */
/*}*/
/*.dark .down-nav-button button{*/
/*    background-color: white;*/
/*    color:black;*/
/*}*/
/*.nav-button {*/
/*    padding: 10px;*/
/*    font-size: 24px;*/
/*    color: var(--button-color);*/
/*    background-color: transparent;*/
/*    border: none;*/
/*    cursor: pointer;*/
/*    margin: 0 10px;*/
/*}*/

.down-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 15px 0;
    background-color: #fff0f6;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(255, 105, 180, 0.1);
}

.down-nav-button {
    font-size: 24px;
    color: #ff4081;
    background-color: transparent;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, color 0.2s;
}

.down-nav-button:hover {
    transform: scale(1.15);
    color: #e91e63;
}

.down-nav-button button {
    background-color: #ff4081;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.down-nav-button button:hover {
    background-color: #e91e63;
    transform: translateY(-2px);
}

/* .text-size-toggle {
    padding: 10px;
    font-size: 24px;
    background-color: var(--button-bg-color);
    border: none;
    
    border-radius: 5px;
    color: var(--button-text-color);
    cursor: pointer;
    margin: 0 10px;
} */

/* .large-text .chapter-text {
    font-size: 18px;
} */

.chapter-text {
    font-size: 1.1rem;
    transition: font-size 0.3s ease;
	color:black !important;
}
.chapter-text h3{
    color: black;
}
/* .chapter-text.large-text {
    font-size: 1.4rem; 
} */

/* .dark .chapter-text {
    font-size: 1.1rem;
    transition: font-size 0.3s ease;
	color:white;
} */




/*----------------------------Library CSS ------------------------------*/
.delete-icon {
    cursor: pointer;
    transition: transform 0.3s ease; 
    color: rgb(179, 0, 0);
}
.lug-2{
    margin-bottom: 100px;
}

.delete-icon:hover {
    transform: scale(1.1); 
    color: rgb(255, 0, 0);
}

.my-title{
    font-size: 2rem;
    margin-bottom: 20px;
}
.one a{
    text-decoration: underline;
	  color:yellowgreen;
}
.two{
    color: red;
    margin-left: 10px !important
}
.latest-content-2{
    display: flex;
    gap: 10px;
}

/*----------------------Header-----------------*/
form{
    display: flex;
    width: 100%;
    flex-direction: row-reverse;
    align-items: center;
    /* padding: 10px; */
    margin-bottom: 20px;
 }

.searchbar-container {
    display: flex;
    width: 50%;
    align-items: center;
    padding: 5px;
    gap: 10px;
    position: relative;
}

.button-group {
    display: flex;
    gap: 10px;
    width: 100%;
    max-width: 50%;
    justify-content: start;
}

.searchbar-container .searchbar {
    border-radius: 5px;
    border: 1px solid black;
    padding: 15px;
    font-size: 1rem;
}

.dark .searchbar-container .searchbar {
    border: 1px solid rgb(185, 185, 185);
    background-color: rgb(57, 57, 57);
    color: rgb(215, 215, 215) ;
}
.dark .searchbar-container .searchbar::placeholder {
    color: rgb(215, 215, 215) ;
    opacity: 0.5; 
}
.dark .searchbar-container .search-button{
    color: rgb(215, 215, 215) ;
}

.searchbar-container .search-button {
    border-radius: 10px;
    padding: 2px 8px;
    position: absolute;
    left:93%;
    background-color: transparent;
    color: black;
    border: none;
    cursor: pointer;
}

#genre-select{
    padding: 5px;
    width:150px;
    border-radius:5px;
    background-color:black;
    color:white;
    border: 1px solid rgb(185, 185, 185);
}

#rating-select{
    padding: 5px;
    width:150px;
    border-radius:5px;
    background-color:black;
    color:white;
    border: 1px solid rgb(185, 185, 185);
}

.dark #genre-select {
    background-color: rgb(57, 57, 57);
    color: rgb(215, 215, 215) ;
}


.dark #rating-select {
    background-color: rgb(57, 57, 57);
    color: rgb(215, 215, 215) ;
}

.searchbar-container .searchbar:focus {
    border-color: gray;
}





/* Customization for Prebuilt component */
.bs-default .navbar-collapse ul{
    background-color: rgb(57, 57, 57) !important;
}
.slider::before{
    background-color: rgb(57, 57, 57) !important;
}
.bs_upscr{
    background-color: rgb(57, 57, 57) !important;
    border: 1px solid rgb(185, 185, 185) !important;
}

.navbar-header{
    display: flex !important;
    flex-direction: row !important;
}
.navbar-header .site-title{
    font-size: 2.5rem;
}
.navbar-header .site-description{
    font-size: 1rem;
}
.navbar-header img{
    width: 100px !important;
    margin-right: 15px;
}
.footer-logo img{
    display: none !important;
}


/* ========== wpDicuzz Plugin*/

.wpd-form form {
    display: block;
}
.wpdiscuz-textarea-wrap .wpd-avatar{
	display:none;
}

/*  Post Views Counter  */

/* .post-views{
	display:none;
} */

.weekly_novel_report {
    display: flex;
    flex-wrap: wrap; /* Ensure the form elements wrap on smaller screens */
    align-items: center;
    gap: 10px; /* Space between input elements */
}

.recommendation {
    border: 1px solid #444;
    padding: 15px;
    background: #222; /* Dark background */
    margin-top: 20px;
    text-align: center;
    border-radius: 5px; /* Slightly rounded corners */
    color: #ddd; /* Light text for contrast */
}

.recommendation h4 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #fff; /* Highlight heading with bright text */
}

.recommendation a {
    color: #1e90ff; /* Bright link color for visibility */
    text-decoration: none;
    font-weight: bold;
}

.recommendation a:hover {
    color: #00bfff; /* Slightly lighter on hover */
    text-decoration: underline;
}



    
  .top-contributors-container {
    display: flex;
    gap: 30px; /* Increased gap */
    padding: 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Hide scrollbar */
}

.top-contributor {
    text-align: center;
    margin-bottom: 20px;
    flex: 0 0 auto;
    width: 100px;
    height: 160px;
}

.top-contributor-img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-bottom: 10px;
}

.top-contributor-name {
    font-weight: bold;
    font-size: 16px;
    color: black !important;
}

.dark .top-contributor-name {
    color: white !important;
}

@media (max-width: 767px) {
    .nav-menu a {
    color:white;
}
	.content h2 {
		font-size:30px;
		text-align:center;
	}
    .top-contributors-container {
        gap: 15px; 
        padding: 10px;
    }

    .top-contributor-img {
        width: 80px;
        height: 80px;
    }

    .top-contributor-name {
        font-size: 14px;
    }
	.view-post-container{
		grid-template-columns: 1fr !important;
		gap:10px;
	}
	
	.view-list p{
		padding:3px 20px !important;
		cursor:pointer !important;
	}
	.view-post{
		gap:15px !important;
	}
	.view-genre{
		font-size:12.5px;
	}
	.view-post h4{
	border: 2px solid white;
	padding:1px 8px;;
}
	.latest-release{
		max-width:100% !important;
	}
	.lastest-release-posts{
	
	grid-template-columns: repeat(1, 1fr) !important;
	gap:10px;
}
	.latest-release-post img{
	width:25% !important;
	height:125px !important;
}
	.last-release-content{
	font-size:12px;
}
	.ippocopy{
	flex-wrap:wrap !important;
}
	.view-container{
		max-width:100% !important;
/* 		width:100% !important; */
	}
	.view-post img{
		max-width:10%;
	}
	.single-novel-bottom-btn{
		width:90%;
		position:static;
		margin-top:20px;
	}
	.read-first, .read-last {
		padding: 6px 0px;
		width:100%;
	}
}
@media screen and (max-width: 600px) {
	.readlist-box {
		grid-template-columns: repeat(2, 1fr) !important; 
    }
    .novel-thumbnail img {
        height: 250px !important;
    }
    .novel-thumbnail a::before {
          background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.1));
		height:280px !important;
    }
    .novel-grid{
        gap: 10px !important;
		row-gap:17.5px !important;
		justify-content:center !important;
		align-items:center !important;
    }
     .unique-carousel-novel-image{
        height:120px;
    }
	.unique-carousel-novel-image{
        width:20%;
    }
	.unique-trending-details{
		padding-right:5px;
	}
    .unique-carousel-details h2  {
        font-size:15px;
		padding-right:20px;
    }
	.unique-trending-details h2{
		font-size:15px;
	}
	.unique-carousel-details p{
		font-size:12px !important;
	}
    .unique-trending-details p {
        font-size:12px;
    }
	.unique-carousel-item{
		 align-items: unset;
	}
  
    .tag-item2{
        font-size:12px;
		padding:0 10px;
    }

    .unique-carousel-details{
        padding-left:10px;
    }
    .status-tag{
        font-size:12px;
        border-radius:0 0 10px 10px;
    }
        .trending-novel-card {
            gap:10px;
        }
           .trending-novel-image{
               width:90px;
            height:90px;
           }
         .trending-novel-image img {
            border-radius:10px;
        }
         .rating-tag{
        font-size:12px;
    }
    .rating-tag-star{
        width:40px;
        height:40px;
    }
    .rating-value{
        font-size:12px;
    }
	.single-new-novel{
		flex-direction:column;
	}
	.single-left{
		justify-content:center;
		align-items:center;
	}
	.new-bm{
		width:100%;
	}
	.single-right-content h1{
		font-size:20px !important;
	}
	.ch-ul-li p{
		font-size:13px;
	}
	.description{
		font-size:13px !important;
	}
	.single-novel-tags, .weekdays{
		gap:7px;
		font-size:11px;
	}
	
	.single-left-img{
		position:relative !important;
		width:100%;
		padding:40px;
		background-image: url('https://img.freepik.com/free-vector/flat-drawn-purple-striped-background_23-2149592142.jpg');
	}

	.single-novel-overlay{
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		border-radius: 10px;
		background-color: rgba(0, 0, 0, 0.7);
		background-image: url('https://i.postimg.cc/Vk02286z/pattern.png');
		backdrop-filter: blur(10px);
		z-index:-1 !important;
	}
	.top-content{
		top:40px; 
		padding:10px 50px;
	}
	.below-content{
		bottom:40px;
		padding:10px 50px;
	}
	.single-star{
		right:45px;
	}
	.main-img-single:hover {
    	transform: none;
	}
	.lastest-release-posts{
		grid-template-columns: repeat(1, 1fr) !important;
	}
	.footer-right{
		width:100%;
		flex-direction:column;
		gap:0px;
	}
	.footer-right li a, .footer-discord-link,.footer-tagline,.footer-copyright{
		font-size:12px !important;
	}
	.footer-links{
		flex-direction:row;
		justify-content:space-between;
	}
	.custom-footer {
		padding: 30px 20px;
	}

}


@media (min-width: 768px) {
    .top-contributors-container {
        gap: 60px; 
    }
}

.view-container{
	max-width:25%;
	width:100%;
	display:flex;
	gap:15px;
	flex-direction:column;
}
.view-list{
	display:flex;
	gap:4px;
	box-shadow: 2px 2px 5px #6d28d9;
	background-color:#222;
	justify-content:space-around;
	align-items:center !important;
	padding:10px;
	cursor:pointer;
	margin:0;
}
.view-list p:hover{
	transform:scale(1.01);
	transition: ease-in 0.2s;
}
.view-list p{
	text-align:center;
	margin:0;
	font-size:12px;
	background-color:#6d28d9;
	padding:3px 10px;
	border-radius:5px;
}
.view-post img {
  width: auto;             /* Keeps the natural width */
  max-width: 25%;          /* Limits the width to 25% of the container */
  height: 100px;            /* Dynamically adjusts height to maintain aspect ratio */
  max-height: 100%;       /* Limits the maximum height */
/*   object-fit: contain;     /* Ensures the entire image is visible */ */
  border-radius: 0px;      /* No rounded corners */
  display: block;          /* Prevents inline spacing issues */

}



.view-post h4{
	
	border: 1px solid #6d28d9;
	padding:2px 8px;;
	font-size:15px;
}
.view-post{
	background-color:#222;
	border-bottom:1.5px solid #f1f1f1;
	border-color:#383838;
	padding:12px 12px;
	display:flex;
	gap:15px;
	align-items:center;
	border-radius:0px;
	width:100%;
}
.view-genre{
	font-weight:bold;
}
.view-post-container{
	display:grid;
	grid-template-columns: repeat(1, 1fr);
	gap:0px;
}
.view-intel{
	display:flex;
	gap:2px;
	flex-direction:column;
	cursor:pointer;
}
.view-intel p{
	margin:0 !important;
	font-size:12px;
}
.view-rating{
	margin-left:5px;
	font-weight:bold;
}

.view-item.active{
	background-color:green !important;
}
.ippocopy{
	
	width:100%;
	 display: flex;
/*     grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); */
	gap:25px;
/* 	flex-wrap:wrap; */

	
}
/* latest-release */
.latest-release{
	background-color:#222;
/* 	box-shadow: rgba(255, 255, 255, 0.25) 0px 4px 8px -2px, rgba(255, 255, 255, 0.08) 0px 0px 0px 1px; */
	max-width:75%;
	width:100%;
	height:100%;
	display:flex;
	
	flex-direction:column;
	gap:10px;
}
.latest-release-strip{
	display:flex;
	justify-content:space-between;
	background-color:#6d28d9;
	padding:2px 15px;
	align-items:center !important;
}
.latest-release-strip p{
	margin:0;
}
.latest-release-strip button{
	background-color:black;
	padding:1px 8px;
	border:none;
	font-size:12px;
}

.latest-release-post{
	display:flex;
	gap:10px;
	width:50%;
}
.last-release-content{
	width:100%;
	display:flex;

	padding:0px 5px 0px;
	flex-direction:column;
}
.lastest-release-posts{
	display:grid;
	grid-template-columns: repeat(2, 1fr);
/* 	gap:15px; */
	padding:15px;
}
.latest-release-post{
	width:100%;
	background-color:#222;
	padding:10px 6px !important;
	border-bottom:1px solid #f1f1f1;
/* 	box-shadow: 0px 1px 1px #6d28d9; */
/* 	border-radius:5px; */
	border-color:#383838;
	
}
.latest-release-post a img{
	
	width:100px !important;
	height:150px;
/* 	border-radius:5px; */
}
.latest-release-post a img:hover{
	box-shadow: 2px 2px 5px #6d28d9;
	transform:scale(1.03,1.03);
	  transition: transform 0.3s ease;
}
.latest-release-post a{
	max-width:100% !important;
	width:auto !important;
}
.last-updated {
	display:flex !important;
/* 	justify-content:space-between !important; */
	gap:7.5px;
	flex-direction:column;
}
.last-updated p{
	margin:0;
}
.last-updated div{
	display:flex;
	justify-content:space-between;
	
}
.time-z{
	font-size:12px;
}
.chp{
	cursor:pointer;
	background-color: #333;
/* 	border: 1px solid #6d28d9; */
	text-align:center;
/* 	line-height:2 !important; */
	align-items:center;
	font-size:12px;
    padding: 2px 15px; 
    border-radius: 20px; 
    display: inline-block; 
    color: white; 
}



/* Base Styles */
:root {
    --purple-primary: #8b5cf6;
    --purple-dark: #6d28d9;
    --purple-light: #a78bfa;
    --background-start: #4c1d95;
    --background-middle: #1f2937;
    --background-end: #000000;
}




.gems-container {
    max-width: 1200px;
    margin: 0 auto;
    padding:2rem;
	border-radius:10px;
}

/* Header Styles */
.header {
    text-align: center;
    margin-bottom: 3rem;
}

.header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.subtitle {
    color: #d1d5db;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.balance-box {
    display: inline-block;
    background: rgba(139, 92, 246, 0.2);
    padding: 1rem 2rem;
    border-radius: 0.75rem;
}

.highlight {
    color: var(--purple-light);
    font-weight: bold;
}

/* Icons */
.icon {
    width: 24px;
    height: 24px;
}

.icon-small {
    width: 16px;
    height: 16px;
}

.purple { color: var(--purple-light); }
.green { color: #10b981; }
.blue { color: #3b82f6; }
.yellow { color: #fbbf24; }

/* Info Box */
.info-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.exchange-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.rate {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.payment-methods {
    display: flex;
    gap: 1rem;
}

.method {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Packages */
.packages {
    display: grid;
    grid-template-columns: repeat(3,3fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.package {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 1.5rem;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.package:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.featured {
    background: var(--purple-primary);
}

.featured:hover {
    background: #ffd1e5;
}



.bonus-tag {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: #fbbf24;
    color: black;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.package-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.gems {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: bold;
}

.price {
    font-size: 1.25rem;
    font-weight: 600;
}

.total {
    font-size: 0.875rem;
    color: #d1d5db;
}

/* Custom Amount */
.myCRED-buy-form {
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 1rem !important;
    padding: 1.5rem !important;
    margin-bottom: 2rem !important;

}

.custom-amount h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.input-group {
    display: flex;
    gap: 1rem;
}

.form-group input {
    background: rgba(255, 255, 255, 0.1) !important;
    border: none !important;
    height: auto !important;
	margin:0 !important;
    border-radius: 0.5rem !important;
    padding: 0.75rem 1rem !important;
    color: white !important;
    font-size: 1rem !important;
    width: 100% !important;
    max-width: 300px !important;
}


.form-group input:focus {
    outline: 2px solid var(--purple-light) !important;
}

.form-group button {
    background: var(--purple-primary) !important;
    color: white !important;
    border: none !important;
    border-radius: 0.5rem !important;
    padding: 0.75rem 2rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: background-color 0.3s ease !important;
}



.form-group button:hover {
    background: var(--purple-dark) !important;
}
.mycred-point-type{
	display:none;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    text-align: center;
}

.feature {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 1.5rem;
}

.feature .icon {
    margin-bottom: 0.75rem;
}

.feature h3 {
    margin-bottom: 0.5rem;
}

.feature p {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2rem;
    }
	.packages{
		grid-template-columns: repeat(1,1fr) !important;
/* 		max-height:100% !important; */
	}
    .exchange-info {
        flex-direction: column;
        align-items: flex-start;
    }
	.bs-card-box p{margin:0px !important;}
    .input-group {
        flex-direction: column;
    }
	.form-group input{
		margin-bottom:1rem !important;
	}
	.form-group{
		width:100% !important;
	}
    .form-group button {
        width: 100% !important;
    }

	.wp-block-heading{
		margin:0;
	}
}
/***********************************************  responsive *****************************************/
@media (max-width: 1024px) {
    .ippocopy {
        flex-wrap: wrap; /* Allow wrapping on smaller screens */
	}
	.view-container{
		max-width:100% !important;
	}
	.latest-release{
		max-width:100% !important;
	}
	.view-post img{
		max-width:10% 
	}
}

@media screen and (max-width: 1500px) {
    .novel-grid{
        grid-template-columns: repeat(5, 1fr);
    }
    .latest-updates-grid{
        grid-template-columns: repeat(3, 1fr);
    }
    .novel-archive {
        max-width: 1150px;
    }
	.novel-item {
		max-width:95% !important;
		width:100%;
		height:auto;
	}
	.novel-thumbnail img{
		height:300px !important;
	}
}



@media screen and (max-width: 1100px) {
	.header-logo-img{
		display:none;
	}
    .unique-carousel-details h2 {
        font-size:20px;
    }
     .editor-section-container{
        flex-direction:column;
    }
	.carousel-dots{
		 margin-bottom: 15px;
	}
    .unique-carousel-novel-image{
        width:25%;
    }
    .unique-carousel-details p {
        font-size:15px;
    }
     .editors-choice-carousel-section{
        width:100%;
    }
    .trending-novels-section{
        width:100%;
    }
    .novel-grid{
          gap:5px !important;
      grid-template-columns: repeat(4, 1fr) !important;
		row-gap:15px !important;
    }
    .latest-updates-grid{
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .novel-archive {
        max-width: 1000px;
    }
	.button-container{
		position:static;
        margin-top: 20px;
    }
	.readlist-box {
		grid-template-columns: repeat(4, 1fr); 
    }
	
	.novel-item {
		max-width:95% !important;
		width:100%;
		
	}
	.novel-content-text h1{
		font-size:16px !important;
	}
	.novel-thumbnail img{
		height:300px !important;
	}
	
	
}
@media screen and (max-width: 810px) {
	
    
    .status{
        font-size: 0.7rem;
    }
    
    .novel-thumbnail-2{
        width: 40%;
    }
    .novel-content-2{
        width: 60%;
    }
 
    .novel-thumbnail-2 .status{
        font-size: 0.9rem;
    }
    .novel-content-2 p{
        font-size: 1rem;
    }
    .novel-content-2 h1{
        font-size: 1.7rem;
    }
    /* .novel-archive {
        max-width: 800px;
    } */
	.novel-thumbnail img{
/* 		object-fit:contain !important; */
		height:225px !important;
	}
	   .novel-grid{
       
      grid-template-columns: repeat(4, 1fr) !important;
    }
	.novel-content-text h1{
		font-size:14px !important;
	}
	
   
	
}

@media (max-width: 768px) {
	
	.readlist-box {
		grid-template-columns: repeat(3, 1fr); 
    }
	.bookmark-img{
		height:200px;
	}
	.top-bar-read h1{
		font-size:21px;
	}
	.top-bar-read .bookmark{
		font-size:10px;
	}
	.bookmark-content h1{
		font-size:15px;
	}
	.bookmark-read-btn{
		font-size:12px !important;
		padding:1px 0;
	}
	.myCRED-buy-form{
		display:flex;
		flex-direction:column !important;
	}
	 #rubies-section {
            padding: 2rem 1rem !important;
        }

        #rubies-section h2 {
            font-size: 1.5rem !important; 
            margin-bottom: 1rem;
        }

        #rubies-section p {
            font-size: 1rem !important;
            margin-bottom: 1.5rem !important;
        }

        #purchase {
            padding: 1.5rem;
        }

        #purchase h3 {
            font-size: 1.25rem !important;
            margin-bottom: 1rem !important;
        }

        #purchase p {
            font-size: 0.9rem !important; 
            margin-bottom: 1.5rem !important;
        }

        #purchase a {
            font-size: 1rem !important; 
            padding: 0.75rem 1.5rem !important;
        }
        
          .novel-grid{
        grid-template-columns: repeat(3, 1fr) !important;
    }
	.novel-content-text h1{
		font-size:13px !important;
	}
	.novel-content-rating p{
		font-size:8px !important;
	}
    form{
        flex-direction: column;
    }
    .unique-carousel-item{
        padding:20px;
		gap:5px;
    }
	.form-group input[type="text"]{
		max-width:100% !important;
	}
    .trending-novel-card{
        padding:20px;
    }
    .rating-tag{
        font-size:15px;
    }
    .searchbar-container {
        width: 100%;
    }

    .button-group {
        gap: 5px;
        max-width: 100%;
        padding: 5px;
    }

    #genre-select{
        padding: 4px 2px 4px 2px;
        width:90px;
        font-size:1rem;
    }

    #rating-select{
        padding: 4px 2px 4px 2px;
        width:90px;
        font-size:1rem;
    }

    .searchbar-container .search-button {
        padding: 6px 12px;
        font-size: 1rem;
        left:85%;

    }
    .chapter-content-container {
        width: 100%;
        padding: 20px;
        box-sizing: border-box;
    }
    .nav-button{
        font-size:16px;

    }
	.controls{
		width:100%;
	}	
}
@media screen and (max-width: 500px) {
     .novel-content-text {
       padding:8px;
    }
    .novel-content-text h1{
       font-size:14px !important;
    }
    .novel-content-rating{
    border:1px solid #a78bfa;
}
.score-novel {
   
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
    font-size: 7px !important;
    padding: 3px;
}

	.lug-2{
    margin-bottom:280px;
}
    .novel-topcard{
        flex-direction: column;
    }
    .novel-grid{
        grid-template-columns: repeat(1, 1fr);
    }
    .latest-updates-grid{
        grid-template-columns: repeat(1, 1fr);
    }
    .novel-category{
        gap: 5px;
    }
    .novel-archive h1 {
        font-size: 2rem;
    }
	.novel-content-text h1{
		 width: 100px; /* Make sure it spans the container */
    white-space: nowrap !important; /* Prevent wrapping */
    overflow: hidden !important; /* Hide the overflow */
    text-overflow: ellipsis !important; /* Add ellipsis (...) for overflow text */
	}
    .novel-grid{
		
        margin-bottom: 50px;
		padding:5px !important;
		gap:10px !important;
		row-gap:12px !important;
/* 		 align-items: center !important; Vertical alignment */
      grid-template-columns: repeat(1, 1fr) !important;
    }
    .latest-content{
        background-color: white;
        border-radius: 10px;
    }
    .dark .latest-content{
        background-color: rgba(255, 255, 255, 0.2);      
    }
    .lc-content h1{
        font-size: 1.1rem;
    }
 
    .novel-thumbnail-2{
        width: 70%;
		margin:auto;
    }
	 .novel-thumbnail-2 img{
		   height:350px;
    }
    .novel-content-2{
        width: 100%;
    }
    .novel-category-tags-2{
        font-size: 0.8rem !important;
    }
	.novel-content-text h1{
		font-size:14px !important;
	}
	.novel-item{
/* 		max-width:97.5% !important; */
		width:100%;
	}
	.button-container button{
		padding: 5px 10px;
	}
    .latest-content-2{
        background-color:white;
        border-radius: 10px;
    }
    .dark .latest-content-2{
        background-color: rgba(255, 255, 255, 0.2); 
        border-radius: 10px;
    }
    .timestamp{
        bottom: 5px;
    }
	.chapter-points{
		display:none;
	}

	.chapter-points-mobile{
		display:block;
	}
	.mycred-table{
		font-size:10px !important;
	}
    /* Customization for Prebuilt component */
	/*     .navbar-header .site-branding-text{
        display: none !important;
    } */
    .footer-logo .site-title-footer a{
        font-size: 1.4rem !important;
    }
    .footer-logo .site-description-footer {
        font-size: 0.8rem !important;
    }
	.latest-release{
		max-width:100% !important;
	}
	.lastest-release-posts{
	
	grid-template-columns: repeat(1, 1fr) !important;
	gap:10px;
}
	.latest-release-post img{
	width:25% !important;
	height:125px !important;
}
	.last-release-content{
	font-size:12px;
}
	.view-container{
		max-width:100% !important;
	}
	.ippocopy{
	flex-wrap:wrap !important;
}
.view-post img{
	  max-width:100% !important;
		height:100px;
	width: 20%;
/*   height: 100%; */
  object-fit: cover; 
		
	}
	.last-release-content h6{
		font-size:14px !important;
	}
	.last-updated{
		gap:5px;
	}
	.chp{
		padding:1px 8px 1px !important;
		border-radius:10px;
	}
	.chp:hover{
		transform:scale(1.02);
	}
	.latest-release-post img{
		height:145px !important;
	}
}
@media screen and (max-width: 350px) {
	.novel-item{
		max-width:95% !important;
	}
	.novel-content-text h1{
		font-size:10px !important;
	}
	.novel-content-text p{
		font-size:8px !important;
	}
}

/* For Chapter Page "Content Inside This" */

blockquote {
  background: none !important;
  border-left: 4px solid #ccc !important;
  border-radius: 1 !important;
  padding: 0.5em 1em !important;
  font-style: italic !important;
  quotes: none !important;
  color: inherit !important;
}

blockquote::before,
blockquote::after {
  content: none !important;
  border-radius: 1 !important;
}