* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

button {
    border: none;
    background-color: transparent;

}

html {
    scroll-behavior: smooth;
}

#brandq {
    scroll-margin-top: 50px;

}

#loca,
#galary,
#about,
#system,
#seats,
#location {
    scroll-margin-top: 100px;
}

a {
    text-decoration: none;
    color: black;
}

hr {
    width: 80%;
    justify-self: center;
    align-self: center;
    opacity: 0.15;
    margin: 25px 0px;
}

.customhr {
    width: 80%;
    justify-self: center;
    align-self: center;
    opacity: 0.5;
}

.sizebox {
    height: 40px;
}

.heading {
    font-weight: bold;
    font-size: xx-large;
    text-align: center;
    margin-bottom: 25px;
}

/* Top Navigation */
.topnav {
    padding: 7.5px 100px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;

}

.topnav .language {
    justify-self: start;
    display: flex;
    gap: 20px;
}

.topnav .language span {
    cursor: pointer;
    padding: 5px;
    transition: all 0.2s ease;
}

.topnav .language span.active {
    font-weight: bold;
    color: #5d87d7;
}

.topnav .language span:hover {
    color: #5d87d7;
}

.topnav .signin {
    justify-self: right;
    margin: 0 10px;
    gap: 10px;
    display: flex;
    align-items: center;
}

.topnav .signin:hover {
    cursor: pointer;
}

/* Bottom Navigation */
.botbnav ul {
    padding: 7.5px 150px;
    display: flex;
    gap: 25px;
    list-style: none;
    justify-content: space-around;
    font-size: small;
}

.botbnav li {
    cursor: pointer;
}

.botbnav li:hover {
    text-decoration: underline;
    color: #5d87d7;
}

/* Carousel Section */
.select_advertise {
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.blur-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(20px);
    transition: background-image 0.8s ease-in-out;
    z-index: -1;
}

.select_advertise .title-c {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1000px;
}

.select_advertise .title-c img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(0.9);
}

/* Select Movie Bar */
.selectmovie {
    background-color: white;
    height: 90px;
    width: 50%;
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    z-index: 1000;
}




/* Header and Show/Upcoming */
.movieheader {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
}

.showandupcoming button {
    border: none;
    background-color: transparent;
    cursor: pointer;
    font-size: 16px;
    padding: 5px 10px;
    transition: all 0.3s ease;
}

.showandupcoming button:hover {
    text-decoration: underline;
}

.showandupcoming button.active {
    font-weight: bold;
}

.showandupcoming ul {
    margin-top: 25px;
    display: flex;
    gap: 50px;
    list-style: none;
    justify-content: center;
}

/* Main Grid Layout */
.bigmoviegrid {
    margin: 0px 75px;
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 20px;
    padding: 0 150px;
    align-items: start;
    margin-bottom: 50px;
}

/* Left Column: Small Movie Grid */
.smallmoviegrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    min-height: 1200px;
}

.showitem {
    aspect-ratio: 2/3;
    position: relative;
    border-radius: 8px;
    overflow: visible;
    transition: transform 0.3s ease;
}

.showitem .item {
    position: absolute;
    height: 300px;
    width: 200px;
    content: "";
    left: 50%;
    transform: translate(-50%);
    display: flex;
    justify-content: start;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.showitem .item img {
    height: 90%;
    width: 90%;
    object-fit: cover;
}

.showitem .item p:first-of-type {
    margin-top: 10px;
    color: blue;
    font-size: smaller;
}

.showitem .item p:last-of-type {
    font-weight: bold;
    font-size: large;
}

.showitem:hover {
    transform: translateY(-5px);
    z-index: 10;
}

.showitem .frame {
    position: absolute;

    z-index: 0;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 80%;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2);
}

/* Right Column: Side Container */
.side-container {
    height: 100%;
    position: relative;
}

/* Side Advertisement */
.sideadvertise {
    height: 425px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    padding: 10px;
    text-align: center;
    margin-bottom: 20px;
}

.sideadvertise p {
    margin-bottom: 15px;

    font-weight: bold;
}

.sideadvertise hr {
    height: 2px;
    background: linear-gradient(90deg, rgb(95, 114, 241) 0%, rgba(33, 33, 149, 1) 35%, rgba(0, 212, 255, 1) 100%);
    border: none;
    margin-bottom: 10px;
}

.vertical-carousel {
    height: auto;
}

.vertical-carousel img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Box Office Sticky Section */
.boxoffice {
    position: -webkit-sticky;
    position: sticky;
    top: 20px;

    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    z-index: 5;
}

