/* porn.css - Video Gallery Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: #181818;
    color: #f5f5f5;
    min-height: 100vh;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: #181818;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f805a7;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo a {
    text-decoration: none;
    color: #f805a7;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #0bd0f3;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #fff;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #0bd0f3;
    font-size: 1.5rem;
    cursor: pointer;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 1rem;
}

.header {
    text-align: center;
    margin-top: 100px;
    margin-bottom: 30px;
    color: #fff;
}

.header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #f805a7, #0bd0f3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header p {
    color: #0bd0f3;
    font-size: 1rem;
}

.video-stats {
    text-align: center;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.video-count {
    color: #f805a7;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.aspect-stats {
    color: #666;
    font-size: 0.85rem;
}

.aspect-stats span {
    margin: 0 8px;
}

.aspect-stats .portrait { color: #e74c3c; }
.aspect-stats .square { color: #f39c12; }
.aspect-stats .wide { color: #2ecc71; }
.aspect-stats .ultrawide { color: #9b59b6; }

/* Masonry-style Mosaic Grid */
.video-grid {
    column-count: 4;
    column-gap: 12px;
    padding-bottom: 80px;
}

.video-container {
    break-inside: avoid;
    margin-bottom: 12px;
    background: #181818;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.video-container:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(11, 208, 243, 0.3);
    z-index: 10;
}

/* Aspect ratio indicator */
.video-container::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    z-index: 5;
    opacity: 0.8;
}

.video-container.aspect-portrait::before { background: #e74c3c; }
.video-container.aspect-square::before { background: #f39c12; }
.video-container.aspect-wide::before { background: #2ecc71; }
.video-container.aspect-ultrawide::before { background: #9b59b6; }
.video-container.aspect-unknown::before { background: #666; }

/* Video element - natural aspect ratio */
.video-container video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
}

/* Aspect ratio specific styling */
.video-container.aspect-portrait video {
    max-height: 500px;
    object-fit: contain;
}

.site-footer {
    background: #181818;
    padding: 2rem 0;
    margin-top: 4rem;
    border-top: 2px solid #f805a7;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    flex-wrap: wrap;
}

.footer-left p {
    color: #f5f5f5;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-right .footer-link {
    color: #0bd0f3;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-right .footer-link:hover {
    color: #fff;
}

/* Responsive column counts */
@media (max-width: 1400px) {
    .video-grid {
        column-count: 3;
    }
}

@media (max-width: 1024px) {
    .video-grid {
        column-count: 2;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #181818;
        padding: 1rem 0;
    }

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

    .nav-toggle {
        display: block;
    }

    .video-grid {
        column-count: 1;
    }

    .video-container.aspect-portrait video {
        max-height: 70vh;
    }

    .header h1 {
        font-size: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .aspect-stats {
        display: none;
    }
}

/* Filter buttons */
.filter-bar {
    text-align: center;
    margin-bottom: 20px;
}

.filter-btn {
    background: #333;
    border: none;
    color: #fff;
    padding: 8px 16px;
    margin: 4px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.filter-btn:hover, .filter-btn.active {
    background: #f805a7;
}

.filter-btn .dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 6px;
}

.manifest-info {
    text-align: center;
    font-size: 0.75rem;
    color: #444;
    margin-bottom: 10px;
}
