/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

/* Hide scrollbars but keep functionality */
::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: transparent;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #e5e5e5;
    background-color: #0d0d0d;
    min-height: 100vh;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Banner Ad */
.top-banner-ad {
    position: relative;
    width: 100%;
    height: 120px;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
}

/* Header */
.header {
    background-color: #0d0d0d;
    border-bottom: 1px solid #1a1a1a;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #e5e5e5;
    font-size: 18px;
    font-weight: 600;
}



.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    color: #e5e5e5;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
    position: relative;
}

.nav a:hover {
    background-color: #1a1a1a;
    color: #e5e5e5;
}

/* Hero Section */
.hero {
    background-color: #0d0d0d;
    padding: 4rem 0;
    text-align: center;
}

.hero-title {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #e5e5e5;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #8e8ea0;
    max-width: 600px;
    margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
    background-color: #0d0d0d;
    padding: 1rem 0;
    border-bottom: 1px solid #1a1a1a;
}

.breadcrumb ol {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.breadcrumb li {
    color: #8e8ea0;
    font-size: 14px;
}

.breadcrumb li:not(:last-child)::after {
    content: '>';
    margin-left: 0.5rem;
    color: #8e8ea0;
}

.breadcrumb a {
    color: #e5e5e5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #ffffff;
}

/* Sections */
.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #e5e5e5;
    font-weight: 600;
}

/* Ad Banner Section */
.ad-banner-section {
    padding: 2rem 0;
    background-color: #0d0d0d;
}

.ad-banner-placeholder {
    height: 120px;
    background: rgba(255,255,255,0.03);
    border: 2px dashed rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8e8ea0;
    font-size: 0.9rem;
    position: relative;
}

.ad-banner-placeholder::after {
    content: 'Reklam Banner Alanı';
    opacity: 0.5;
}

.models-section {
    padding: 4rem 0;
    background-color: #0d0d0d;
}

/* Models Grid */
.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.model-card {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.model-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-4px);
}

.model-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.model-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.model-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.model-card:hover .model-image img {
    transform: scale(1.1);
}

.image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.05);
    color: #8e8ea0;
    gap: 0.5rem;
}

.image-placeholder i {
    font-size: 2rem;
    opacity: 0.6;
}

.model-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.model-card:hover .model-overlay {
    opacity: 1;
}

.image-count {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    color: #e5e5e5;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.image-count i {
    font-size: 0.8rem;
}

.model-info {
    padding: 1.5rem;
}

.model-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #e5e5e5;
    margin-bottom: 0.5rem;
}

.model-stats {
    color: #8e8ea0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.model-stats i {
    font-size: 0.8rem;
}

/* Gallery Page */
.gallery-hero {
    background-color: #0d0d0d;
    padding: 3rem 0;
    text-align: center;
    border-bottom: 1px solid #1a1a1a;
}

.gallery-title {
    font-size: 2rem;
    color: #e5e5e5;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.gallery-stats {
    color: #8e8ea0;
    font-size: 1.1rem;
}

.gallery-section {
    padding: 3rem 0;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.12);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.2);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: filter 0.3s ease;
}

.gallery-item:hover .gallery-image {
    filter: brightness(1.1);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(8px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255, 107, 107, 0.8);
}

#lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 5px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    width: 100%;
    justify-content: space-between;
    pointer-events: none;
}

