/*
Theme Name: Movie Theme
*/
body {
    background: #0f172a;
    color: #e5e7eb;
    font-family: Arial, sans-serif;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 15px;
}

/* CARD */
.card {
    background: #111827;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.card-title {
    padding: 10px;
    font-size: 14px;
}

/* MOVIE HERO */
.movie-hero {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.movie-hero img {
    width: 180px;
    border-radius: 10px;
}

.movie-meta h1 {
    margin: 0 0 10px;
}


.movie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

.movie-item {
    background: #111;
    padding: 10px;
    border-radius: 6px;
}

.download-row {
    display: flex;
    justify-content: space-between;
    background: #111;
    padding: 10px;
    margin-bottom: 8px;
    border-radius: 6px;
}

.download-btn {
    background: #22c55e;
    color: #fff;
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 4px;
}
.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.page-title {
    margin-bottom: 20px;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 18px;
}

/* CARD */
.card {
    background: #111827;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.6);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-title {
    padding: 12px;
    font-size: 15px;
    font-weight: bold;
    color: #e5e7eb;
}
.site-header {
    background: #fff;
    border-bottom: 1px solid #1f2937;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: #22c55e;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
}

.site-footer {
    margin-top: 40px;
    background: #020617;
    border-top: 1px solid #1f2937;
    text-align: center;
    padding: 20px 0;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: #22c55e;
}
.movie-list {
    background: #f2f2f2;
}

.movie-row {
    display: flex;
    padding: 12px;
    border-bottom: 1px solid #ddd;
}

.movie-thumb img {
    width: 80px;
    height: 100px;
    object-fit: cover;
    margin-right: 10px;
}

.movie-title {
    color: #0b79b7;
    font-size: 16px;
    text-decoration: none;
    font-weight: 500;
}

.movie-meta {
    font-size: 14px;
    margin-top: 3px;
}

.label {
    color: red;
    font-weight: 500;
}

.value {
    color: green;
}
.pagination {
    margin: 15px 0;
    text-align: center;
}

.page-link,
.page-current {
    display: inline-block;
    padding: 6px 10px;
    margin: 2px;
    border: 1px solid #ccc;
    text-decoration: none;
    color: #0b79b7;
}

.page-current {
    background: #0b79b7;
    color: #fff;
    border-color: #0b79b7;
}
.list-link.active {
    color: red;
    font-weight: bold;
}
/* LIST UI (Filmyzilla style) */
.list-container {
    background: #f2f2f2;
    border-radius: 4px;
    overflow: hidden;
}

.list-item {
    display: flex;
    align-items: center;
    padding: 14px 12px;
    border-bottom: 1px solid #ddd;
    font-size: 18px;
}

.list-item:last-child {
    border-bottom: none;
}

.folder-icon {
    margin-right: 10px;
    font-size: 20px;
}

.list-link {
    color: #0b79b7;
    text-decoration: none;
    font-weight: 500;
}

.list-link:hover {
    color: red;
}
.breadcrumb {
    margin: 10px 0;
    font-size: 14px;
    color: #fff;
}
.quality-heading {
    background: #e5e5e5;
    padding: 8px 10px;
    font-weight: bold;
    margin-top: 12px;
    border-left: 4px solid #999;
    color: red;
}

.file-row {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    background: #f9f9f9;
    font-size: 16px;
}

.file-row:last-child {
    border-bottom: none;
}

.arrow {
    color: maroon;
    margin-right: 6px;
    font-weight: bold;
}

.file-link {
    color: #0b79b7;
    text-decoration: none;
}

.file-link:hover {
    color: red;
}
.site-header {
    background: #fff;
    border-bottom: 1px solid #1f2937;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: center; /* center logo */
    padding: 10px 0;
}

.logo img {
    width: 320px;   /* responsive size */
    height: auto;
}
@media (max-width: 600px) {
    .logo img {
        width: 260px;
    }
}
.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap; /* allows stacking on mobile */
}


.search-form {
    display: flex;
    gap: 5px;
}

.search-form input {
    padding: 6px 10px;
    border-radius: 4px;
    border: none;
    width: 200px;
}

.search-form button {
    background: #22c55e;
    border: none;
    padding: 6px 10px;
    border-radius: 4px;
    cursor: pointer;
}

@media (max-width: 600px) {

    .header-flex {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .search-form {
        width: 100%;
        justify-content: center;
    }

    .search-form input {
        width: 70%;
    }
}





