/*
Theme Name: Simple Movie by Dk tecknozone
Theme URI: https://www.dktechnozone.in/search?q=simple+video
Author: Dhanjee rider
Author URI: https://t.me/dhanjeerider
Description: A fully responsive, beautiful WordPress theme for movies serieas with modern UI/UX
Version: 2.1
License: custum single domain
License URI: https://wbthemes.com/activation/
*/

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #141414;
    --bg-card: #1a1a1a;
    --bg-hover: #252525;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --text-muted: #808080;
    --accent-primary: #e50914;
    --accent-secondary: #ff6b6b;
    --border-color: #2a2a2a;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
}

/* ========================================
   GLOBAL RESET & BASE STYLES
   ======================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-behavior: smooth;
}

html:focus-within {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}


a {
    color: inherit;
    text-decoration: none;
	transition: var(--transition);max-width:100%;
}

a:hover {
    color: var(--accent-secondary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    margin: 0;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    transition: var(--transition);
    -webkit-appearance: button;
    text-transform: none;
}

button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
}

input,
select,
textarea {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.625rem 1rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.1);
}

input::placeholder,
textarea::placeholder {
    color: var(--text-muted);
    opacity: 1;
}

input[type="submit"],
input[type="button"],
button[type="submit"] {
    background: var(--accent-primary);
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

input[type="submit"]:hover,
input[type="button"]:hover,
button[type="submit"]:hover {
    background: var(--accent-secondary);
    transform: translateY(-2px);
}

input[type="checkbox"],
input[type="radio"] {
    width: auto;
    padding: 0;
    accent-color: var(--accent-primary);
}

select {
    padding-right: 2.5rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23fff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    vertical-align: middle;
}

pre {
    font-family: 'Courier New', Monaco, monospace;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 1rem;
    overflow-x: auto;
    overflow-y: auto;
    max-width: 100%;
    line-height: 1.5;
    color: var(--text-secondary);
}

code {
    font-family: 'Courier New', Monaco, monospace;
    background: var(--bg-secondary);
    color: var(--accent-secondary);
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-size: 0.9em;
}

pre code {
    background: transparent;
    padding: 0;
}

blockquote {
    border-left: 4px solid var(--accent-primary);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--text-secondary);
}

hr {
    border: 0;
    border-top: 1px solid var(--border-color);
    margin: 1.5rem 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: var(--bg-secondary);
}

table th,
table td {
    padding: 0.75rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

table th {
    background: var(--bg-card);
    color: var(--text-primary);
    font-weight: 600;
}

table tr:hover {
    background: var(--bg-hover);
}

ul,
ol {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

li {
    margin-bottom: 0.5rem;
}

figure {
    margin: 1.5rem 0;
}

figcaption {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    text-align: center;
}

iframe,
video {
    max-width: 100%;
    border-radius: var(--radius-sm);
}

abbr[title] {
    text-decoration: underline dotted;
    cursor: help;
}

mark {
    background-color: #fff3cd;
    color: #000;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
}

kbd {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 3px;
    padding: 0.2rem 0.4rem;
    font-family: monospace;
    font-size: 0.875em;
}

small {
    font-size: 0.875em;
}

sub,
sup {
    font-size: 0.75em;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

details {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 1rem;
    margin: 1rem 0;
}

summary {
    cursor: pointer;
    font-weight: 600;
    user-select: none;
}

summary:hover {
    color: var(--accent-primary);
}

label {
    display: inline-block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

fieldset {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 1rem;
    margin: 1rem 0;
}

legend {
    padding: 0 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.header {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, rgba(20, 20, 20, 0.95) 100%);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--border-color);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem;
    gap: 0.75rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.hamburger:hover {
    background: var(--bg-hover);
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 3px 0;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img,
.logo .logo-image {
    max-height: 45px;
    width: auto;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .logo img,
    .logo .logo-image {
        max-height: 35px;
    }
}

.logo:hover img,
.logo:hover .logo-image {
    transform: scale(1.05);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Main Navigation */
.nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.625rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--text-primary);
    background: var(--bg-hover);
}

