/* --- General & Reset --- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: #000; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; overflow: hidden; height: 100%; }
::selection { background-color: #b30000; color: white; }

/* Age Gate Styles */
.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10001;
    text-align: center;
    color: white;
    padding: 20px;
}
.age-gate-content { display: flex; flex-direction: column; align-items: center; gap: 15px; }
.age-gate-content button { margin-top: 10px; padding: 12px 24px; font-size: 16px; background-color: #b30000; color: #fff; border: none; border-radius: 6px; cursor: pointer; transition: background-color 0.2s; }
.legal-links { font-size: 14px; color: #ccc; }
.legal-links a { color: #fff; text-decoration: underline; }

/* --- MODERN MENU STYLES (BUTTON MOVED TO THE RIGHT) --- */
.menu-button { 
    position: fixed; 
    top: 15px; 
    right: 15px; /* Changed from 'left' to 'right' */
    z-index: 101; 
    color: white; 
    background: rgba(0,0,0,0.3); 
    border-radius: 50%; 
    border: none; 
    width: 50px; 
    height: 50px; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    font-size: 20px; 
    cursor: pointer;
    transition: transform 0.2s;
}
.menu-button:hover {
    transform: scale(1.1);
}

#sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

#sidebar.active {
    opacity: 1;
    pointer-events: auto;
}

.nav-header {
    position: absolute;
    top: 0;
    right: 0;
    padding: 15px;
}

#sidebar .close-btn {
    font-size: 40px;
    color: #aaa;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s, transform 0.2s;
}
#sidebar .close-btn:hover {
    color: #fff;
    transform: rotate(90deg);
}

.nav-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.nav-logo {
    max-width: 180px;
    margin-bottom: 40px;
}

.nav-content a {
    color: #ccc;
    text-decoration: none;
    font-size: 22px;
    padding: 15px 30px;
    transition: color 0.2s, transform 0.2s;
}

.nav-content a:hover {
    color: #fff;
    transform: scale(1.1);
}

/* --- MAIN LAYOUT (MOBILE-FIRST) --- */
.feed-logo { position: fixed; top: 25%; left: 15px; transform: translateY(-50%); z-index: 100; opacity: 0.6; pointer-events: none; }
.feed-logo img { height: 70px; width: auto; }
.feed-container { height: 100%; overflow-y: scroll; scroll-snap-type: y mandatory; }
.item-wrapper { scroll-snap-align: start; height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center; background: black; position: relative; padding: 0; }
.media-container { width: 100%; height: 100%; overflow: hidden; background: black; position: relative; display: flex; justify-content: center; align-items: center; }
video { width: 100%; height: 100%; background: black; border: 0; cursor: pointer; }
video.is-vertical { object-fit: cover; }
video.is-horizontal { object-fit: contain; }

/* --- BUTTONS AND PROGRESS BAR --- */
.button-stack { position: absolute; bottom: 80px; right: 10px; z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.icon-button { background: rgba(255, 255, 255, 0.2); color: white; border: none; border-radius: 50%; width: 42px; height: 42px; font-size: 18px; cursor: pointer; display: flex; justify-content: center; align-items: center; }
.like-button.liked .fa-heart { color: #ff3b3b; }
.like-count { color: white; text-shadow: 1px 1px 2px rgba(0,0,0,0.5); font-size: 12px; }
.like-container { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.progress-container { width: 100%; padding: 15px 10px; position: absolute; bottom: 0; z-index: 5; }
.progress-track { width: 100%; height: 3px; background-color: rgba(255, 255, 255, 0.4); position: relative; transition: height 0.2s ease; }
.progress-filled { height: 100%; width: 0; background-color: #fff; position: absolute; top: 0; left: 0; pointer-events: none; }
.progress-thumb { width: 14px; height: 14px; border-radius: 50%; background-color: #fff; position: absolute; top: 50%; left: 100%; transform: translate(-50%, -50%) scale(0); transition: transform 0.2s ease; }
.progress-container:hover .progress-track { height: 5px; }
.progress-container:hover .progress-thumb { transform: translate(-50%, -50%) scale(1); }

/* --- DESKTOP AND WIDER SCREEN STYLES --- */
@media (min-width: 768px) {
    .media-container {
        width: auto;
        height: 100%;
        max-height: 95vh;
        max-height: 900px;
        aspect-ratio: 9 / 16;
        border-radius: 20px;
        border: 3px solid #222;
    }
    .progress-container {
        max-width: 480px;
        padding-left: 0;
        padding-right: 0;
    }
}

/* Footer and SEO Block */
.site-footer { padding: 40px 20px; background-color: #0a0a0a; color: #555; text-align: center; }
.seo-block { max-width: 800px; margin: 0 auto 20px auto; }
.seo-block h1 { color: #eee; font-size: 22px; }
.seo-block p { color: #888; font-size: 15px; line-height: 1.6; }
.copyright { font-size: 12px; }

/* NoScript & Misc */
.no-script-warning { position: fixed; top: 0; left: 0; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: black; color: white; text-align: center; font-size: 1.2rem; padding: 2rem; }
button:focus-visible { outline: 2px solid #b30000; outline-offset: 2px; }

/* Ad Styles */
.eas6a97888e17 { position: fixed; bottom: 0; left: 0; width: 100%; z-index: 100; text-align: center; background-color: rgba(0, 0, 0, 0.5); }