/* NHentai Scraper Frontend CSS - Matching FreeHentaiStream.com Theme */

/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,600&display=swap");

/* Base Styles */
.nhentai-gallery-grid,
.nhentai-gallery-single,
.nhentai-featured-galleries,
.nhentai-search-form {
    font-family: "Open Sans", sans-serif;
    color: #efedec;
    background-color: #0b0b0b;
}

/* Gallery Grid Styles */
.nhentai-gallery-grid .row {
    margin: 0 -10px;
    display: flex;
    flex-wrap: wrap;
}

.nhentai-gallery-grid .row:before,
.nhentai-gallery-grid .row:after {
    content: '';
    display: table;
    clear: both;
}

.nhentai-gallery-grid .videobox {
    float: left;
    width: 33.3333%;
    padding: 0 10px;
    margin-bottom: 20px;
    height: 204.23px;
    min-width: 260px;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .nhentai-gallery-grid .videobox {
        width: 50%;
    }
}

@media (max-width: 480px) {
    .nhentai-gallery-grid .videobox {
        width: 100%;
    }
}

.nhentai-gallery-grid .videobox-body {
    position: relative;
    background-color: #131313;
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.nhentai-gallery-grid .videobox-body:hover {
    transform: translateY(-5px);
}

.nhentai-gallery-grid .videobox-body-img {
    margin-bottom: 5px;
    max-height: 150px;
    overflow: hidden;
    position: relative;
}

.nhentai-gallery-grid .videobox-body-img img {
    width: 100%;
    max-height: 100%;
    min-height: 178px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.nhentai-gallery-grid .videobox-body-img:hover img {
    transform: scale(1.05);
}

.nhentai-gallery-grid .videobox-body-img > a {
    display: block;
}

.nhentai-gallery-grid .videobox-body-desc {
    font-size: 13px;
    padding: 10px;
}

.nhentai-gallery-grid .videobox-body-desc .text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #efedec;
    width: calc(100% - 40px);
    height: 33px;
    overflow: hidden;
    margin-bottom: 5px;
}

.nhentai-gallery-grid .videobox-body-desc .text a {
    color: #efedec;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nhentai-gallery-grid .videobox-body-desc .text a:hover {
    color: #a85fb1;
}

.nhentai-gallery-grid .videobox-body-desc .date {
    display: block;
    color: #545454;
    font-size: 11px;
    margin-bottom: 5px;
}

.nhentai-gallery-grid .videobox-body-desc .btn {
    float: right;
    background-color: #a85fb1;
    color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    text-decoration: none;
    font-size: 12px;
    transition: background-color 0.3s ease;
}

.nhentai-gallery-grid .videobox-body-desc .btn:hover {
    background-color: #8a4a93;
}

/* Overlay Styles */
.nhentai-gallery-grid .videobox-body-top {
    background-color: rgba(0, 0, 0, 0.8);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 35px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
}

.nhentai-gallery-grid .view-block {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nhentai-gallery-grid .view-block li {
    margin-right: 15px;
    font-size: 10px;
    color: #fff;
    display: flex;
    align-items: center;
}

.nhentai-gallery-grid .view-block li i {
    margin-right: 3px;
}

.nhentai-gallery-grid .quality-block .quality {
    background-color: #a85fb1;
    color: #fff;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 600;
}

/* Single Gallery Styles */
.nhentai-gallery-single {
    background-color: #131313;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.nhentai-gallery-single .gallery-header {
    text-align: center;
    margin-bottom: 30px;
}

.nhentai-gallery-single .gallery-title {
    color: #efedec;
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
}

.nhentai-gallery-single .gallery-meta {
    color: #545454;
    font-size: 14px;
}

.nhentai-gallery-single .gallery-meta span {
    margin: 0 10px;
}

.nhentai-gallery-single .gallery-content {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .nhentai-gallery-single .gallery-content {
        flex-direction: column;
    }
}

.nhentai-gallery-single .gallery-thumbnail {
    flex: 0 0 300px;
}

.nhentai-gallery-single .gallery-thumbnail img {
    width: 100%;
    border-radius: 10px;
}

.nhentai-gallery-single .gallery-info {
    flex: 1;
}

.nhentai-gallery-single .gallery-actions {
    margin-bottom: 20px;
}

.nhentai-gallery-single .gallery-actions .btn {
    display: inline-block;
    padding: 12px 24px;
    margin-right: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nhentai-gallery-single .gallery-actions .btn-primary {
    background-color: #a85fb1;
    color: #fff;
}

.nhentai-gallery-single .gallery-actions .btn-primary:hover {
    background-color: #8a4a93;
}

.nhentai-gallery-single .gallery-actions .btn-secondary {
    background-color: #545454;
    color: #fff;
}

.nhentai-gallery-single .gallery-actions .btn-secondary:hover {
    background-color: #3a3a3a;
}

/* Tags Styles */
.nhentai-gallery-single .gallery-tags-container {
    background-color: #0b0b0b;
    padding: 15px;
    border-radius: 5px;
}

.nhentai-gallery-single .tag-group {
    margin-bottom: 10px;
}

.nhentai-gallery-single .tag-type {
    color: #a85fb1;
    font-weight: 600;
    margin-right: 10px;
}

.nhentai-gallery-single .tag {
    display: inline-block;
    background-color: #545454;
    color: #fff;
    padding: 3px 8px;
    margin-right: 5px;
    margin-bottom: 5px;
    border-radius: 3px;
    text-decoration: none;
    font-size: 12px;
    transition: background-color 0.3s ease;
}

.nhentai-gallery-single .tag:hover {
    background-color: #a85fb1;
}

/* Gallery Pages Grid */
.nhentai-gallery-single .gallery-pages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.nhentai-gallery-single .page-thumbnail {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.nhentai-gallery-single .page-thumbnail:hover {
    transform: scale(1.05);
}

.nhentai-gallery-single .page-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.nhentai-gallery-single .page-number {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 12px;
}

/* Search Form Styles */
.nhentai-search-form {
    margin-bottom: 30px;
}

.nhentai-search-form .search-input-group {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.nhentai-search-form .search-input {
    width: 100%;
    padding: 15px 60px 15px 20px;
    border: none;
    border-radius: 25px;
    background-color: #fcfaf9;
    color: #121212;
    font-size: 16px;
    outline: none;
}

.nhentai-search-form .search-submit {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background-color: #a85fb1;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.nhentai-search-form .search-submit:hover {
    background-color: #8a4a93;
}

/* Featured Galleries Styles */
.nhentai-featured-galleries {
    margin-bottom: 40px;
}

.nhentai-featured-galleries .section-title {
    color: #efedec;
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.nhentai-featured-galleries .featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.nhentai-featured-galleries .featured-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.nhentai-featured-galleries .featured-item:hover {
    transform: translateY(-5px);
}

.nhentai-featured-galleries .featured-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.nhentai-featured-galleries .featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #fff;
    padding: 20px;
}

.nhentai-featured-galleries .featured-overlay h3 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 600;
}

.nhentai-featured-galleries .featured-overlay .pages {
    font-size: 12px;
    color: #a85fb1;
}

/* Pagination Styles */
.nhentai-pagination {
    text-align: center;
    margin-top: 30px;
}

.nhentai-pagination .pagination {
    display: inline-flex;
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: #131313;
    border-radius: 5px;
    overflow: hidden;
}

.nhentai-pagination .pagination li {
    border-right: 1px solid #0b0b0b;
}

.nhentai-pagination .pagination li:last-child {
    border-right: none;
}

.nhentai-pagination .pagination li a,
.nhentai-pagination .pagination li span {
    display: block;
    padding: 10px 15px;
    color: #efedec;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.nhentai-pagination .pagination li a:hover {
    background-color: #a85fb1;
}

.nhentai-pagination .pagination li.active span {
    background-color: #a85fb1;
    color: #fff;
}

/* Error and No Results Styles */
.nhentai-error,
.nhentai-no-results {
    text-align: center;
    padding: 40px 20px;
    background-color: #131313;
    border-radius: 10px;
    color: #efedec;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .nhentai-gallery-grid .videobox {
        width: 50%;
    }
}

@media (max-width: 768px) {
    .nhentai-gallery-grid .videobox {
        width: 100%;
        min-width: auto;
    }
    
    .nhentai-featured-galleries .featured-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

/* Loading Animation */
.nhentai-loading {
    text-align: center;
    padding: 40px;
}

.nhentai-loading::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 3px solid #545454;
    border-radius: 50%;
    border-top-color: #a85fb1;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Smooth Transitions */
* {
    transition: all 0.3s ease;
}

/* Focus States for Accessibility */
.nhentai-search-form .search-input:focus,
.nhentai-pagination .pagination li a:focus,
.nhentai-gallery-grid .videobox-body-desc .btn:focus {
    outline: 2px solid #a85fb1;
    outline-offset: 2px;
}

