.pagination {
    text-align: left; /* Align pagination to the left */
    margin-top: 20px;
}

.pagination a, 
.pagination span {
    color: yellow; /* Default pagination text color */
    font-size: 18px; /* Adjust font size */
    font-weight: bold; /* Make text bold */
    margin: 0 5px; /* Add spacing between numbers */
    text-decoration: none; /* Remove underline */
}

.pagination .current {
    color: white; /* Make the selected page number white */
}

.pagination a:hover {
    text-decoration: underline; /* Underline on hover */
}
















.site-title {
    font-size: 24px; /* Increase font size */
    font-weight: bold; /* Make it bold */
    color: #ffcc00; /* Bright color (change as needed) */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add a shadow for a stylish effect */
    text-decoration: none; /* Remove underline */
    display: inline-block;
    padding: 5px 10px;
    border-radius: 6px;
    background: linear-gradient(45deg, #ff5733, #ffcc00); /* Gradient background */
    transition: 0.3s ease-in-out;
}

.site-title:hover {
    transform: scale(1.1); /* Slight zoom effect on hover */
    background: linear-gradient(45deg, #ffcc00, #ff5733); /* Reverse gradient on hover */
}





/* MAIN Page Home Page Ensure movie grid is responsive and evenly spaced */


.movie-grid-container {
    max-width: 85%; /* Adds margin from screen ends */
    margin: 0 auto;
}
.movie-grid
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* Flexible grid */
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
}



/* Movie Card Styling */
.movie-card {
    background: #1c1c1c;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
}

/* Scale card on hover */
.movie-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Movie Poster */
.movie-poster {
    width: 100%; /* Ensure full width */
    height: 330px; /* Fixed height */
    object-fit: cover; /* Prevent distortion */
    border-radius: 12px 12px 0 0;
}

/* Movie Info Box */
.movie-info {
    padding: 12px;
    text-align: center;
    text-decoration: none
}

/* Movie Title */
.movie-title {
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 5px;
    text-decoration: none;
}
.movie-title a {
    text-decoration: none; /* Ensure no underline */
    
}

/* Movie Metadata */
.movie-meta {
    font-size: 14px;
    color: #bbb;
}

/* Rating Badge */
.rating-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 150, 0, 0.8);
    color: #fff;
    padding: 5px 8px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 6px;
}







/*//General Styles for single-movie.php */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #111;
    color: #fff;
    margin: 0;
    padding: 0;
}

/* Hero Section */
.movie-hero {
    position: relative;
    height: 80vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.movie-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 1));
}

.movie-hero-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 1100px;
    width: 100%;
    padding: 20px;
}

/* Movie Poster */
.movie-poster img {
    width: 250px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.8);
}

/* Movie Info */
.movie-info h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.movie-meta {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 10px;
}

.movie-rating {
    font-size: 18px;
    margin: 10px 0;
}

.movie-tagline {
    font-style: italic;
    opacity: 0.9;
}

/* Movie Overview */
.movie-container {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}

.movie-overview h2,
.movie-cast h2,
.movie-trailer h2,
.movie-screenshots h2 {
    font-size: 24px;
    border-bottom: 2px solid #ffcc00;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

/* Cast Grid */
.cast-grid {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.cast-card {
    width: 150px;
    background: #222;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.4);
}

.cast-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.actor-name {
    font-weight: bold;
    margin-top: 8px;
}

.character-name {
    font-size: 14px;
    opacity: 0.7;
}

/* Trailer Section */
.movie-trailer iframe {
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.8);
}

/* Screenshot Grid */
.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
}

.screenshot-grid img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.8);
}

/* Responsive */
@media (max-width: 768px) {
    .movie-hero-content {
        flex-direction: column;
        text-align: center;
    }

    .movie-poster img {
        width: 200px;
    }

    .cast-grid {
        flex-wrap: wrap;
        justify-content: center;
    }

    .cast-card {
        width: 120px;
    }
}

/* Movie Details Box */
.movie-container {
    max-width: 900px;
    margin: 20px auto;
    background: rgba(30, 30, 30, 0.9);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.movie-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffcc00;
    text-align: center;
    margin-bottom: 15px;
    text-decoration: none;
}
.movie-title a {
    text-decoration: none; /* Ensure no underline */
    
}