.dropdown-icon {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.nav-item.has-submenu:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Submenu */
.submenu {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    list-style: none;
    padding: 0.5rem 0;
    min-width: 200px;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-item:hover > .submenu,
.side-nav-item:hover > .side-submenu {
    display: block;
}

.submenu li {
    padding: 0;
}

.submenu a {
    color: var(--text-secondary);
    text-decoration: none;
    display: block;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    transition: var(--transition);
}

.submenu a:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
    padding-left: 1.5rem;
}

/* Custom Scrollbar for Submenu */
.submenu::-webkit-scrollbar {
    width: 6px;
}

.submenu::-webkit-scrollbar-track {
    background: var(--bg-card);
}

.submenu::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 3px;
}

.submenu::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* Search Bar */
.search-bar {
    position: relative;
    max-width: 150px;
    min-width: 150px;
}

.searchform {
    position: relative;
    width: 100%;
}

.search-input {
    width: 100%;
    padding: 0.625rem 1rem 0.625rem 2.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 0.875rem;
    transition: var(--transition);
}

.search-input:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: var(--bg-hover);
    box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.1);
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-icon {
    position: absolute;
    left: 0.875rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    width: 18px;
    height: 18px;
    pointer-events: none;
}

.search-bar.focused .search-icon {
    color: var(--accent-primary);
}

/* Mobile search wrapper removed - single search box in header only */

/* ========================================
   MOBILE MENU & SIDE MENU
   ======================================== */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
    z-index: 999;
    animation: fadeIn 0.3s ease;
}

.side-menu {
    position: fixed;
    left: -100%;
    top: 0;
    height: 100%;
    width: 320px;
    max-width: 85vw;
    background: var(--bg-secondary);
    color: var(--text-primary);
    overflow-y: auto;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    border-right: 1px solid var(--border-color);
}

.side-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 10;
}

.close-menu {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.close-menu:hover {
    background: var(--bg-hover);
}

.close-menu svg {
    width: 22px;
    height: 22px;
}

.side-nav-list {
    list-style: none;
    margin: 0;
    padding: 1rem 0;
}

.side-nav-item {
    position: relative;
}

.side-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

.side-nav-link:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
    padding-left: 1.75rem;
}

.side-submenu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
    background: rgba(0, 0, 0, 0.3);
    border-left: 2px solid var(--accent-primary);
    margin-left: 1.5rem;
}

.side-submenu li {
    padding: 0;
}

.side-submenu a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
    transition: var(--transition);
}

.side-submenu a:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
    padding-left: 2rem;
}

/* ========================================
   HERO SLIDER SECTION - Thumbnail Slider
   ======================================== */
.hero-section {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    margin-top: 1rem;
    overflow: hidden;
}

.hero-slider {
    display: flex;
    gap: 1rem;
    width: 100%;
    position: relative;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.hero-slider::-webkit-scrollbar {
    display: none;
}

.hero-banner {
    position: relative;
    min-width: 122px;
    max-width: 122px;
    height: 180px;
    overflow: hidden;
    border-radius: 6px;
    transition: var(--transition);
    cursor: pointer;
    flex-shrink: 0;
    display: block;
    text-decoration: none;
}

.hero-banner:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-lg);
    z-index: 10;
}

.hero-banner.active {
    /* All thumbnails visible */
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.5) 60%, rgba(10, 10, 10, 0.3) 100%);
}

.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.5rem;
    z-index: 2;
}

