/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-menu li a:hover {
    color: #00d4ff;
}

.nav-menu li a.active {
    color: #00d4ff;
}

.nav-menu li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #00d4ff;
}

/* Banner Slider */
.banner-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 20, 40, 0.8));
}

.slide-content {
    position: absolute;
    left: 50px;
    top: 69%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 10;
}

.movie-duration {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #cccccc;
}

.duration-icon {
    width: 16px;
    height: 16px;
    border: 2px solid #00d4ff;
    border-radius: 50%;
    margin-right: 10px;
}

.movie-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #e0e0e0;
    max-width: 500px;
}

.movie-genre {
    display: inline-block;
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 30px;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.movie-rating {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.rating-number {
    font-size: 2rem;
    font-weight: bold;
    margin-right: 15px;
    color: #00d4ff;
}

.stars {
    display: flex;
    gap: 3px;
}

.star {
    width: 20px;
    height: 20px;
    background: #00d4ff;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.book-btn {
    background: linear-gradient(135deg, #ff6b9d, #c44ac0);
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.3);
}

.book-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.4);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 30px;
    right: 50px;
    display: flex;
    gap: 15px;
    z-index: 100;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: #00d4ff;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .slide-content {
        left: 20px;
        right: 20px;
        max-width: none;
    }

    .movie-title {
        font-size: 2.5rem;
    }

    .nav-menu {
        display: none;
    }

    .slider-nav {
        right: 20px;
        bottom: 20px;
    }
}

.movie-carousel-title {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 0px !important;
    margin-left: 10px;
    padding-top: 15px;
    background: linear-gradient(135deg, #ffffff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.carouselMovie-wrapper {
    position: relative;
}

.carouselMovie-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 30px 20px;
}

.carouselMovie {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 20px;
}

.movie-card {
    flex: 0 0 calc(25% - 15px);
    min-width: 280px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
}

.movie-poster {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 15px 15px 0 0;
}

.age-rating {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
}

.age-rating.p {
    background: rgba(0, 128, 0, 0.8);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #333;
    opacity: 0;
    transition: opacity 0.3s ease;
}


movie-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.movie-card:hover::before {
    left: 100%;
}

.movie-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: #4ecdc4;
}

.movie-info {
    padding: 20px;
}

.movie-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #00d4ff;
    margin-bottom: 10px;
    line-height: 1.3;
}

.movie-genre {
    color: #00d4ff;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.movie-release {
    display: flex;
    gap: 35px;
    color: #999;
    font-size: 0.8rem;
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #00D4FF;
    border-radius: 50%;
    font-size: 20px;
    color: #00D4FF;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.nav-button:hover {
    background: #00D4FF;
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.4);
}

.nav-button:active {
    transform: translateY(-50%) scale(0.95);
}

.nav-button.prev {
    left: 10px;
}

.nav-button.next {
    right: 10px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .movie-card {
        flex: 0 0 calc(33.333% - 14px);
        /* 3 cardsMovie per row */
    }
}

@media (max-width: 900px) {
    .movie-card {
        flex: 0 0 calc(50% - 10px);
        /* 2 cardsMovie per row */
        min-width: 250px;
    }

    .carouselMovie-wrapper {
        padding: 0 50px;
    }
}