.movie-intro, .movie-container p {
    font-size: 16px;
    line-height: 1.6;
    color: #ddd;
    text-align: center; /*to align left the content of Intro part of sinle movie page */
}

.movie-container p strong {
    color: #fff;
}

.movie-container a {
    color: #ffcc00;
    text-decoration: none;
    font-weight: 600;
}

.movie-container a:hover {
    text-decoration: underline;
}

/* General Box Style */
.movie-box {
    max-width: 900px;
    margin: 20px auto;
    background: rgba(35, 35, 35, 0.95);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Headings */
.movie-box h2 {
    font-size: 24px;
    font-weight: 700;
    color: #ffcc00;
    margin-bottom: 15px;
    text-align: center;
}

/* Paragraph Styling */
.movie-box p {
    font-size: 16px;
    line-height: 1.6;
    color: #ddd;
    text-align: center;
}

/* Bold Text */
.movie-box p strong {
    color: #fff;
}

/* Movie Links */
.movie-box a {
    color: #ffcc00;
    text-decoration: none;
    font-weight: 600;
}

.movie-box a:hover {
    text-decoration: underline;
}

/* FAQ Section */
.faq-box p {
    text-align: left;
    padding: 5px 10px;
    /*border-left: 4px solid #ffcc00;*/
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 10px;
}






/* Table design in single-movie page*/


.movie-details-box {
    max-width: 900px;
    margin: 20px auto;
    background: rgba(30, 30, 30, 0.9);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
}


.movie-details {
    width: 100%;
    border-collapse: collapse;
}

.movie-details th, .movie-details td {
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.movie-details th {
    text-align: left;
    font-weight: bold;
    color: #ffd700;
}

.movie-details td {
    color: #fff;
}


.movie-details a.movie-link {
    color: #ffcc00;
    text-decoration: none;
    font-weight: 600;
}

.movie-details a.movie-link:hover {
    text-decoration: underline;
}


/* Movie Review */

.movie-review-container {
    max-width: 900px;
    margin: 20px auto;
    background: rgba(30, 30, 30, 0.9);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
}


    .movie-title {
        color: #ffcc00;
        font-size: 20px;
        font-weight: bold;
        text-decoration: none; /* Remove underline */
    }
    .movie-title a {
    text-decoration: none; /* Ensure no underline */
   }

    .highlight {
        color: #ffcc00;
        font-weight: bold;
    }

    .movie-meta a {
        color:#ffcc00;
        text-decoration: none;
        font-weight: bold;
    }

    .movie-meta a:hover {
        text-decoration: underline;
    }

    .icon {
        font-size: 18px;
        margin-right: 5px;
    }

    .rating {
        color: #FFD700;
        font-size: 20px;
    }

    .final-verdict {
        font-weight: bold;
        font-size: 20px;
        color: #ffcc00;
        margin-top: 15px;
    }






.movie-review-container {
    max-width: 900px;
    margin: 20px auto;
    background: rgba(30, 30, 30, 0.9);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
}





/* Header Styling */
/* Search Box Styling */
.search-box {
    width: 80%;  /* Increase width */
    max-width: 600px;  /* Keep it responsive */
    margin: 20px auto; /* Center it */
}

.search-box form {
    display: flex;
    align-items: center;
    background: #222; /* Dark grey background */
    padding: 8px;
    border-radius: 30px; /* Rounder edges */
    border: 1px solid rgba(255, 255, 255, 0.2); /* Subtle border */
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.1); /* Light glow */
    width: 100%;
}

.search-box input {
    flex: 1;
    border: none;
    background: transparent;
    color: #fff;
    outline: none;
    padding: 10px 15px;
    font-size: 16px;
    border-radius: 30px;
}

.search-box button {
    background: #ff9800;
    border: none;
    color: #fff;
    padding: 10px 12px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s ease-in-out;
    margin-left: -40px; /* Fix alignment */
}

.search-box button:hover {
    background: #e68900;
}

.search-results {
    position: absolute;
    background: #333;
    color: #fff;
    width: 100%;
    max-width: 400px;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 10px;
    color: yellow;
    text-decoration: none;
    background: #222;
    border-bottom: 1px solid #444;
}

.search-result-item img {
    width: 50px;
    height: 75px;
    margin-right: 10px;
    border-radius: 3px;
}

.search-result-item:hover {
    background: #444;
}




/* Genre & Language Buttons */
.genre-list, .language-list {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 15px;
}

.genre-list a, .language-list a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 15px;
    background: #333;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

.genre-list a:hover, .language-list a:hover {
    background: #ff9800;
}

/* Latest Movies Section */
.latest-movies {
    padding: 20px;
}



.footer-disclaimer {
    background-color: #1e1e1e; /* Dark footer background */
    color: #ddd; /* Light text for readability */
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
    padding: 15px 20px;
    margin-top: 20px;
}

.footer-disclaimer p {
    margin-bottom: 10px;
}

.footer-disclaimer strong {
    color: #ffffff; /* White for emphasis */
}

.footer-links {
    text-align: center;
    margin-top: 20px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    margin: 0 10px;
    font-size: 14px;
}

.footer-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* for Movies reviews done by people*/

.review-container {
    
     max-width: 900px;
    margin: 20px auto;
    background: rgba(30, 30, 30, 0.9);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    
    
    /*background: #222; */
    /*padding: 20px;*/
    /*margin: 20px 0;*/
    /*border-radius: 12px;*/
    /*box-shadow: 0 2px 5px rgba(255, 255, 255, 0.1);*/
    /*text-align: center;*/
}

.review-heading {
    font-size: 22px;
    font-weight: bold;
    color: #FFC107; /* Yellow like Movie Rating title */
    margin-bottom: 15px;
}

.movie-reviews {
    margin-top: 10px;
    text-align: left;
}

.review-card {
    background: #333; /* Slightly lighter than container for contrast */
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(255, 255, 255, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.review-info {
    display: flex;
    flex-direction: column;
}

.review-author {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
}

.review-date {
    font-size: 12px;
    color: #ccc;
}

.review-rating {
    display: inline-block;
    background: #007bff;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 5px;
    font-size: 14px;
}

.review-text {
    margin-top: 10px;
    color: #ddd;
}

.read-more {
    color: #007bff;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
}
.read-more:hover {
    text-decoration: underline;
}

.no-reviews {
    color: #bbb;
    text-align: center;
    font-size: 16px;
}





/* Streaming Links List for netflix, amazon etc  in index.php . This is the only CSS for content that was written below list of movies in index.php*/
.streaming-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

/* Individual Streaming Platform Links */
.streaming-links li {
    display: inline-block;
}
.streaming-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background-color: #222;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 25px;
    transition: 0.3s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}



/*for advertisment banner*/


.header-affiliate-banner {
  text-align: center;
  background-color: #fff;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}

.header-affiliate-banner img {
  max-width: 100%;
  height: auto;
}

body {
    background-color: #f9f9f9;
    color: #222;
}

/* Movie Card Light Background */
.movie-card {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.movie-info {
    color: #333;
}

.movie-title {
    color: #333;
}
.movie-title a {
    color: #333;
}

/* Rating Badge */
.rating-badge {
    background: #4caf50;
    color: #fff;
}

/* Search Box Light */
.search-box form {
    background: #fff;
    border: 1px solid #ccc;
    box-shadow: none;
}

.search-box input {
    color: #333;
}

.search-box button {
    background: #ff9800;
}

/* Genre & Language Buttons */
.genre-list a, .language-list a {
    background: #e0e0e0;
    color: #222;
}
.genre-list a:hover, .language-list a:hover {
    background: #ffd54f;
}

/* Pagination */
.pagination a, 
.pagination span {
    color: #333;
}
.pagination .current {
    color: #ff9800;
}

/* Footer */
.footer-disclaimer {
    background-color: #f1f1f1;
    color: #333;
}
.footer-links a {
    color: #333;
}
.footer-links a:hover {
    color: #000;
}






/* Movie title */
.movie-title {
    color: #111 !important;
    font-weight: bold;
    text-align: center;
}

.movie-title a {
    color: #111 !important;
    text-decoration: none;
}

.movie-title a:hover {
    text-decoration: underline;
    color: #000;
}

/* Movie release date */
.release-date {
    color: #555 !important;
    font-size: 14px;
    display: block;
    text-align: center;
    text-decoration: none;
}

/* Optional hover effect */
.release-date:hover {
    color: #000;
}


.movie-title,
.movie-meta {
    color: #111 !important;
    text-align: center;
    text-decoration: none;
}

/* Remove underline from links inside .movie-link */
.movie-link {
    text-decoration: none !important;
}

.movie-link:hover {
    text-decoration: none !important;
}

/* Optional: Make title bold and improve spacing */
.movie-title {
    font-weight: bold;
    margin-top: 10px;
}

.movie-meta {
    font-size: 14px;
    color: #666;
    margin-top: 4px;
}



.movie-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 60px 20px;
    color: #111;
}

.movie-hero .light-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.6); /* Light overlay */
    z-index: 1;
}

.movie-hero-content {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 30px;
    z-index: 2;
    max-width: 1100px;
    margin: auto;
}

.movie-poster img {
    width: 250px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.movie-info {
    color: #111;
    max-width: 700px;
}

.movie-info h1 {
    margin-bottom: 10px;
    font-size: 32px;
    color: #111;
}

.movie-meta span {
    margin-right: 15px;
    font-size: 14px;
    color: #444;
}

.movie-rating span {
    margin-right: 10px;
    font-size: 16px;
    font-weight: bold;
    color: #000;
}

.movie-tagline {
    font-style: italic;
    color: #333;
    margin-top: 20px;
}



.movie-container {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.movie-title {
    font-size: 24px;
    font-weight: bold;
    color: #111;
    margin-bottom: 25px;
    text-align: center;
    border-bottom: none;
}

/* Cast Grid */
.cast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 20px;
}

/* Cast Cards */
.cast-card {
    text-align: center;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}

.cast-card:hover {
    transform: translateY(-5px);
}

.cast-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Cast Info Text */
.cast-info {
    margin-top: 10px;
}

.actor-name a {
    display: inline-block;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: none !important;
    box-shadow: none !important;
}

.actor-name a:hover {
    color: #0073e6;
}

.character-name {
    font-size: 14px;
    color: #666;
    margin-top: 4px;
}











.movie-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.movie-overview {
    padding: 10px;
}

.movie-title {
    font-size: 26px;
    font-weight: 600;
    color: #111;
    margin-bottom: 20px;
    text-align: center;
}

.movie-overview p {
    font-size: 17px;
    color: #333;
    line-height: 1.8;
    text-align: justify;
    margin: 0;
}

.movie-overview p::first-letter {
    font-size: 120%;
    font-weight: bold;
    color: #0073e6;
}










.movie-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.cast-scroll-wrapper {
    overflow-x: auto;
    padding-bottom: 10px;
}

.cast-grid {
    display: flex;
    gap: 16px;
    scroll-snap-type: x mandatory;
    padding-bottom: 5px;
}

.cast-grid::-webkit-scrollbar {
    height: 6px;
}
.cast-grid::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 5px;
}

.cast-card {
    flex: 0 0 auto;
    width: 120px;
    scroll-snap-align: start;
    background: #f9f9f9;
    border-radius: 10px;
    padding: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    text-align: center;
}

.cast-card img {
    width: 100%;
    border-radius: 6px;
}


.actor-name a {
    font-size: 14px;
    font-weight: 700; /* slightly bolder */
    color: #111; /* even darker text */
     text-decoration: none;
}

.character-name {
    font-size: 13px !important;
    color: #111 !important;
    font-weight: 600 !important;
    font-style: italic; /* optional */
}


.movie-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.movie-trailer {
    margin-top: 20px;
}

.movie-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #222;
}

