/* Base styles for all devices */
      * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }
      
      /* Main body styling with gradient background */
      .fullbody {
        background: linear-gradient(to right, rgba(1, 1, 24, 0.897), rgba(0, 0, 0, 0.92));
        min-height: 100vh;
        font-family: Arial, sans-serif;
        color: white;
      }
      
      /* Logo styling in the navbar */
      .logo {
        color: rgb(216, 43, 43);
        font-size: 1.5rem;
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        margin-right: auto;
        padding: 0.5rem;
      }
      
      .logo span {
        color: rgb(131, 5, 5);
      }
      
      /* Main navigation bar */
      .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: black;
        position: sticky;
        top: 0;
        padding: 1rem;
        z-index: 1000;
        flex-wrap: wrap;
      }
      
      /* Navigation list styling */
      .nav-list {
        display: flex;
        list-style: none;
        gap: 1rem;
        padding: 0 1rem;
        flex-wrap: wrap;
      }
      
      .nav-list li a {
        text-decoration: none;
        color: white;
        font-family: Arial, Helvetica, sans-serif;
        font-weight: bold;
        transition: 0.4s ease-in-out;
        padding: 0.5rem;
        display: block;
      }
      
      .nav-list li a span {
        color: brown;
      }
      
      .nav-list li a:hover {
        color: #0b80d4;
        text-decoration: underline;
        border-radius: 4px;
      }
      
      /* Icon styling in navbar */
      .nav-icons {
        display: flex;
        gap: 1rem;
        padding: 0 1rem;
      }
      
      /* Hero section with featured movie */
      .home {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        color: white;
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        margin-bottom: 2rem;
        background-color: rgba(0, 0, 0, 0.847);
        padding: 2rem;
        text-align: center;
      }
      
      .main {
        background-image: url(../images/deadpool\ &\ wolverine.jpg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        min-height: 80vh;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem;
        position: relative;
      }
      
      .main::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
      }
      
      .head {
        font-size: clamp(2rem, 5vw, 4rem);
        text-shadow: 6px 6px 6px black;
        font-weight: bolder;
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        margin: 1rem 0;
        position: relative;
        z-index: 1;
      }
      
      .p1, .p2 {
        font-size: clamp(1rem, 2vw, 1.5rem);
        font-weight: lighter;
        margin: 1rem 0;
        max-width: 800px;
        position: relative;
        z-index: 1;
      }
      
      /* Button styling */
      .btn {
        width: 150px;
        height: 50px;
        background-color: rgba(216, 43, 43, 0.8);
        border-radius: 5px;
        color: white;
        font-weight: bold;
        border: none;
        margin: 1rem;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        z-index: 1;
      }
      
      .btn:hover {
        background-color: rgba(216, 43, 43, 1);
        transform: scale(1.05);
      }
      
      .btn a {
        color: white;
        text-decoration: none;
        display: block;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
      }
      
      /* Dropdown menu styling */
      .dropdown {
        position: relative;
        display: inline-block;
      }
      
      .dropdown-content {
        display: none;
        position: absolute;
        background-color: black;
        min-width: 200px;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        z-index: 1;
        border-radius: 5px;
      }
      
      .dropdown-content a {
        color: white;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        transition: 0.3s;
      }
      
      .dropdown-content a:hover {
        background-color: #333;
      }
      
      .dropdown:hover .dropdown-content {
        display: block;
      }
      
      /* Secondary navigation for booking */
      .navbar2 {
        display: flex;
        justify-content: center;
        align-items: center;
        background: linear-gradient(to right, brown, brown, white, rgba(255, 255, 255, 0.957), rgba(255, 255, 255, 0.943), rgba(255, 255, 255, 0.925), white);
        border-radius: 30px;
        margin: 1rem auto;
        padding: 1rem;
        max-width: 95%;
        flex-wrap: wrap;
      }
      
      .logo2 {
        color: rgba(247, 8, 8, 0.968);
        text-shadow: 3px 3px 3px black;
        font-size: 1.5rem;
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        margin: 0.5rem;
      }
      
      .btnn, .btnn1 {
        width: 150px;
        height: 50px;
        border-radius: 10px;
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        font-weight: bold;
        font-size: 1rem;
        margin: 0.5rem;
        cursor: pointer;
        transition: all 0.3s ease;
      }
      
      .btnn {
        background-color: white;
        color: black;
        box-shadow: 2px 2px 2px 2px black;
        border: none;
      }
      
      .btnn1 {
        background-color: white;
        color: black;
        box-shadow: 2px 2px 2px 2px white;
        border: 2px outset yellow;
      }
      
      .btnn:hover, .btnn1:hover {
        transform: scale(1.05);
      }
      
      /* Movie showtimes section */
      .section-title {
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        font-weight: bolder;
        font-size: clamp(1.5rem, 3vw, 2.5rem);
        color: white;
        margin: 1rem;
        text-align: center;
      }
      
      .section-subtitle {
        font-size: clamp(1rem, 2vw, 1.5rem);
        color: white;
        margin: 1rem;
        text-align: center;
      }
      
      /* Date selector scroll */
      .scroll-container {
        width: 100%;
        overflow-x: auto;
        white-space: nowrap;
        padding: 1rem;
        margin: 1rem 0;
      }
      
      .scroll-container a {
        display: inline-block;
        color: white;
        text-decoration: none;
        font-weight: bold;
        padding: 0.5rem 1rem;
        margin: 0 0.5rem;
        border-radius: 20px;
        transition: all 0.3s ease;
      }
      
      .scroll-container a:hover {
        background-color: rgba(216, 43, 43, 0.8);
      }
      
      /* Cinema location dropdown */
      select {
        width: 90%;
        max-width: 500px;
        height: 50px;
        border-radius: 15px;
        font-size: 1rem;
        font-weight: bold;
        background-color: black;
        color: white;
        box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.82);
        margin: 1rem auto;
        display: block;
        padding: 0 1rem;
        cursor: pointer;
        transition: 0.7s ease-in-out;
        border: 1px solid #444;
      }
      
      select:hover {
        color: brown;
        background-color: #111;
      }
      
      option {
        padding: 0.5rem;
      }
      
      /* Movie gallery grid */
      .movies-container {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 2rem;
        padding: 2rem;
        max-width: 1400px;
        margin: 0 auto;
      }
      
      .movie-card {
        background-color: black;
        border-radius: 20px;
        overflow: hidden;
        transition: transform 0.3s ease;
      }
      
      .movie-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 20px rgba(216, 43, 43, 0.3);
      }
      
      .movie-card img, .movie-card video {
        width: 100%;
        height: auto;
        display: block;
      }
      
      .movie-info {
        padding: 1rem;
      }
      
      .movie-title {
        color: white;
        font-size: 1.5rem;
        font-family: fantasy;
        margin: 0.5rem 0;
      }
      
      .movie-meta {
        color: white;
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin: 0.5rem 0;
      }
      
      .movie-description {
        color: white;
        font-size: 0.9rem;
        margin: 1rem 0;
        line-height: 1.5;
      }
      
      .showtime-btn {
        width: 100%;
        padding: 0.5rem;
        margin: 0.25rem 0;
        color: white;
        background-color: transparent;
        border: 1px solid #444;
        border-radius: 5px;
        font-size: 0.8rem;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s ease;
      }
      
      .showtime-btn:hover {
        background-color: rgba(216, 43, 43, 0.8);
      }
      
      .showtime-btn span {
        color: chocolate;
      }
      
      /* Promotions section */
      .promotions {
        text-align: center;
        padding: 2rem;
      }
      
      .promo-image {
        width: 100%;
        max-width: 1200px;
        height: auto;
        border-radius: 15px;
        margin: 1rem auto;
        display: block;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      }
      
      /* Footer styling */
      .footer {
        background-color: #0d1117;
        color: white;
        padding: 2rem;
        margin-top: 2rem;
      }
      
      .footer-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
      }
      
      .footer-section h2 {
        color: brown;
        font-size: 1.5rem;
        margin-bottom: 1rem;
      }
      
      .footer-section p, .footer-section a {
        color: #ccc;
        font-size: 0.9rem;
        margin: 0.5rem 0;
        display: block;
      }
      
      .footer-section a {
        text-decoration: none;
        transition: color 0.3s ease;
      }
      
      .footer-section a:hover {
        color: white;
      }
      
      .social-icons {
        display: flex;
        gap: 1rem;
        margin: 1rem 0;
      }
      
      .social-icons i {
        font-size: 1.5rem;
        transition: transform 0.3s ease;
      }
      
      .social-icons i:hover {
        transform: scale(1.2);
      }
      
      /* Newsletter form */
      .newsletter-form {
        text-align: center;
        padding: 1rem;
        margin: 1rem 0;
      }
      
      .newsletter-form label {
        display: block;
        margin-bottom: 0.5rem;
        font-size: 1rem;
      }
      
      .newsletter-form input {
        width: 100%;
        max-width: 500px;
        height: 40px;
        padding: 0 1rem;
        border: 1px solid #444;
        border-radius: 5px;
        background-color: transparent;
        color: white;
        margin: 0 auto;
        display: block;
      }
      
      .newsletter-form input:focus {
        outline: none;
        border-color: brown;
      }
      
      /* Copyright section */
      .copyright {
        text-align: center;
        padding: 1rem;
        font-size: 0.8rem;
        color: brown;
        border-top: 1px solid #333;
        margin-top: 1rem;
      }
      
      /* Mobile menu toggle */
      .menu-toggle {
        display: none;
        cursor: pointer;
        padding: 1rem;
      }
      
      /* Responsive adjustments */
      @media (max-width: 768px) {
        .navbar {
          flex-direction: column;
          align-items: flex-start;
        }
        
        .nav-list {
          display: none;
          width: 100%;
          flex-direction: column;
          padding: 1rem 0;
        }
        
        .nav-list.active {
          display: flex;
        }
        
        .menu-toggle {
          display: block;
          position: absolute;
          right: 1rem;
          top: 1rem;
        }
        
        .nav-icons {
          display: none;
        }
        
        .head {
          margin-top: 2rem;
        }
        
        .btnn, .btnn1 {
          width: 100%;
          margin: 0.5rem 0;
        }
        
        .navbar2 {
          flex-direction: column;
          padding: 1rem;
        }
        
        .logo2 {
          margin-bottom: 1rem;
        }
        
        .movies-container {
          grid-template-columns: 1fr;
        }
      }
      
      @media (min-width: 769px) and (max-width: 1024px) {
        .movies-container {
          grid-template-columns: repeat(2, 1fr);
        }
      }