.boxoffice hr {
    margin: 10px 0;
    height: 2px;
    background: linear-gradient(90deg, rgb(95, 114, 241) 0%, rgba(33, 33, 149, 1) 35%, rgba(0, 212, 255, 1) 100%);
    border: none;
}

.sfus {
    display: flex;
    font-size: small;
    justify-content: space-evenly;
}

.rec-movie {
    display: flex;
    margin: 15px;
    position: relative;
}

.rec-movie p {
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.rec-movie img {
    height: 35%;
    width: 35%;
}

.rec-movie .tag {
    color: white;
    position: absolute;
    top: -5px;
    left: -5px;
    height: 25px;
    width: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(93, 135, 215);
    font-size: x-small;
    border-radius: 15px;
}

.logoadvertise img {
    display: flex;
    justify-self: center;
}



/* Hide the inactive grid */
.smallmoviegrid.hidden {
    display: none;
}

/* Page content */
.page-content {
    display: none;
}


.page-content.active {
    display: block;
}


/* Movie page */


.movie-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 0px 200px;
    margin-bottom: 50px;
}

.movie h1 {
    padding: 50px;
    text-align: center;
    font-size: x-large;
    font-weight: bold;
    color: rgb(0, 89, 255);
}

.footer {
    display: flex;
    flex-direction: column;
    padding: 50px 200px;
    height: 200px;
    width: 100%;
    background-color: rgb(33, 32, 32);
    color: white;

}

.footer ul {
    display: flex;
    flex-direction: row;
    list-style: none;
    gap: 20px;
    font-size: smaller;
    font-weight: bold;

}

.footer .wrap {
    display: flex;
    align-items: initial;
    justify-content: space-between;
    margin-bottom: 25px;
}

.cinema {
    object-fit: inherit;
}

.outside {
    position: relative;
    object-fit: contain;
}

.outside img {
    max-width: 100%;
}

.inside {
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    left: 45%;
    bottom: 50px;
}

.inside h1 {
    font-size: 250%;
    font-weight: bold;
}

.inside p {
    color: white;
}

.inside i {

    color: white;
}

.inside p {
    margin-bottom: 15px;
}



.moving-icon {
    font-size: 20px;
    /* Set your desired size */
    animation: moveUpDown 2s infinite;
    /* Animation name, duration, and infinite loop */
}

@keyframes moveUpDown {
    0% {
        transform: translateY(0);
        /* Start at the original position */
    }

    50% {
        transform: translateY(20px);
        /* Move up */
    }

    100% {
        transform: translateY(0);
        /* Return to the original position */
    }
}

.stickynav {
    position: sticky;
    top: 0px;
    /* Starts sticking after scrolling 25px */
    background-color: white;
    /* White background for the sticky navigation bar */
    width: 100%;
    /* Full width */
    z-index: 1000;
    /* Ensures it stays on top of other content */
    padding: 1px 0px;
}

.stickynav ul {
    display: flex;
    flex-direction: row;
    list-style: none;
    gap: 10px;
    justify-content: center;
    margin: 25px 0px;
    color: gray;
}



.small-container1 {
    z-index: 1;
    position: relative;
    height: 410px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 25px;
}

.small-container1 .inside {
    font-size: 500%;
    z-index: -1;
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: gray;
    opacity: 0.1;

}

.small-container1 .item {
    background-color: white;
    height: 150px;
    width: 250px;
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.1);
    padding: 50px;
    /* Padding will be added inside the box */
    box-sizing: border-box;
    /* Ensures padding does not affect the width/height */
}

.small-container1 .item:hover {
    box-shadow: 0 0px 20px rgba(0, 0, 0, 0.2);

}

.small-container1 .item img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.logo-display {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px 0px;
    ;
}

.logo-display ul {
    display: flex;
    flex-direction: row;
    list-style: none;
    gap: 35px;
}

.logo-display img {
    width: auto;
    /* Remove fixed width of 50% to make them smaller and fit naturally */
    height: 40px;
    /* Set a fixed height for the images */
}

.small-container2 {
    padding: 0px 125px;
    display: flex;
    flex-direction: row;
    gap: 25px;
    justify-content: space-between;
}