.hero-title {
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero-description {
    display: none;
}

.btn {
    display: none; /* Hidden in thumbnail view */
}

.btn-primary {
    background: var(--accent-primary);
    color: var(--text-primary);
    box-shadow: 0 4px 12px rgba(229, 9, 20, 0.4);
}

.btn-primary:hover {
    background: var(--accent-secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 9, 20, 0.5);
}

/* Hero Navigation Buttons - Hidden in grid layout */
.hero-nav {
    display: none;
}

.hero-prev {
    left: 1.5rem;
}

.hero-next {
    right: 1.5rem;
}

.hero-nav svg {
    width: 24px;
    height: 24px;
}

/* Hero Dots Navigation - Hidden in grid layout */
.hero-dots {
    display: none;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--accent-primary);
    width: 30px;
    border-radius: 5px;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* ========================================
   NOTICE SECTION
   ======================================== */
.notice-section {
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.15), rgba(255, 107, 107, 0.15));
    border: 1px solid rgba(229, 9, 20, 0.3);
    border-left: 3px solid var(--accent-primary);
    color: var(--text-primary);
    padding: 0.75rem 1rem;
    margin: 1rem auto;
    border-radius: var(--radius-md);
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 1400px;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.notice-icon {
    flex-shrink: 0;
}

.notice-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent-primary);
}

.notice-text {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.notice-link {
    color: var(--accent-secondary);
    font-weight: 600;
    text-decoration: underline;
}

.notice-link:hover {
    color: var(--text-primary);
}

.notice-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.notice-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

.notice-close svg {
    width: 18px;
    height: 18px;
}

/* ========================================
   CONTENT SECTION & MOVIES GRID
   ======================================== */
.content-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
}

.section-title::before {
    content: '';
    width: 3px;
    height: 24px;
    background: var(--accent-primary);
    border-radius: 2px;
}

.movies-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1rem;
}

/* Poster Card */
.poster-card {
    background: var(--bg-card);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    cursor: pointer;
}

.poster-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
    z-index: 10;
}

.poster-card:hover .poster-quality {
    background: var(--accent-primary);
}

.poster-inner {
    position: relative;
    width: 100%;
}

.poster-image {
    position: relative;
    width: 100%;
    padding-top: 150%;
    overflow: hidden;
    background: var(--bg-hover);
}

.poster-card a {
    display: block;
}

.poster-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

.poster-card:hover .poster-image img {
    transform: scale(1.1);
}

.no-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.poster-quality {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    padding: 0.25rem 0.625rem;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.poster-info {
    padding: 0.5rem;
    background: var(--bg-card);
}

.poster-title {
    font-size: 0.875rem;
    line-height: 1.3;
    color: var(--text-primary);
    font-weight: 500;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ========================================
   PAGINATION
   ======================================== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
    gap: 0.5rem;
    margin-top: 1rem;
}

.page-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.page-btn:hover:not(.disabled) {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    transform: translateY(-2px);
}

.page-btn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.page-btn svg {
    width: 18px;
    height: 18px;
}

.page-numbers {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.page-num {
    color: var(--text-secondary);
    padding: 0.5rem 0.875rem;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    min-width: 40px;
    text-align: center;
}

.page-num:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

.page-num.active {
    background: var(--accent-primary);
    color: var(--text-primary);
}

/* ========================================
   SINGLE POST LAYOUT
   ======================================== */
.app-container {
    max-width: 1400px;
    margin: 0 auto;

}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    gap: 0.5rem;
}

.breadcrumb-current {
    color: var(--text-primary);
    max-width: 400px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .breadcrumb-current {
        max-width: 200px;
    }
}

.breadcrumb a {
    color: var(--text-secondary);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--accent-primary);
}

.breadcrumb-separator {
    color: var(--border-color);
    flex-shrink: 0;
}

/* Post Layout */
.post-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
}

.post-content {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

@media (max-width: 768px) {
    .post-content {
        padding: 1rem;
    }
}

.post-header .post-title {
    margin: 0 0 1rem 0;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
}

.post-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
   
}
.post-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-date svg {
    width: 16px;
    height: 16px;
}

.post-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;list-style:none;
}

.post-categories a {
    background: rgba(229, 9, 20, 0.15);
    color: var(--accent-secondary);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(229, 9, 20, 0.3);
    transition: var(--transition);
}

.post-categories a:hover {
    background: var(--accent-primary);
    color: var(--text-primary);
    border-color: var(--accent-primary);
}