@media (max-width: 600px) {
    .movie-card {
        flex: 0 0 calc(100% - 0px);
        /* 1 card per row */
        min-width: 280px;
    }

    .title {
        font-size: 2rem;
    }

    .carouselMovie-wrapper {
        padding: 0 40px;
    }

    .nav-button {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Animation cho loading */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.movie-card {
    animation: fadeIn 0.6s ease forwards;
    transition: transform 0.3s ease;
}

.join-btn {
    background: linear-gradient(45deg, #e53e3e, #9f7aea);
    color: white;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s;
}

.join-btn:hover {
    transform: scale(1.05);
}

.page-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.booking-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.cinema-list {
    background: rgba(26, 35, 50, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cinema-list h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.search-box {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    margin-bottom: 1rem;
}

.search-box::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.cinema-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.cinema-item:hover {
    background: #154C6C;
    border-color: #154C6C;
}

.cinema-item.active {
    background: #154C6C;
    border-color: #07A3CA;
}

.cinema-logo {
    width: 30px;
    height: 30px;
    background: #e53e3e;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.8rem;
}

.schedule-section {
    background: rgba(26, 35, 50, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 2rem;
    padding-top: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.schedule-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.schedule-title {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #ffffff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.cinema-address {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.date-selector {
    overflow-x: auto;
    max-width: 1100px;
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 0.5rem;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

.date-item {
    min-width: 90px;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.date-item:hover {
    background: #154C6C;
    border-color: #1483B9;
}

.date-item.active {
    background: #1483B9;
    border-color: #00D4FF;
    transform: scale(1.05);
}

.date-number {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.date-day {
    font-size: 0.8rem;
    opacity: 0.8;
}

.movie-listbook-session {
    overflow-y: auto;
    display: grid;
    gap: 1.5rem;
    max-height: 500px;
    padding-top: 10px;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

.movie-cardbook-session {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;

}

.movie-cardbook-session:hover {
    transform: translateY(-2px);
    border-color: #29ADDD;
    box-shadow: 0 8px 32px #1483B9;
}

.movie-infobook-session {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.movie-posterbook-session {
    width: 80px;
    height: 120px;
}

.movie-details h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.movie-meta {
    display: flex;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.movie-genrebook-session {
    background: #154C6C;
    padding: 0.2rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
}

.movie-ratingbook-session {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.starsbook-session {
    color: #ffd700;
}

.showtimes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.showtime-btn {
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
    width: fit-content;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.showtime-btn:hover {
    background: #29ADDD;
    transform: scale(1.05);
}

.time-slot {
    font-weight: bold;
    font-size: 15px;
}

.rem-seat {
    color: aqua;
    font-size: 0.7rem;
    font-weight: 500;
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: rgba(255, 255, 255, 0.6);
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.show-more-btn {
    background: none;
    border: 2px solid #29ADDD;
    color: #29ADDD;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    margin: 0 auto;
    display: block;
    margin-top: 2rem;
    transition: all 0.3s;
}

.show-more-btn:hover {
    background: #00D4FF;
    color: white;
}

@media (max-width: 768px) {
    .booking-container {
        grid-template-columns: 1fr;
    }

    .date-selector {
        justify-content: center;
    }

    .movie-infobook-session {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card:hover .card-image img {
    transform: scale(1.05);
}



.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    color: white;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.rating-stats {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
}

.rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.rating-badge {
    background: #e91e63;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.8rem;
}

.views {
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-content {
    padding: 20px;
}

.comment {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.comment:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.comment-info {
    flex: 1;
}

.comment-info-small {
    display: flex;
    gap: 5px;
    align-items: baseline;
}

.comment-info-small i {
    color: #ffc107;
}

.username {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.timestamp {
    color: #666;
    font-size: 0.8rem;
}

.comment-text {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 8px;
}

.read-more {
    color: #667eea;
    font-weight: 500;
    cursor: pointer;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #5a67d8;
}

.read-more::after {
    content: '→';
    transition: transform 0.3s ease;
}

.read-more:hover::after {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

}

@media (min-width: 769px) and (max-width: 1024px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.load-more-container {
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
    /* Tạo khoảng cách với lưới ở trên */
}

.load-more-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 12%;
    border: none;
    padding: 14px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    /* Bo tròn các góc */
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(118, 75, 162, 0.3);
    /* Thêm đổ bóng nhẹ */
    letter-spacing: 0.5px;
}

.load-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(118, 75, 162, 0.4);
}

.load-more-btn:active {
    transform: translateY(-1px);
}

.rated {
    color: gold;
}

.out-of-slot {
    cursor: not-allowed !important;
}

.out-of-slot:hover {
    background: rgba(244, 67, 54, 0.2);
}

.out-of-seat {
    color:  red;
}

.button-container {
    margin-right: 60px;
    display: flex;
    gap: 30px;
}

.custom-button-item:active::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    transition: 0s;
}

.custom-button-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.custom-button-item:hover {
    background: #154C6C;
    border-color: #154C6C;
}

.custom-button-item.active {
    background: #154C6C;
    border-color: #07A3CA;
}


.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape:nth-child(1) {
    top: 10%;
    left: 10%;
    width: 100px;
    height: 100px;
    background: #ff6b6b;
    border-radius: 50%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    top: 60%;
    right: 10%;
    width: 80px;
    height: 80px;
    background: #4ecdc4;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation-delay: 2s;
}

.shape:nth-child(3) {
    bottom: 20%;
    left: 20%;
    width: 60px;
    height: 60px;
    background: #45b7d1;
    border-radius: 20%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Hero Section */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(ellipse at center, rgba(78, 205, 196, 0.1) 0%, transparent 70%);
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #f7d794);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rainbow 3s infinite;
}

@keyframes rainbow {
    0% {
        filter: hue-rotate(0deg);
    }

    100% {
        filter: hue-rotate(360deg);
    }
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.5);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid #4ecdc4;
}

.btn-secondary:hover {
    background: #4ecdc4;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(78, 205, 196, 0.3);
}

.featured-section-hot-film {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title-hot-film {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.movies-grid-hot-film {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.movie-card-hot-film {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.movie-card-hot-film::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.movie-card-hot-film:hover::before {
    left: 100%;
}

.movie-card-hot-film:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: #4ecdc4;
}

.movie-poster-hot-film {
    width: 100%;
    height: 250px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-radius: 15px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 3rem;
    color: white;
}

.movie-info-hot-film h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #4ecdc4;
    height: 63px;
}

.movie-info-hot-film p {
    opacity: 0.8;
    margin-bottom: 1rem !important;
    line-height: 1.5;
    height: 200px;
}

.movie-meta-hot-film {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.rating-hot-film {
    background: linear-gradient(45deg, #f7d794, #ff9a9e);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-weight: 600;
    color: #333;
}

.genre-hot-film {
    color: #4ecdc4;
    font-size: 0.9rem;
}

.book-btn-hot-film {
    width: 100%;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border: none;
    padding: 0.8rem;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.book-btn-hot-film:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}
