<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    /* Define color variables for easy customization */
    --primary-lavender: #ffffff;
    --light-lavender: #4d17a5;
    --soft-white: #904ef3;
    --accent-purple: #ffffff;
    --text-color: #4f066c;
}


/* Main Container */
.main-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    margin-top: 10px;
}
/* Search Header Section */
.search-header {
    background: linear-gradient(135deg, #ffffff, #ffffff);
    padding: 30px 10px;
    border-radius: 10px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center; /* Center-aligns child elements horizontally */
    align-items: center; /* Center-aligns child elements vertically (if applicable) */
    flex-direction: column; /* Stack child elements vertically */
}

/* Search Container */
.search-container {
    max-width: 900px;
    margin: 0 auto;
    width: 100%; /* Ensure it scales properly on smaller screens */
    padding: 0 15px; /* Add some padding for mobile responsiveness */
    box-sizing: border-box; /* Include padding in width calculation */
    text-align: center; /* Center-align text inside */
}

/* Search Header Title */
.search-container h1 {
    color: rgb(0, 0, 0);
    text-align: center;
    font-size: 2em; /* Adjust font size for smaller screens */
    width: 100%;
    margin-bottom: 10px;
    line-height: 1.2;
}

/* Search Form */
.search-form {
    width: 100%;
}


.hcategory-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(transparent, rgba(102, 51, 153, 0.8)); /* Purple gradient */
    border-radius: 0 0 8px 8px;
}

.hcategory-content h3 {
    color: white;
    font-size: 1.8rem; /* Larger font size */
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    margin: 0;
    padding: 5px 10px;
    text-align: center;
    position: relative;
    z-index: 2;
    letter-spacing: 0.5px; /* Added for better readability */
}

/* Add a subtle text outline for extra visibility */
.hcategory-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    background-size: cover;
    background-position: center;
    height: 180px;
    display: flex;
    align-items: flex-end;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.hcategory-card:hover {
    transform: translateY(-5px);
}
.search-input-group {
    display: flex;
    margin-bottom: 15px;
}

.search-input {
    flex: 1;
    padding: 15px 30px;
    border: none;
    border-radius: 25px 0 0 25px;
    font-size: 1.1em;
    background: white;
}

.search-button {
    position: relative;
    padding: 15px 30px;
    background: #e74c3c;
    left: -30px;
    border: none;
    border-radius: 0 25px 25px 0;
    color: white;
    cursor: pointer;
    transition: background 0.3s;
}

.search-button:hover {
    background: #c0392b;
}

/* Filters */
.filters-group {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.filter-select {
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    min-width: 150px;
}

.filter-select option {
    color: #333;
    background: white;
}

/* Categories Section */
.hcategories-section {
    margin: 40px 0;
}

.hcategories-section h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #2c3e50;
}

.hcategories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 4fr));
    gap: 20px;
}
@media (max-width: 768px) { /* Adjust for small screens */
    .hcategories-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); /* Shrink items */
        gap: 10px; /* Reduce spacing for smaller devices */
    }

    .hcategory-card {
        width: 100%; /* Allow the grid to adjust the width */
        height: 100px; /* Slightly smaller height for phones */
    }
}

.back-to-categories {
    color: #3498db;
    text-decoration: none;
    margin-bottom: 0.9rem;

}


.hcategory-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hcategory-content {
    padding: 20px;
    text-align: center;
}

.hcategory-icon {
    font-size: 2em;
    color: #3498db;
    margin-bottom: 15px;
}

.hcategory-content h3 {
    margin: 5px 0;
    font-size: 0.8em;
    color: #000000;
}

.novel-count {
    color: #7f8c8d;
    font-size: 0.9em;
}
/* Main styles remain the same until the results section */

/* Results Section */
.results-section {
    margin-top: 40px;
}

.results-section h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #2c3e50;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 20px;
}

.searchnovel-card {
    background: white;
    border-radius: 0px;
    overflow: hidden;
    display: flex;
    height: 180px; /* Fixed height for consistency */
}