/* Post Body Content */
.page-body {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .page-body {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

.page-body p {
    margin-bottom: 1rem;
}

.page-body h1,
.page-body h2,
.page-body h3,
.page-body h4,
.page-body h5,
.page-body h6 {
    color: var(--text-primary);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.page-body ul,
.page-body ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.page-body li {
    margin-bottom: 0.5rem;
}

.page-body a {
    color: var(--accent-secondary);
    text-decoration: underline;
}

.page-body a:hover {
    color: var(--accent-primary);
}

.page-body img {
    border-radius: var(--radius-md);
    margin: 1.5rem 0;
}

.page-body code {
    background: var(--bg-secondary);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    color: var(--accent-secondary);
}

.page-body pre {
    background: var(--bg-secondary);
    padding: 1rem;
    border-radius: var(--radius-md);
    overflow-x: auto;
    margin: 1.5rem 0;
    border: 1px solid var(--border-color);
}

.page-body blockquote {
    border-left: 4px solid var(--accent-primary);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--text-secondary);
}

/* Post Tags */
.post-tags {
    margin: 1.5rem 0;
    padding: 1rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.tags-label {
    font-weight: 600;
    color: var(--text-primary);
    margin-right: 0.5rem;
}

.post-tags a {
    display: inline-block;
    color: var(--text-secondary);
    background: var(--bg-secondary);
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    font-size: 0.875rem;
    margin: 0.25rem 0.25rem 0.25rem 0;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.post-tags a:hover {
    background: var(--accent-primary);
    color: var(--text-primary);
    border-color: var(--accent-primary);
}

.subscribe-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;padding: 4px 9px;
    background: linear-gradient(135deg, #0c9aff, rgba(27, 127, 204, .8));
    color: var(--text-primary);
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(27, 127, 204, .8);
    animation: bellPulse 2s ease-in-out infinite;
}

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 14px royalblue;
    animation: none;
}

.bell-icon {
    width: 17px;
    height: 17px;
    animation: bellRing 1s ease-in-out infinite;
}

.subscribe-btn:hover .bell-icon {
    animation: bellRingFast 0.5s ease-in-out infinite;
}

@keyframes bellPulse {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(27,127,204,.8);
    }
    50% {
        box-shadow: 0 4px 20px #0c9aff;
    }
}

@keyframes bellRing {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-10deg);
    }
    20%, 40% {
        transform: rotate(10deg);
    }
    50% {
        transform: rotate(0deg);
    }
}

@keyframes bellRingFast {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-15deg);
    }
    75% {
        transform: rotate(15deg);
    }
}

/* ========================================
   TELEGRAM CTA
   ======================================== */
.telegram-cta {
    display: flex;
	flex-wrap:wrap;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #0088cc, #0077b5);
    padding: .5rem;
    border-radius: 6px;
    color: var(--text-primary);
    margin: 1.5rem 0;
    box-shadow: 0 4px 16px rgba(0, 136, 204, 0.3);
    transition: var(--transition);
}

.telegram-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 136, 204, 0.4);
}

.telegram-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.telegram-content {
    flex: 1;
}

.telegram-title {
    font-weight: 700;
    font-size: 1rem;
    display: block;
    margin-bottom: 0.25rem;
}

.telegram-subtitle {
    font-size: 0.7rem;
    opacity: 0.9;
    display: block;
}

.telegram-btn {
    background: var(--text-primary);
    color: #0088cc;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.telegram-btn:hover {
    background: var(--accent-primary);
    color: var(--text-primary);
    transform: scale(1.05);
}

/* ========================================
   COMMENTS SECTION
   ======================================== */
.comments-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.comment-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comment {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
}