.small-container2 .text {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.st ul {
    list-style: none;
    gap: 25px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    font-size: xx-large;
    margin: 50px 0px;
}

.small-container2 .item {
    height: 100px;
    width: 125px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: visible;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    font-size: small;
    padding: 0px 15px;
    text-align: center;
    padding-top: 15px;
    margin-bottom: 50px;
}

.small-container2 .item .inside {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.small-container2 .item img {
    height: 50%;
    width: auto;
}

.skewcontent {
    height: 100px;
    transform: skewY(-3deg) translateY(40px);
    background-color: white;
    z-index: 1;
    position: relative;
}

.curo {
    object-fit: contain;
    height: 860px;
    overflow: hidden;
}


.seats .item {
    background-color: white;
    height: 100px;
    width: 150px;
    line-height: 100px;
    text-align: center;
    margin: 75px 50px 40px 40px;
    font-size: 20px;
    font-weight: bold;
    font-size: small;
    text-align: center;
    padding-top: 15px;
    overflow: visible;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.seats .item .inside {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
}

.seats .item .inside img {
    height: 75px;
    width: auto;
}



.big-container .bot {
    margin: 50px 0px;
}

.big-container .bot ul {
    display: flex;
    gap: 50px;
    list-style: none;
    justify-content: center;
    align-items: center;
}

.big-container .bot li img {
    height: 50px;
}

.option {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0px 200px;
    padding: 0px 0px;

    color: blue;
}

.botimage {
    margin: 50px 0px;
}

.botimage ul {
    display: flex;
    gap: 50px;
    list-style: none;
    justify-content: center;
    align-items: center;
}

.botimage li img {
    height: 50px;
}

.blur-promotion {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(10px);
    position: relative;
}

.insideblur {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%);
    background-color: white;
    height: 465px;
    width: 55%;
    object-fit: cover;
}

.mininav ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 40px;
    justify-content: center;
}

.brand-tab {
    display: grid;
    grid-template-columns: repeat(6, auto);
    grid-template-rows: auto;
    gap: 25px;
    justify-content: center;
    align-content: center;
    width: 80%;

}

.brand-tab img {
    height: 150px;
    width: 150px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.25);
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.center2 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.tabcontent {
    display: none;
}

.tabcontent.active {
    display: block;
}

.all-tab {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 25px;
    justify-content: center;
    align-content: center;
    width: 80%;
}

.all-tab .item {

    height: 475px;
    width: 275px;
    display: flex;
    flex-direction: column;


}

.all-tab .item img {
    height: 375px;
    margin-bottom: 15px;
}

.all-tab .item h2 {
    overflow-wrap: break-word;
    color: rgb(53, 80, 255);
    font-size: medium;
    height: 2.5em;
    text-overflow: ellipsis;
    overflow: hidden;

    /* Limit to 2 lines */
    -webkit-box-orient: vertical;
    margin-bottom: 10px;
}

.all-tab .item h4 {
    overflow-wrap: break-word;
    font-size: small;
}

.all-tab .item .text-box {
    width: 100%;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.big {
    height: 450px;
    margin: 50px 150px;
    position: relative;
}

.big .small1 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.big .small1 img {
    height: 400px;
}

.big .small2 {
    position: absolute;
    bottom: 0;
    right: 0;
    background: linear-gradient(122deg, rgba(14, 13, 81, 1) 1%, rgba(12, 31, 100, 1) 6%, rgba(2, 161, 235, 1) 48%, rgba(0, 180, 255, 1) 100%);
    height: 400px;
    width: 800px;
    z-index: 0;
}

.big .small3 {
    position: absolute;
    top: 25%;
    right: 5%;
    z-index: 2;
}

.big .small3 h2 {
    font-size: xx-large;
    color: white;
    font-size: 45px;
    margin-bottom: 50px;

}

.big .small3 h3 {
    color: white;
}

.bowlignslick {
    height: 435px;
    margin: 25px 200px;
    object-fit: contain;
}

.bowlignslick img {
    width: 100%;
    object-fit: contain;
}

.locationbox {
    height: 400px;
    background-color: whitesmoke;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.locationbox h1 {
    font-weight: bold;
    font-size: 48px;
    margin-bottom: 25px;
}

.locationbox h3 {
    font-size: medium;
}

.locationbox h3:last-child {
    color: grey;
}

.content {
    display: none;
}

.content.active {
    display: block;
}

.ally {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 0px 150px;
}

.ally .item {
    height: 475px;
    margin: 15px;
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.2);
}

.ally .item:hover {
    box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.2);

}

.ally .item img {
    width: 100%;

}

.ally .item h3:first-of-type {
    text-align: center;
    margin-bottom: 15px;
    overflow-wrap: break-word;
    color: blue;
    padding: 10px 10px
}

.ally .item h3:last-of-type {
    margin-bottom: 15px;
    font-size: medium;
    padding: 0px 20px;

}

.ally .item h4 {
    text-align: center;
    color: grey;


    font-size: small;
}


.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    flex-direction: column;
}