.movie-trailer iframe {
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}



.movie-screenshots {
    margin-top: 40px;
}

.movie-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #222;
}

.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
}

.screenshot-grid img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.screenshot-grid img:hover {
    transform: scale(1.02);
}






.movie-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    line-height: 1.8;
    font-size: 16px;
    color: #333  !important;
}

.movie-container strong {
    color: #000 !important;
}

.movie-title {
    font-size: 28px;
    font-weight: 700;
    color: #111 !important;
    margin-bottom: 20px;
}

.movie-container a {
    color: #0066cc !important;
    text-decoration: none;
    font-weight: 500;
}

.movie-container a:hover {
    text-decoration: underline;
}



.movie-details-box {
    max-width: 1100px;
    margin: 40px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-size: 16px;
    color: #222; /* DARK TEXT */
}

.movie-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
}

.movie-details {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.movie-details th,
.movie-details td {
    padding: 12px 15px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid #ddd;
    color: #222;
}

.movie-details th {
    background-color: #f7f7f7;
    color: #000;
    width: 200px;
    font-weight: 600;
}

.movie-details td a {
    color: #0073aa;
    text-decoration: none;
    font-weight: 500;
}

.movie-details td a:hover {
    text-decoration: underline;
}





/* Movie Box styling */
.movie-box {
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    text-align: left; /* Ensures left-alignment */
    color: #222;
}

/* Override yellow link color and use blue */
.movie-box a {
    color: #0073aa !important; /* WordPress blue or change as needed */
    text-decoration: none;
    font-weight: 500;
}

/* Optional hover effect for links */
.movie-box a:hover {
    color: #005177 !important; /* Darker blue on hover */
    text-decoration: underline;
}

/* === Light Mode Overrides === */
body {
    background-color: #ffffff !important;
    color: #222222 !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

a {
    color: #0073aa !important;
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    text-decoration: underline;
    color: #005177;
}

strong {
    color: #000 !important;
}

.movie-container {
    padding: 30px;
    max-width: 960px;
    margin: 0 auto;
}

.movie-container h1.movie-title {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

.movie-container p {
    color: #333333;
    font-size: 16px;
    text-align: justify;
}

.movie-box {
    background-color: #f8f8f8;
    /*border-left: 4px solid #0073aa;*/
    padding: 20px;
    margin: 30px auto;
    max-width: 800px;
}

.movie-box h2 {
    font-size: 20px;
    font-weight: bold;
}

.pagination {
    text-align: left;
    margin-top: 20px;
}

.pagination a,
.pagination span {
    color: #0073aa !important;
    font-size: 16px;
    font-weight: bold;
    margin: 0 5px;
}

@media (max-width: 768px) {
    .movie-container {
        padding: 15px;
    }

    .movie-container h1.movie-title {
        font-size: 22px;
    }

    .movie-box {
        padding: 15px;
    }
}

/* === Movie Details Table Styling === */

.movie-details-box {
    max-width: 960px;
    margin: 40px auto;
    padding: 30px;
    background-color: #f9f9f9;
    /*border-left: 4px solid #0073aa;*/
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.movie-details-box h1.movie-title {
    font-size: 26px;
    margin-bottom: 20px;
    text-align: center;
    color: #222;
}

.movie-details {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
    background-color: #fff;
}

.movie-details th,
.movie-details td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    vertical-align: top;
}

.movie-details th {
    background-color: #f0f0f0;
    color: #333;
    width: 200px;
    font-weight: 600;
}

.movie-details td {
    color: #444;
}

.movie-details a {
    color: #0073aa;
    text-decoration: none;
}

.movie-details a:hover {
    text-decoration: underline;
}

/* Responsive: stack cells on mobile */
@media (max-width: 600px) {
    .movie-details-box {
        padding: 20px;
    }

    .movie-details th, .movie-details td {
        display: block;
        width: 100%;
        padding: 10px 8px;
        border: none;
    }

    .movie-details tr {
        margin-bottom: 15px;
        border-bottom: 1px solid #eee;
    }

    .movie-details th {
        background: none;
        font-weight: bold;
        color: #111;
    }
}

/* === Movie Rating Box Styling === */

.movie-box {
    max-width: 960px;
    margin: 40px auto;
    padding: 25px 30px;
    background-color: #fff;
    /*border-left: 4px solid #e67e22;*/
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.movie-box h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #222;
    text-align: center;
}

.movie-box p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    text-align: left;
}

.movie-box strong {
    font-weight: 600;
    color: #000;
}

.movie-box a {
    color: #0073aa;
    text-decoration: none;
}

.movie-box a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
    .movie-box {
        padding: 20px;
    }

    .movie-box h2 {
        font-size: 20px;
    }

    .movie-box p {
        font-size: 15px;
    }
}
/* === FAQ Box Styling === */

.faq-box {
    max-width: 960px;
    margin: 40px auto;
    padding: 25px 30px;
    background-color: #f9f9f9;
    /*border-left: 4px solid #3498db;*/
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.faq-box h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #222;
    text-align: center;
}

.faq-box p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin: 10px 0;
}