.comment-author {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.comment-meta {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.comment-content {
    color: var(--text-secondary);
    line-height: 1.6;
}

.comment-reply-link {
    color: var(--accent-secondary);
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 0.5rem;
    display: inline-block;
}

.comment-reply-link:hover {
    color: var(--accent-primary);
}

.comment-form {
    margin-top: 2rem;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.1);
}

.comment-form textarea {
    min-height: 120px;
    resize: vertical;
}

.comment-form input[type="submit"] {
    background: var(--accent-primary);
    color: var(--text-primary);
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.comment-form input[type="submit"]:hover {
    background: var(--accent-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(229, 9, 20, 0.3);
}

/* ========================================
   SIDEBAR
   ======================================== */
.post-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-widget {
    background: var(--bg-card);
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

.widget-title {
    margin: 0 0 0.75rem 0;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.widget-title::before {
    content: '';
    width: 3px;
    height: 20px;
    background: var(--accent-primary);
    border-radius: 2px;
}

.recent-posts,
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-post-item,
.category-list li {
    margin-bottom: 0.75rem;
}

.recent-post-item:last-child,
.category-list li:last-child {
    margin-bottom: 0;
}

.recent-post-item a,
.category-list a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    transition: var(--transition);
    line-height: 1.4;
}

.recent-post-item a:hover,
.category-list a:hover {
    color: var(--accent-primary);
    padding-left: 0.5rem;
}

/* Search Form in Sidebar */
.sidebar-widget .searchform {
    position: relative;
}

.sidebar-widget .search-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.9rem;
}

.sidebar-widget .search-input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.1);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--bg-secondary);
    color: var(--text-muted);
    border-top: 1px solid var(--border-color);
    margin-top: 3rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    text-align: center;
}

.footer-content p {
    margin: 0;
    font-size: 0.9rem;
}

.footer-content a {
    color: var(--accent-secondary);
    font-weight: 600;
    transition: var(--transition);
}

.footer-content a:hover {
    color: var(--accent-primary);
}

/* ========================================
   BACK TO TOP BUTTON
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--accent-primary);
    border: none;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent-secondary);
    transform: translateY(-4px);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

/* ========================================
   CONTENT-NONE (No Results)
   ======================================== */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
}