.popup-content {
    background: white;
    padding: 20px;
    width: 90%;
    max-width: 500px;
    border-radius: 4px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    flex-direction: column;

}

.close {
    position: absolute;
    top: 8px;
    right: 16px;
    font-size: 24px;
    cursor: pointer;
}

.or {
    position: relative;
    text-align: center;
    margin: 20px 0;
}

.or .inside {
    height: 20px;
    width: 40px;
    background-color: white;
    color: black;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.loginfacebook {
    background-color: #5d87d7;
    width: 80%;
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 15px;
    margin: 15px 0px;
}

.loginfacebook p {
    color: white
}

.input {
    border: solid 1px rgba(0, 0, 0, 0.15);
    width: 80%;
    height: 50px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding: 0px 15px;
}

.input .r {
    flex: 1;
}

.input .l {
    margin-left: 10px;
}

input {
    border: none;
    outline: none;
    width: 100%;
}

.forget {
    margin: 5px 0px;
    text-align: end;
    width: 80%;
    opacity: 0.5;
    text-decoration: underline;
}

.forget:hover {
    opacity: 1;
}

.loginbth {
    background: linear-gradient(122deg, rgba(61, 107, 182, 1) 0%, rgba(0, 180, 255, 1) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    width: 80%;
    height: 50px;
    color: white;
    margin: 15px 0px;
}
.loginbth2 {
    background: linear-gradient(122deg, rgba(61, 107, 182, 1) 0%, rgba(0, 180, 255, 1) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    width: 200px;
    height: 50px;
    color: white;
    margin: 15px 0px;
}

.loginbth:hover {
    box-shadow: 0px 0px 10px 1px rgba(17, 11, 213, 0.2);

}

.donthave {
    display: flex;
    justify-content: space-between;
    padding: 0px 20px;
    align-items: center;
}

.signIn {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    width: 50%;
    height: 50px;
    color: white;
    margin: 3 px 0px;
    border: solid 1px black;
    color: rgba(61, 107, 182, 1);
}

.signIn:hover {
    color: white;
    border: none;
    background: linear-gradient(122deg, rgba(61, 107, 182, 1) 0%, rgba(0, 180, 255, 1) 100%);
}

.profile-layout {
    display: flex;
    padding: 100px 150px;
    gap: 25px;
}

.profile-layout .l {
    height: 425px;
    flex: 1;
    border: solid 1px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.profile-layout .r {
    height: 500px;
    flex: 3;
}

.profile {
    height: 200px;
    width: 200px;
    background-color: bisque;
    margin-bottom: 15px;
}

.profile img {
    height: 100%;
    object-fit: contain;
}

.profile-layout .l ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    list-style: none;
    gap: 5px;

}

.profile-layout .l ul li button {
    font-size: large;
}

.logout {
    margin-top: 25px;
    border: solid 1px rgba(0, 0, 0, 0.35);
    width: 200px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(0, 0, 0, 0.35);
    font-size: larger;
    border-radius: 4px;
}

.logout:hover {
    border: solid 1px rgba(43, 47, 255, 0.8);
    color: rgba(43, 47, 255, 0.8);
}

.profile-tab {
    display: none;
}

.profile-tab.active {
    display: block;
}

.whatmovie {
    height: 350px;
    width: 250px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 12.5%;
    left: 22.5%;
}

.ticketback {
    width: 100%;
    position: relative;
    height: 450px;
    padding: 0px 200px;
    background-color: #f5f7fb;
}

.ticketback .ccc {
    width: 60%;
    height: 300px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
}

.ticketback .text {
    gap: 10px;
    position: absolute;
    flex-direction: column;
    color: black;
    top: 125px;
    left: 42.5%;
    z-index: 5;
}

.detailbth {
    font-size: large;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    width: 150px;
    height: 50px;
    color: white;
    margin-top: 15px;
    border: solid 1px rgba(88, 88, 88, 0.4);
    color: rgba(88, 88, 88, 0.25);
}

.detailbth:hover {
    color: rgba(47, 47, 47, 0.5);
    border: solid 1px rgba(47, 47, 47, 0.5);
}

.ticketback .text h1 {
    font-size: x-large;
    font-weight: bold;
}

.ticketback .text h2 {
    font-size: medium;
    font-weight: 500;
}

.date-selector {
    margin: 10px 150px;
    height: 70px;
    z-index: 6;
}
.date-selector .item {
    transform: scale(1.08);
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: grey;
    cursor: pointer;
}
.date-selector .item:hover{
    color: rgba(43, 47, 255, 0.8 );
}

.date-selector .slick-prev::before,
.date-selector .slick-next::before {
    color: gray;
}
.date-selector .slick-slide {
    flex: 0 0 auto;
    display: flex !important;
    justify-content: center;
    align-items: center;
  }
 .date-selector .item h4{
    margin-top: 5px;
    font-size: small;
 }
 .date-content{
    display: none;
    padding: 0px 150px;
 }
 .date-content.active{
    display: block;
    padding: 0px 150px;

 }
 .con{
    display: flex;
    align-items: center;
    gap: 50px;
    
 }
 .loginbth2:hover{
    cursor: pointer;
 }
 .container {
    display: flex;
    max-width: 1200px;
    margin: 20px auto;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.main-content {
    flex: 3;
    padding: 20px;
}

.sidebar {
    flex: 1;
    background-color: #f9f9f9;
    padding: 20px;
    min-width: 300px;
}

/* Cinema Label */
.cinema-label {
    margin-bottom: 20px;
}

.cinema-box {
    border: 1px solid #333;
    display: inline-block;
    padding: 5px 10px;
    text-align: center;
}

.cinema-number {
    font-size: 32px;
    font-weight: bold;
}

/* Seat Types */
.seat-options {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
}

.seat-type {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.seat-icon {
    font-size: 24px;
    margin-bottom: 5px;
}

.seat-icon.deluxe {
    color: #29ABE2;
}

.seat-icon.premium {
    color: #1E73BE;
}

.seat-icon.vip {
    color: #FFD700;
}

.seat-info {
    font-size: 14px;
}

/* Screen */
.screen-container {
    position: relative;
    height: 80px;
    margin-bottom: 30px;
}

.screen-curve {
    height: 100%;
    border-top: 3px solid #4A90E2;
    border-radius: 50% 50% 0 0;
}

.screen-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #666;
    font-weight: bold;
}

/* Seating Plan */
.seating-plan {
    display: flex;
    margin-top: 20px;
}

.row-labels {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 10px;
}

.row-label {
    height: 30px;
    display: flex;
    align-items: center;
    color: #999;
    font-size: 14px;
}

.seats-container {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(20, 1fr);
    gap: 5px;
}

.seat {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    position: relative;
}

.seat.available {
    color: #29ABE2;
}

.seat.premium {
    color: #1E73BE;
}

.seat.vip {
    color: #FFD700;
}

.seat.selected {
    color: #4CAF50; /* Green color for selected seats */
}

.seat-id {
    font-size: 10px;
    margin-top: 2px;
    color: #666;
}

.seat.selected .seat-id {
    color: #4CAF50;
}

/* Sidebar */
.event-info {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.event-info h2 {
    font-size: 18px;
    margin-bottom: 10px;
}

.event-date, .event-time {
    color: #666;
    margin-bottom: 5px;
}

.cinema-info {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.cinema-info h3 {
    margin-bottom: 10px;
}

.selection-info {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.selected-seat, .total-price {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.seat-value {
    text-align: right;
    max-width: 150px;
    word-wrap: break-word;
}

.price-value {
    font-size: 24px;
    font-weight: bold;
    color: #0066CC;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.discount-btn, .continue-btn {
    padding: 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.discount-btn {
    background-color: white;
    border: 1px solid #0066CC;
    color: #0066CC;
}

.discount-btn i {
    margin-right: 5px;
}

.continue-btn {
    background-color: #7BA7E1;
    color: white;
}
.payment-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.payment-modal {
    background-color: white;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.payment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.payment-header h2 {
    margin: 0;
    color: #333;
}

.close-payment {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

.payment-details {
    margin-bottom: 20px;
}

.price-display {
    font-size: 24px;
    font-weight: bold;
    color: #0066CC;
}

.payment-options {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.payment-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 30%;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option:hover {
    border-color: #0066CC;
    background-color: #f5f9ff;
}

.payment-option.selected {
    border-color: #0066CC;
    background-color: #f0f7ff;
}

.payment-option img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
}

.payment-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.confirm-payment, .cancel-payment {
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

.confirm-payment {
    background-color: #7BA7E1;
    color: white;
}

.confirm-payment:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.cancel-payment {
    background-color: white;
    border: 1px solid #999;
    color: #666;
}