   body {
      background-color: #121212;
      color: #f5f5f5;
      min-height: 100vh;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      display: flex;
      flex-direction: column;
    }

    /* Navbar */
    .navbar {
      background: linear-gradient(to right, #8B0000, #B22222);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
      padding: 0;
      width: 100%;
      top: 0;
      z-index: 1030;
    }

    .navbar .container {
      max-width: 1200px;
    }

    .navbar-brand {
      color: #fff !important;
      font-weight: bold;
      font-size: 1.5rem;
      display: flex;
      align-items: center;
      text-decoration: none;
      padding-left: 1rem;
    }

    .navbar-brand i {
      color: #ffcf4d;
      margin-right: 10px;
    }

    .navbar-nav .nav-link,
    .dropdown-item {
      color: #fff !important;
      font-weight: 500;
      transition: color 0.3s;
      font-size: 1rem;
    }

    .navbar-nav .nav-link:hover,
    .dropdown-item:hover,
    .navbar-nav .nav-link.active {
      color: #ffcf4d !important;
    }

    .dropdown-menu {
      background: #1e1e1e;
      border: 1px solid #8B0000;
    }

    .dropdown-item i {
      color: #ffcf4d;
    }

    .dropdown-item.disabled {
      pointer-events: none;
      opacity: 0.6;
    }

    /* Padding top for body to avoid navbar overlap */
    main {
      padding-top: 0px;
      flex-grow: 1;
    }

    .hero {
      background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('https://www.cameronhouse.co.uk/content/uploads/2024/03/camern-house-cinema.jpg');
      background-size: cover;
      background-position: center;
      min-height: 400px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: #fff;
      margin-bottom: 2rem;
      padding: 3rem 1rem 2rem 1rem;
    }

    .hero h1 {
      font-size: 3rem;
      margin-bottom: 1rem;
    }

    .hero p {
      font-size: 1.2rem;
      max-width: 700px;
      margin-bottom: 2rem;
    }

    .btn {
      background: #ffcf4d;
      color: #121212;
      border: none;
      border-radius: 5px;
      font-weight: bold;
      padding: 0.8rem 1.5rem;
      transition: all 0.3s;
      text-decoration: none;
    }

    .btn:hover {
      background: #ffc123;
      color: #121212;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 2rem 1rem;
    }

    .section-title {
      font-size: 2rem;
      margin-bottom: 2rem;
      text-align: center;
      color: #ffcf4d;
    }

    .cinemas-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 2rem;
      margin-bottom: 3rem;
    }

    .cinema-card {
      background: #1e1e1e;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s;
    }

    .cinema-card:hover {
      transform: translateY(-5px);
    }

    .cinema-img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      display: block;
      background: #333;
    }

    .cinema-info {
      padding: 1.5rem;
    }

    .cinema-name {
      font-size: 1.3rem;
      margin-bottom: 0.5rem;
      color: #fff;
    }

    .cinema-location {
      color: #b8b8b8;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
    }

    .cinema-location i {
      margin-right: 0.5rem;
      color: #ffcf4d;
    }

    .cinema-facilities {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-bottom: 1rem;
    }

    .facility-tag {
      background: #4a4a4a;
      color: #fff;
      padding: 0.2rem 0.6rem;
      border-radius: 12px;
      font-size: 0.8rem;
    }

    .cinema-action {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .cinema-rating {
      color: #ffcf4d;
    }

    .cinema-rating i {
      margin-right: 0.3rem;
    }

    .view-btn {
      background: transparent;
      border: 1px solid #ffcf4d;
      color: #ffcf4d;
      padding: 0.4rem 0.8rem;
      border-radius: 4px;
      font-size: 0.9rem;
      transition: all 0.3s;
    }

    .view-btn:hover {
      background: #ffcf4d;
      color: #121212;
    }

    .movies-section {
      margin-bottom: 3rem;
    }

    .movies-filter {
      display: flex;
      justify-content: center;
      margin-bottom: 2rem;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .filter-btn {
      background: #1e1e1e;
      border: none;
      color: #b8b8b8;
      padding: 0.5rem 1.2rem;
      border-radius: 20px;
      cursor: pointer;
      transition: all 0.3s;
    }

    .filter-btn.active,
    .filter-btn:hover {
      background: #ffcf4d;
      color: #121212;
    }

    .movies-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 1.5rem;
    }

    .movie-card {
      background: #1e1e1e;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
      position: relative;
      transition: transform 0.3s, opacity 0.3s;
    }

    .movie-card:hover {
      transform: translateY(-5px);
    }

    .movie-poster-placeholder {
      height: 320px;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 10px;
      font-weight: bold;
      color: #fff;
      font-size: 1.1em;
    }

    .movie-poster {
      height: 320px;
      width: 100%;
      object-fit: cover;
      display: block;
      background: #333;
    }

    .movie-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(transparent, rgba(0, 0, 0, 0.95));
      padding: 1rem;
    }

    .movie-title {
      font-size: 1.1rem;
      margin-bottom: 0.3rem;
      color: #fff;
    }

    .movie-info {
      display: flex;
      justify-content: space-between;
      color: #b8b8b8;
      font-size: 0.9rem;
      margin-bottom: 0.5rem;
    }

    .movie-rating {
      color: #ffcf4d;
    }

    .movie-rating i {
      margin-right: 0.3rem;
      font-size: 0.9rem;
    }

    .movie-cinemas {
      font-size: 0.8em;
      color: #a0a0a0;
      margin-bottom: 0.8rem;
      line-height: 1.3;
      min-height: 1em;
    }

    .book-btn {
      display: block;
      width: 100%;
      padding: 0.6rem;
      background: #ffcf4d;
      color: #121212;
      border: none;
      border-radius: 4px;
      font-weight: bold;
      margin-top: 0.5rem;
      transition: all 0.3s;
      text-align: center;
      text-decoration: none;
    }

    .book-btn:hover {
      background: #ffc123;
      color: #121212;
    }

    .footer-cinema {
      background: #1a1a1a;
      color: #fff;
      padding: 2.5rem 1rem 1.5rem 1rem;
      margin-top: auto;
      border-top: 1px solid #8B4513;
      text-align: center;
    }

    .footer-cinema .footer-logo {
      font-size: 1.3rem;
      font-weight: bold;
      color: #ffcf4d;
      margin-bottom: 1rem;
    }

    .footer-cinema .footer-links {
      display: flex;
      justify-content: center;
      gap: 2rem;
      margin-bottom: 1.2rem;
      flex-wrap: wrap;
    }

    .footer-cinema .footer-link {
      color: #b8b8b8;
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-cinema .footer-link:hover {
      color: #ffcf4d;
    }

    .footer-cinema .social-links {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-bottom: 1.2rem;
    }

    .footer-cinema .social-link {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #2a2a2a;
      display: flex;
      justify-content: center;
      align-items: center;
      color: #fff;
      text-decoration: none;
      font-size: 1.1rem;
      transition: all 0.3s;
    }

    .footer-cinema .social-link:hover {
      background: #ffcf4d;
      color: #121212;
    }

    .footer-cinema .copyright {
      color: #666;
      font-size: 0.9rem;
      margin-top: 1rem;
    }

    @media (max-width: 768px) {
      .hero h1 {
        font-size: 2.2rem;
      }

      .hero p {
        font-size: 1rem;
      }

      .section-title {
        font-size: 1.7rem;
      }

      .cinema-card,
      .movie-card {
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
      }

      .movies-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
      }

      .movie-poster-placeholder,
      .movie-poster {
        height: 280px;
      }

      .footer-cinema .footer-links {
        flex-direction: column;
        gap: 0.5rem;
      }
    }