.faq-box strong {
    color: #000;
    font-weight: 600;
}

.faq-box a {
    color: #0073aa;
    text-decoration: none;
}

.faq-box a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
    .faq-box {
        padding: 20px;
    }

    .faq-box h2 {
        font-size: 20px;
    }

    .faq-box p {
        font-size: 15px;
    }
}

/* === Movie Review Styling === */

.movie-review-container {
    max-width: 960px;
    margin: 40px auto;
    padding: 30px;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    color: #222;
}

.movie-review-container h1 {
    font-size: 26px;
    margin-bottom: 20px;
    text-align: center;
    color: #1a1a1a;
}

.movie-review-container h3 {
    font-size: 20px;
    margin-top: 30px;
    color: #333;
    /*border-left: 4px solid #3498db;*/
    padding-left: 12px;
}

.movie-review-container p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #444;
}

.movie-review-container .movie-meta {
    color: #0073aa;
    font-weight: 500;
}

.movie-review-container .movie-meta a {
    color: #0073aa;
    text-decoration: none;
}

.movie-review-container .movie-meta a:hover {
    text-decoration: underline;
}

.movie-review-container .final-verdict {
    font-size: 18px;
    font-weight: bold;
    margin-top: 25px;
    color: #000;
}

/* Responsive for Mobile */
@media (max-width: 600px) {
    .movie-review-container {
        padding: 20px;
    }

    .movie-review-container h1 {
        font-size: 22px;
    }

    .movie-review-container h3 {
        font-size: 18px;
    }

    .movie-review-container p {
        font-size: 15px;
    }
}