.lightbox-nav button {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 50%;
    transition: background 0.3s ease;
    pointer-events: auto;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav button:hover {
    background: rgba(78, 205, 196, 0.8);
}

/* Pagination */
.pagination {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}

.pagination-info {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.pagination-links {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}



/* About Section */
.about-section {
    padding: 4rem 0;
    background-color: #0d0d0d;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #8e8ea0;
}

/* Footer */
.footer {
    background-color: #0d0d0d;
    padding: 2rem 0;
    border-top: 1px solid #1a1a1a;
    margin-top: auto;
}

.footer-simple {
    text-align: center;
}

.footer-simple p {
    color: #e5e5e5;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.btn-primary {
    background: linear-gradient(180deg, rgba(255,255,255,0.85), rgba(255,255,255,0.78));
    color: #0d0d0d;
    border: 1px solid rgba(255,255,255,0.9);
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* No Content States */
.no-models, .no-images {
    text-align: center;
    padding: 3rem;
    color: #8e8ea0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.no-models i, .no-images i {
    font-size: 3rem;
    opacity: 0.5;
}

.no-models p, .no-images p {
    font-size: 1.1rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-banner-ad {
        height: 80px;
    }
    
    .ad-banner-placeholder {
        height: 80px;
    }
    
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav ul {
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .models-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .gallery-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .pagination-links {
        gap: 0.25rem;
    }
    
    .pagination-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .lightbox-nav button {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .models-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .models-section, .gallery-section {
        padding: 2rem 0;
    }
    
    .breadcrumb ol {
        flex-wrap: wrap;
    }
}

/* Age Verification Modal */
.age-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(12px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.age-modal {
    background: rgba(13,13,13,0.9);
    backdrop-filter: blur(16px) saturate(120%);
    border-radius: 18px;
    padding: 2rem;
    max-width: 480px;
    width: 90%;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}

.age-modal-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #e5e5e5;
}

.age-modal-icon i {
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
}

.age-modal-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #e5e5e5;
    margin-bottom: 1rem;
}

.age-modal-text {
    font-size: 1rem;
    color: #8e8ea0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.age-modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.age-btn {
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.age-btn-yes {
    background: linear-gradient(180deg, rgba(255,255,255,0.85), rgba(255,255,255,0.78));
    color: #0d0d0d;
    border: 1px solid rgba(255,255,255,0.9);
}

.age-btn-yes:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.age-btn-no {
    background: rgba(255,255,255,0.06);
    color: #e5e5e5;
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(6px);
}

.age-btn-no:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-1px);
}

/* Telegram Modal */
.telegram-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.telegram-modal {
    background: rgba(13,13,13,0.9);
    backdrop-filter: blur(16px) saturate(120%);
    border-radius: 18px;
    padding: 2rem;
    max-width: 420px;
    width: 90%;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}

.telegram-modal-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #0088cc;
}

.telegram-modal-icon i {
    filter: drop-shadow(0 0 10px rgba(0, 136, 204, 0.3));
}

.telegram-modal-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #e5e5e5;
    margin-bottom: 1rem;
}

.telegram-modal-text {
    font-size: 1rem;
    color: #8e8ea0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.telegram-modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.telegram-btn {
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 120px;
}

.telegram-btn-join {
    background: linear-gradient(180deg, rgba(255,255,255,0.85), rgba(255,255,255,0.78));
    color: #0d0d0d;
    border: 1px solid rgba(255,255,255,0.9);
}

.telegram-btn-join:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.telegram-btn-later {
    background: rgba(255,255,255,0.06);
    color: #e5e5e5;
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(6px);
}

.telegram-btn-later:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-1px);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Color Fixes */
.pagination-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.06);
    color: #e5e5e5;
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.18);
    transition: all 0.3s ease;
    min-width: 40px;
    text-align: center;
    backdrop-filter: blur(6px);
}

.pagination-link:hover {
    background: rgba(255,255,255,0.12);
    color: #e5e5e5;
    border-color: rgba(255,255,255,0.28);
}

.pagination-current {
    background: linear-gradient(180deg, rgba(255,255,255,0.85), rgba(255,255,255,0.78));
    color: #0d0d0d;
    font-weight: 600;
    border-color: rgba(255,255,255,0.9);
}

.pagination-ellipsis {
    padding: 0.5rem;
    color: #8e8ea0;
}

/* Lightbox Navigation Buttons */
.lightbox-nav button {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    color: #e5e5e5;
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    pointer-events: auto;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.lightbox-nav button:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 2rem;
    color: #e5e5e5;
    cursor: pointer;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
}

/* Performance optimizations */
img {
    image-rendering: -webkit-optimize-contrast;
}