.searchnovel-cover, .search-cover-placeholder {
    width: 120px; /* Reduced fixed width */
    min-width: 120px; /* Prevent shrinking */
    height: 180px;
    object-fit: cover;
    background: #f5f6fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b2bec3;
    font-size: 2em;
}

.searchnovel-info {
    flex: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.searchnovel-info h3 {
    margin: 0 0 8px 0;
    font-size: 1.0em;
    line-height: 1.4;
    overflow: hidden;
}

.searchnovel-info h3 a {
    color: #2c3e50;
    text-decoration: none;
}

.searchnovel-description {
    color: #7f8c8d;
    font-size: 0.9em;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

.novel-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: auto;
}

.category-tag, .status-tag {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8em;
    white-space: nowrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .searchnovel-card {
        height: 120px; /* Slightly smaller on mobile */
    }
    
    .searchnovel-cover, .search-cover-placeholder {
        width: 100px; /* Smaller cover on mobile */
        min-width: 100px;
        height: 150px;
    }
    
    .searchnovel-info h3 {
        font-size: 1.1em;
    }
    
    .searchnovel-description {
        -webkit-line-clamp: 2; /* Show fewer lines on mobile */
        font-size: 0.85em;
    }
}

@media (max-width: 480px) {
    .searchnovel-card {
        height: 130px; /* Even smaller on very small devices */
    }
    
    .searchnovel-cover, .search-cover-placeholder {
        width: 90px;
        min-width: 80px;
        height: 130px;
    }
    
    .searchnovel-info {
      
    }
    .searchnovel-info h3 {
        margin: 0 0 2px 0;
        font-size: 0.9em;
        white-space: nowrap;
    }
    .novel-meta {
        gap: 3px;
    }
    
    .category-tag, .status-tag {
       
        font-size: 0.75em;
    }
}

.status-tag {
    background: #f1f8e9;
    color: #689f38;
}

.status-tag.ongoing {
    background: #fff3e0;
    color: #f57c00;
}

.filled {
    color: gold;  /* Color for filled stars */
}

.empty {
    color: #ccc;  /* Color for empty stars */
}

/* Pagination */
.pagination {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.page-link {
    padding: 8px 15px;
    border-radius: 5px;
    background: white;
    color: #3498db;
    text-decoration: none;
    transition: background 0.3s;
}

.page-link.active {
    background: #3498db;
    color: white;
}

.page-link:hover {
    background: #f5f6fa;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.no-results i {
    font-size: 3em;
    color: #b2bec3;
    margin-bottom: 15px;
}

/* Reset global margin and padding for consistent layout */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Set the default font-family to override other styles */
body {
    padding-top: 80px;
    font-family: 'Arial', sans-serif; /* Use a system font or a fallback */
    background-color: #fff;
    overflow-y: auto; /* Ensures scrolling if content overflows */
    color: var(--text-color); /* Uses the defined text color */
}

/* Typography on White Background */
h1, .h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--text-color);
}

h2, .h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--text-color);
}

h3, .h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: var(--text-color);
}

h4, .h4 {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--text-color);
}

p, .body-text {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    color: var(--text-color);
}

/* Ensure light background overrides for sections */
.bg-dark,
.bg-gray,
.bg-alternate,
[class*="bg-"] {
    background-color: #ffffff !important;
}

/* Global link styles */
a {
    text-decoration: none;
    color: inherit; /* Links will inherit color from their parent */
}

a:hover,
a:focus {
    text-decoration: underline;
}

/* Remove dark mode preferences */
@media (prefers-color-scheme: dark) {
    body,
    section,
    .container,
    main,
    aside,
    .card,
    .box,
    .panel {
        background-color: #ffffff !important;
        color: var(--text-color) !important;
    }
}

/* Prevent overlapping with the navbar */
:target {
    scroll-margin-top: 80px;
}

/* Container Styles */
.container {
    max-width: 1200px; /* Limit the container width for larger screens */
    margin: 0 auto;
    padding: 0 1rem; /* Add spacing for better alignment */
}