/* === Light Mode: General Typography & Colors === */
body {
    background-color: #f9f9f9;
    color: #222;
    font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.7;
}

a {
    color: #0073aa;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

strong {
    font-weight: bold;
}

/* === Movie Box Styling (used in Rating Box & FAQ Box) === */
.movie-box {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 25px;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    max-width: 960px;
    color: #333;
}

.movie-box h2 {
    font-size: 22px;
    color: #111;
    margin-bottom: 20px;
    /*border-left: 4px solid #0073aa;*/
    padding-left: 12px;
}

.movie-box p {
    margin-bottom: 12px;
}

/* === Movie Review Container === */
.movie-review-container {
    max-width: 960px;
    margin: 40px auto;
    padding: 30px;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    color: #222;
}

.movie-review-container h1 {
    font-size: 26px;
    margin-bottom: 20px;
    text-align: center;
    color: #1a1a1a;
}

.movie-review-container h3 {
    font-size: 20px;
    margin-top: 30px;
    color: #333;
    /*border-left: 4px solid #3498db;*/
    padding-left: 12px;
}

.movie-review-container p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #444;
}

.movie-review-container .movie-meta {
    color: #0073aa;
    font-weight: 500;
}

.movie-review-container .movie-meta a {
    color: #0073aa;
    text-decoration: none;
}

.movie-review-container .movie-meta a:hover {
    text-decoration: underline;
}

.movie-review-container .final-verdict {
    font-size: 18px;
    font-weight: bold;
    margin-top: 25px;
    color: #000;
}

/* === Responsive Fix === */
@media (max-width: 768px) {
    .movie-box,
    .movie-review-container {
        padding: 20px;
    }

    .movie-review-container h1 {
        font-size: 22px;
    }

    .movie-review-container h3 {
        font-size: 18px;
    }

    .movie-review-container p {
        font-size: 15px;
    }
}
h2 {
  border-bottom: none !important;
}

h2 {
  border-left: none !important;
}