/* Dark mode preference support */
@media (prefers-color-scheme: dark) {
    /* Already using dark theme by default */
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
a:focus,
button:focus {
    outline: 2px solid rgba(255,255,255,0.5);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .pagination,
    .lightbox,
    .age-modal-overlay,
    .telegram-modal-overlay {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #8e8ea0;
    font-size: 0.9rem;
    font-weight: 500;
}

.stat-item i {
    color: #ffffff;
    font-size: 1rem;
}

/* Categories Navigation */
.categories-nav {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255,255,255,0.12);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.category-tab {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.18);
    color: #8e8ea0;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-tab:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.3);
    color: #e5e5e5;
    transform: translateY(-2px);
}

.category-tab.active {
    background: linear-gradient(180deg, rgba(255,255,255,0.85), rgba(255,255,255,0.78));
    border-color: rgba(255,255,255,0.9);
    color: #0d0d0d;
    transform: translateY(-2px);
}

.category-tab i {
    font-size: 1rem;
}

/* Content Sections */
.content-section {
    display: none;
    padding: 2rem 0;
}

.content-section.active {
    display: block;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.section-title {
    color: #e5e5e5;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-title i {
    color: #ffffff;
    font-size: 1.3rem;
}

.section-info {
    color: #8e8ea0;
    font-size: 0.9rem;
    font-weight: 500;
}

.view-all-btn {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.18);
    color: #e5e5e5;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.view-all-btn:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-1px);
}

/* Videos Grid - Updated to work with existing model grid */
.videos-section .videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.videos-section .video-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.videos-section .video-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.videos-section .video-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.videos-section .video-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
}

.videos-section .video-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.videos-section .video-card:hover .video-image {
    transform: scale(1.05);
}

.videos-section .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.videos-section .video-card:hover .video-overlay {
    opacity: 1;
}

.videos-section .play-button {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d0d0d;
    font-size: 1.5rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.videos-section .video-card:hover .play-button {
    transform: scale(1);
}

.videos-section .video-duration {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: rgba(0,0,0,0.8);
    color: #e5e5e5;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.videos-section .video-category {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: rgba(59, 130, 246, 0.8);
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.videos-section .video-info {
    padding: 1rem;
}

.videos-section .video-name {
    color: #e5e5e5;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.videos-section .video-stats {
    display: flex;
    justify-content: space-between;
    color: #8e8ea0;
    font-size: 0.8rem;
}

.videos-section .video-views,
.videos-section .video-date {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Models Section */
.models-section {
    background: rgba(255,255,255,0.01);
}

/* Related Videos (for izle.php page) */
.related-videos .videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.related-videos .video-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.related-videos .video-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-4px);
}

.related-videos .video-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.related-videos .video-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
}

.related-videos .video-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-videos .video-card:hover .video-image {
    transform: scale(1.05);
}

.related-videos .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.related-videos .video-card:hover .video-overlay {
    opacity: 1;
}

.related-videos .play-button {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d0d0d;
    font-size: 1.5rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.related-videos .video-card:hover .play-button {
    transform: scale(1);
}

.related-videos .video-views {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    background: rgba(0,0,0,0.8);
    color: #e5e5e5;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.related-videos .video-info {
    padding: 1rem;
}

.related-videos .video-name {
    color: #e5e5e5;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-videos .video-stats {
    color: #8e8ea0;
    font-size: 0.9rem;
    margin: 0;
}

/* No Content State */
.no-content {
    text-align: center;
    padding: 4rem 2rem;
    color: #8e8ea0;
}

.no-content i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #666;
}

.no-content h4 {
    color: #e5e5e5;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.no-content p {
    font-size: 0.9rem;
}

/* Additional responsive styles for new components */
@media (max-width: 768px) {
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-item {
        font-size: 0.8rem;
    }
    
    .category-tabs {
        gap: 0.5rem;
        padding: 0 1rem;
    }
    
    .category-tab {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .section-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .section-title {
        font-size: 1.2rem;
    }
    
    .videos-section .videos-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .videos-section .video-info {
        padding: 0.75rem;
    }
    
    .videos-section .video-name {
        font-size: 0.9rem;
    }
    
    .videos-section .video-stats {
        font-size: 0.75rem;
    }
    
    .related-videos .videos-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .related-videos .video-info {
        padding: 0.75rem;
    }
    
    .related-videos .video-name {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .category-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .category-tab {
        width: 200px;
        justify-content: center;
    }
    
    .videos-section .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .related-videos .videos-grid {
        grid-template-columns: 1fr;
    }
}
