/* 
   Toronites Super Scale 75% Layout
   This file forces the 100% zoom level to look like 75% zoom.
   It creates a higher density, premium look for large screens.
*/

html {
    font-size: 11.5px !important; /* Slightly below 12px for maximum "75% feel" */
    -webkit-text-size-adjust: 100%;
}

/* Base Body adjustments to maintain readability but compact */
body {
    line-height: 1.6 !important;
}

/* Expansion of Container Width */
@media (min-width: 992px) {
    .cont {
        max-width: 1380px !important;
    }
}

@media (min-width: 1200px) {
    .cont {
        max-width: 1580px !important;
    }
}

@media (min-width: 1600px) {
    .cont {
        max-width: 1880px !important; /* Dominates the wide screens */
    }
}

/* Correcting Banner/Slider Positioning - Refined for Full Visibility */
.post.home {
    padding-top: 8rem !important; /* Balanced for high density */
    padding-bottom: 7rem !important;
    min-height: 420px; /* Reduced for better aspect ratio */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.post.home .entry-header {
    margin-bottom: 0.8rem !important;
}

/* Premium Slider Aesthetics (AnimoHub Style - Final Match) */
.post.home .entry-title {
    font-size: 1.8rem !important; /* Shrunk to match reference */
    font-weight: 500 !important; /* Naruto style: Clean and thin */
    margin-bottom: 0.4rem !important;
    letter-spacing: normal !important;
}

.post.home .entry-meta {
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    margin-bottom: 0.8rem !important;
    opacity: 0.9;
}

.post.home .entry-content {
    font-size: 0.95rem !important;
    max-width: 48rem !important;
    line-height: 1.4 !important;
    margin-bottom: 1.5rem !important;
}

/* Compact Redesigned Pill Buttons */
.slider-btns {
    gap: 0.8rem !important;
    margin-top: 1.2rem !important;
}

.post.home .btn.watch-btn-red {
    background: #e50914 !important;
    color: #fff !important;
    padding: 0.5rem 1.6rem !important; /* Slower/Sleeker padding */
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
    border: none !important;
}

.post.home .btn.detail-btn-dark {
    background: rgba(0, 0, 0, 0.6) !important;
    color: #fff !important;
    padding: 0.5rem 1.6rem !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    backdrop-filter: blur(8px);
}

.post.home .btn:hover {
    transform: none !important; /* Avoid jumps on small scale */
    opacity: 0.9;
}

/* Perfect Background Image Clarity */
.post.home .bg {
    filter: none !important;
    background-size: cover !important;
    background-position: center 20% !important; /* Focuses on the face/main artwork */
    opacity: 1 !important;
}

.post.home .bg::after {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 15%, rgba(0, 0, 0, 0.1) 80%) !important;
    /* Very subtle side fade */
}

.post.home .bg::before {
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 2%, transparent 35%) !important;
}

/* Movie Card Grid Density - Further narrowed for compact look */
@media (min-width: 1200px) {
    /* 8 Movies per row on standard desktop screens instead of 7 */
    .cl5c, .rcl5c > * {
        flex: 0 0 calc(100%/8) !important;
        max-width: calc(100%/8) !important;
    }
}

@media (min-width: 1600px) {
    /* 10 Movies per row on large/4K screens instead of 8.5 */
    .cl5c, .rcl5c > * {
        flex: 0 0 calc(100%/10) !important;
        max-width: calc(100%/10) !important;
    }
}

/* Tighter Card Spacing */
.rw > * {
    padding-left: 0.4rem !important;
    padding-right: 0.4rem !important;
}

.rw {
    margin-left: -0.4rem !important;
    margin-right: -0.4rem !important;
}

/* Reducing Section vertical gaps */
.section {
    margin-bottom: 1.5rem !important;
}

.section-header {
    margin-bottom: 0.8rem !important;
    padding-bottom: 0.5rem !important;
}

/* Thumbnail quality improvements */
.post .post-thumbnail img {
    border-radius: 4px !important;
}

/* Compact Sidebar (Desktop Only) */
@media (min-width: 992px) {
    .main.dfx .sidebar {
        flex: 0 0 calc(280px) !important;
        max-width: calc(280px) !important;
    }

    .main.dfx .main-site {
        flex: 0 0 calc(100% - 280px - 2rem) !important;
        max-width: calc(100% - 280px - 2rem) !important;
    }
}