.no-results h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.no-results p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet (7 slides) */
@media (max-width: 1200px) {
    .movies-grid {
        grid-template-columns: repeat(7, 1fr);
        gap: 0.875rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .header-container {
        padding: 0.75rem 1rem;
    }
    
    .content-section {
        padding: 1.25rem;
    }
}

@media (max-width: 992px) {
    .post-layout {
        grid-template-columns: 1fr;
    }
    
    .post-sidebar {
        /* Keep sidebar below content on mobile */
    }
    
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-slider {
        gap: 0.75rem;
    }
    
    .hero-banner {
        min-width: 110px;
        max-width: 110px;
        height: 165px;
    }
    
    .hero-title {
        font-size: 0.75rem;
    }
}

/* Mobile (2 cards) */
@media (max-width: 768px) {
    .movies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.875rem;
    }
    /* Search bar remains visible on mobile */
    .search-bar {
        max-width: 150px;
        min-width: 120px;
    }
    
    .search-input {
        padding: 0.5rem 0.75rem 0.5rem 2rem;
        font-size: 0.8rem;
    }
    
    .search-icon {
        left: 0.5rem;
    }
    
    .hero-slider {
        gap: 0.5rem;
    }
    
    .hero-banner {
        min-width: 100px;
        max-width: 100px;
        height: 150px;
    }
    
    .hero-title {
        font-size: 0.7rem;
    }
    
    .hero-content {
        padding: 0.375rem;
    }
    
    .hero-nav {
        width: 40px;
        height: 40px;
    }
    
    .hero-prev {
        left: 0.75rem;
    }
    
    .hero-next {
        right: 0.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .content-section {
        padding: 1rem;
    }
    
    .app-container {
        padding: .31rem;
    }
    
    .post-content {
        padding: .5rem;
    }
    
    .post-header .post-title {
        font-size: 1.5rem;
    }
    
    .notice-section {
        align-items: flex-start;
        padding: 1rem;
    }
    
    .notice-close {
        position: absolute;
        top: 0.75rem;
        right: 0.75rem;
    }
    
    .telegram-cta {
    flex-direction: column;
        flex-wrap:wrap;
        text-align: center;
        padding: 1.25rem;
    }
    
    .pagination {
        flex-wrap: wrap;
        gap: 0.375rem;
    }
    
    .page-btn {
        width: 36px;
        height: 36px;
    }
    
    .page-num {
        padding: 0.375rem 0.625rem;
        min-width: 36px;
        font-size: 0.8rem;
    }
    
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0.5rem 0.75rem;
    }
    
    .logo img,
    .logo .logo-image {
        max-height: 32px;
    }
    
    .hero-slider {
        gap: 0.5rem;
    }
    
    .hero-banner {
        min-width: 90px;
        max-width: 90px;
        height: 135px;
    }
    
    .hero-title {
        font-size: 0.65rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .movies-grid {
        gap: 0.5rem;
    }
    
    .poster-quality {
        font-size: 0.65rem;
        padding: 0.2rem 0.5rem;
    }
    
    .poster-title {
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 1.25rem;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-center {
    text-align: center;
}

.text-muted {
    color: var(--text-muted);
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
    .header,
    .footer,
    .sidebar,
    .notice-section,
    .telegram-cta,
    .back-to-top,
    .hero-section,
    .pagination {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .post-content {
        border: none;
        box-shadow: none;
    }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
.pum-content {
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  margin: 0 !important;
}

.telegram-popup-box{
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  margin: 0 !important;
  z-index:22;
}

.telegram-icon {
    width: 62px;
  margin: 14px auto;}
.sidebar-widget  .wp-block-categories-list{
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    gap: 0px 7px;
list-style:none;
}
/* Base nav */
.nav-menu {
    position: relative;
}

.nav-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 18px;
}

/* Menu items */
.nav-menu .menu-item {
    position: relative;
}

.nav-menu .menu-item > a {
    display: block;
    padding: 10px 14px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

/* ---------- Sub Menu ---------- */
.nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #111;
    border-radius: 8px;
    padding: 8px 0;
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);

    /* hidden by default */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .25s ease;
    z-index: 999;
}

/* Show on hover */
.nav-menu .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Sub menu items */
.nav-menu .sub-menu li a {
    padding: 10px 16px;
    display: block;
    color: #ddd;
    white-space: nowrap;
}

.nav-menu .sub-menu li a:hover {
    background: #1f1f1f;
    color: #fff;
}

/* ---------- Arrow Indicator ---------- */
.nav-menu .menu-item-has-children > a::after {
    content: "▾";
    margin-left: 6px;
    font-size: 12px;
    opacity: .7;
}
.sticky{position:sticky;top:64px;}
.sidebar-widget{margin-bottom:15px;}


/* Made by DK technozone*/
.dbtn {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

/* Button Styling */
.btn,.sidebar-widget  .wp-block-categories-list li  {
    padding: 3px 8px;
    border-radius: 4px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    color: white;
    font-size: 11px;
    margin: 10px auto;
	animation: bump 1s infinite alternate;}
.sidebar-widget  .wp-block-categories-list li::before{
  content:'📁';}
  
/* Made by wbtheme.com */
.btn:hover,.sidebar-widget  .wp-block-categories-list li:hover {
    transition: 0.5s;
    filter: saturate(4);color:#fff;
    transform: translateY(-5px);
}

/* Color Variations */
.blue {
    background: linear-gradient(45deg, #000125, #0e00c7);
    box-shadow: 0px 6px 15px -2px #2b58ff;
}

.black{
    background: linear-gradient(45deg, red, #000);
    box-shadow: 0px 6px 15px -2px red;
}

.crimson {
    background: linear-gradient(45deg, crimson, #1c0032);
    box-shadow: 0px 6px 15px -2px crimson;
}

.green {
    background: linear-gradient(45deg, #00ff42, #000);
    box-shadow: 0px 6px 15px -2px green;
}

.violet,.sidebar-widget  .wp-block-categories-list li  {
    background: linear-gradient(45deg, #4100cd, #0e002d);
    box-shadow: 0px 6px 15px -2px #662bff;
}

.cyan {
    background: linear-gradient(45deg, cyan, #00251c);
    box-shadow: 0px 6px 15px -2px cyan;
}

/* Made by DK technozone  */
@keyframes bump {
    0% {
        filter: saturate(1);
        background-size: 100%;
    }
    100% {
        filter: saturate(2);   
        background-size: 140%;  
    }
}