/* Navbar Styles */
.navbar {
    width: 100%;
    position: fixed;
    top: 0;
    background: linear-gradient(135deg, var(--primary-lavender), var(--accent-purple));
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    z-index: 1000;
    color: var(--soft-white);
    padding: 0 10px;
    transition: all 0.1s ease;
}

.navbar-content {
    width: 100%;
    max-width: 1200px; /* Keep it consistent for large screens */
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
 /* Remove the emoji from the HTML and add it as a pseudo element */
  .brand-name::after {
    content: "";
    display: inline-block;
    width: 1.8rem;
    height: 1.8rem;
    margin-left: 0.4rem;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    filter: drop-shadow(2px 2px 2px rgba(106, 17, 203, 0.2));
  }
  
  /* Underline effect */
  .brand-name::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: 0.3rem;
    left: 0;
    background: #6a11cb; /* Solid purple for the underline */
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
    border-radius: 2px;
  }
  
  /* Hover effects */
  .brand-name:hover {
    transform: translateY(-2px);
    text-shadow: 3px 3px 6px rgba(106, 17, 203, 0.25);
  }
  
  .brand-name:hover::before {
    transform: scaleX(1);
    transform-origin: bottom left;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .brand-name {
      font-size: 1.8rem;
    }
    
    .brand-name::after {
      width: 1.5rem;
      height: 1.5rem;
    }
  }
  
  @media (max-width: 480px) {
    .brand-name {
      font-size: 1.6rem;
      padding: 0.4rem 0.6rem;
    }
    
    .brand-name::after {
      width: 1.3rem;
      height: 1.3rem;
    }
    
    .brand-name::before {
      height: 2px;
    }
  }

/* Search bar styles */
.search-wrapper {
    display: flex;
    align-items: center;
    max-width: 300px;
    flex-grow: 1;
    margin: 0 auto;
}

.search-input {
    width: 180px;
    padding: 5px 10px;
    border: 2px solid #bda7d4;
    border-radius: 25px;
    background-color: #ffffff;
    color: #333;
}

.search-button {
    padding: 5px 10px;
    background-color: #a47ad1;
    border: none;
    border-radius: 0 25px 25px 0;
    color: white;
}

/* Hamburger Icon */
.menu-toggle {
    color: var(--soft-white);
    font-size: 28px;
    cursor: pointer;
    max-width: 950px;
}

/* Sidebar Styles */
.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 320px;
    background: linear-gradient(135deg, var(--primary-lavender), var(--accent-purple));
    color: var(--text-color);
    overflow-y: auto;
    padding: 30px 20px;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    box-shadow: -10px 0 20px rgba(106, 17, 203, 0.1);
}

.sidebar.show-sidebar {
    transform: translateX(0);
}

.sidebar .close-btn {
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 32px;
    color: var(--light-lavender);
    cursor: pointer;
    transition: color 0.3s ease;
}

.sidebar .close-btn:hover {
    color: var(--soft-white);
}

.sidebar ul {
    margin-top: 20px;
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(106, 17, 203, 0.1);
    transition: background-color 0.3s ease;
}

.sidebar ul li a {
    color: var(--light-lavender);
    font-size: 16px;
    font-weight: 500;
    display: block;
    transition: color 0.3s ease, padding 0.3s ease;
}

.sidebar ul li a:hover {
    color: var(--soft-white);
    padding-left: 10px;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    body {
        padding-top: 60px;
    }

    .navbar {
        padding: 0 15px;
        height: 60px;
    }

    .navbar-content {
        padding: 0 10px;
    }

    .brand-name {
        font-size: 22px;
    }

    .menu-toggle {
        font-size: 24px;
    }

    .search-wrapper {
        max-width: 250px;
    }
}

@media (max-width: 600px) {
    html {
        font-size: 14px;
    }

    .navbar {
        height: 50px;
        padding: 0 10px;
    }

    .search-wrapper {
        max-width: 200px;
    }
}

@media (prefers-color-scheme: dark) {
    body,
    .container,
    .navbar,
    .sidebar,
    main {
        background-color: #1a1a1a;
        color: var(--soft-white);
    }
}


</pre></body></html>