body {
    font-family: 'Arial', sans-serif;
    color: white;
    line-height: 1.6;
}

.hero-section {
    position: relative;
    height: 70vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 18, 50, 0.134891)), color-stop(90%, #001232));
    background: linear-gradient(180deg, rgba(0, 18, 50, 0.134891) 0%, #001232 90%);
    background: -webkit-linear-gradient(180deg, rgba(0, 18, 50, 0.134891) 0%, #001232 90%);
}


.hero-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: center;
}

.movie-poster {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.movie-poster:hover {
    transform: scale(1.05);
}

.poster-image {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.poster-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(128, 128, 128, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.play-overlay:hover {
    background: rgba(255, 45, 85, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-icon {
    width: 0;
    height: 0;
    border-left: 20px solid white;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 4px;
}

.movie-info {
    padding-left: 20px;
}

.age-rating {
    display: inline-block;
    background: #1483B9;
    color: white;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 15px;
}

.movie-title {
    font-size: 3.2em;
    font-weight: bold;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #fff, #ddd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.movie-subtitle {
    font-size: 1.2em;
    color: #ccc;
    margin-bottom: 20px;
}

.movie-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
    font-size: 1.1em;
}

.meta-item {
    display: flex;
    flex-direction: column;
}

.meta-label {
    color: #999;
    font-size: 0.9em;
    margin-bottom: 5px;
}

.meta-value {
    color: #fff;
    font-weight: 600;
}

.movie-description {
    font-size: 1.1em;
    line-height: 1.8;
    color: #ddd;
    margin-bottom: 30px;
    max-width: 600px;
}

.action-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    width: 31%;
}

.btn-primary {
    background: #1483B9;
    color: white;
}

.btn-primary:hover {
    background: #00D4FF;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px #1483B9;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.details-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2em;
    margin-bottom: 30px;
    color: #fff;
    border-left: 4px solid #00D4FF;
    padding-left: 20px;
}

.showtimes {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.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;
    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;
}

.date-selector {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    overflow-x: auto;
    padding-bottom: 10px;
    padding-top: 5px;
    padding-left: 5px;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

.date-item {
    min-width: 12.8%;
    text-align: center;
    padding: 15px 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
}

.date-item.active {
    background: #1483B9;
    border-color: #00D4FF;
    transform: scale(1.05);
}

.date-item:hover {
    background: #154C6C;
    border-color: #1483B9;
}

.date-number {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 5px;
}

.date-day {
    font-size: 0.9em;
    color: #ccc;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.time-slot {
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.trailer-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.modal-header {
    background: #29ADDD;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 1.3em;
    font-weight: bold;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5em;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background 0.3s ease;
    width: 10%;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.video-container {
    position: relative;
    width: 100%;
    height: 450px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder {
    color: #666;
    font-size: 1.2em;
    text-align: center;
}

.main-content-detail {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    margin: 0 auto;
    padding: 0 80px;
}

.content-left {
    flex: 1;
}

.sidebar {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: fit-content;
    position: sticky;
    top: 20px;
    width: 100%;
    margin: 50px auto;
}

.sidebar-title {
    font-size: 1.5em;
    margin-bottom: 25px;
    color: #fff;
    border-left: 4px solid #00D4FF;
    padding-left: 15px;
}

.recommended-movie {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
    cursor: pointer;
}

.recommended-movie:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.recommended-poster {
    width: 30%;
    height: 40%;
    background: linear-gradient(135deg, #333, #222);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8em;
    color: #666;
    text-align: center;
    flex-shrink: 0;
}

.recommended-info h4 {
    color: #fff;
    font-size: 1em;
    line-height: 1.3;
    margin-top: 3px;
}

.recommended-info p {
    color: #999;
    font-size: 0.9em;
    margin-bottom: 5px;
}

.recommended-rating {
    color: #ffd700;
    font-size: 0.9em;
}

.cast-section {
    margin: 50px 0;
}

.cast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.cast-member {
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.cast-member:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.cast-avatar {
    width: 75px;
    height: 82px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff2d55, #ff6b8a);
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    color: white;
    font-weight: bold;
}

.cast-name {
    font-weight: bold;
    margin-bottom: 5px;
    color: #fff;
}

.cast-role {
    color: #999;
    font-size: 0.9em;
}

.studio-info {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
}

.studio-logo {
    width: 120px;
    height: 60px;
    background: linear-gradient(135deg, #333, #222);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: #666;
    font-size: 0.9em;
}

.studio-name {
    font-size: 1.2em;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
}

.studio-description {
    color: #ccc;
    font-size: 0.95em;
    line-height: 1.6;
}

.comments-section {
    margin: 50px 0;
}

.comment-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.comment-input {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1em;
    margin-bottom: 15px;
    resize: vertical;
    min-height: 100px;
    height: 90px;
}

.comment-input:focus {
    outline: none;
    border-color: #1483B9;
}

.comment-input::placeholder {
    color: #999;
}

.comment-submit {
    background: linear-gradient(135deg, #1483B9, #00d4ff);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
    transition: all 0.3s ease;
}

.comment-submit:hover {
    background: linear-gradient(135deg, #00d4ff);
    transform: translateY(-2px);
}
.comments-list {
    space-y: 20px;
}

.comment {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.comment:hover {
    background: rgba(255, 255, 255, 0.06);
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1483B9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 1.2em;
}

.comment-user-info {
    flex: 1;
}

.comment-username {
    font-weight: bold;
    color: #fff;
    margin-bottom: 3px;
}

.comment-time {
    color: #999;
    font-size: 0.9em;
}

.comment-rating {
    display: flex;
    gap: 2px;
    color: #ffd700;
}

.comment-content {
    color: #ddd;
    line-height: 1.6;
    margin-bottom: 15px;
}

.comment-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.comment-action {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 0.9em;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.comment-action:hover {
    color: #ff2d55;
}

.comment-action.liked {
    color: #ff2d55;
}

.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;
}

@media (max-width: 1024px) {
    .main-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .movie-poster {
        max-width: 250px;
        margin: 0 auto;
    }

    .movie-title {
        font-size: 2.5em;
    }

    .movie-meta {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .action-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
}

.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;
}

.img-poster {
    font-size: 0.7em;
    text-align: center;
    width: 100%;
    height: 100%;
}

.carouselCast-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.carouselCast {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 20px;
}

.cast-card {
    flex: 0 0 calc(20% - 25px);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    display: grid;
    gap: 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 15px;
}


.cast-card:hover {
    background: rgba(255, 255, 255, 0.08);
}

.movie-info {
    padding: 20px;
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2%;
    height: 15%;
    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;
    padding-bottom: 5px;
}

.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) {
    .cast-card {
        flex: 0 0 calc(33.333% - 14px);
        /* 3 cardsMovie per row */
    }
}

@media (max-width: 900px) {
    .cast-card {
        flex: 0 0 calc(50% - 10px);
        /* 2 cardsMovie per row */
        min-width: 250px;
    }

}

@media (max-width: 600px) {
    .cast-card {
        flex: 0 0 calc(100% - 0px);
        /* 1 card per row */
        min-width: 280px;
    }

    .title {
        font-size: 2rem;
    }

    .nav-button {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Animation cho loading */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cast-card {
    animation: fadeIn 0.6s ease forwards;
}

.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);
}

.load-more-btn {
    background: linear-gradient(135deg, #1483B9, #00d4ff);
    color: white;
    width: 16%;
    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;
    margin-left: 41%;
}

.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);
}

.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;
}


.out-of-slot {
    cursor: not-allowed !important;
}

.out-of-slot:hover {
    background: rgba(244, 67, 54, 0.2);
}

.out-of-seat {
    color:  red;
}

.comment-section-movie-detail h3 {
    margin-top: 0;
    font-size: 1.2em;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 10px;
}

.comment-form-movie-detail,
.comment-item-movie-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 10px;
}

.comment-list-movie-detail .comment-item-movie-detail {
    padding-top: 10px;
}

.comment-list-movie-detail .comment-item-movie-detail:first-child {
    padding-top: 0;
    border-top: none;
}

.comment-item-movie-detail img,
.comment-form-movie-detail img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-top: 5px;
}

.comment-content-movie-detail,
.comment-input-wrapper-movie-detail {
    flex-grow: 1;
}

.comment-meta-movie-detail {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.comment-author-movie-detail {
    font-weight: bold;
    font-size: 14px;
}

.comment-time-movie-detail {
    color: #65676b;
    font-size: 12px;
}

.comment-text-movie-detail {
    margin: 8px 0;
    font-size: 15px;
}

.comment-actions-movie-detail a {
    color: #65676b;
    text-decoration: none;
    font-weight: bold;
    font-size: 13px;
}

.comment-actions-movie-detail a:hover {
    text-decoration: underline;
}

.comment-actions-movie-detail span {
    margin: 0 5px;
    color: #65676b;
}

.replies-movie-detail {
    margin-top: 0px;
    padding-left: 0px;
}

.star-rating-input-movie-detail {
    margin-bottom: 8px;
}

.star-rating-input-movie-detail .star-movie-detail {
    font-size: 22px;
    color: #ffc107;
    cursor: pointer;
    transition: color 0.2s;
    margin-right: 2px;
}

.star-rating-input-movie-detail .star-movie-detail:hover {
    color: #ffc107;
}

.star-rating-input-movie-detail .fas {
    color: #ffc107;
}

.star-rating-display-movie-detail .fas {
    font-size: 14px;
    color: #ffc107;
}

.star-rating-display-movie-detail .far {
    font-size: 14px;
    color: #ccc;
}

textarea.comment-input-movie-detail {
    width: 100%;
    height: 120px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    padding: 8px 12px;
    font-size: 15px;
    color: white;
    resize: vertical;
    box-sizing: border-box;
}

textarea.comment-input-movie-detail:focus {
    outline: none;
    border-color: #1483B9;
}

.form-actions-movie-detail {
    display: flex;
    justify-content: flex-end;
    margin-top: 8px;
    gap: 5px;
}

.btn-submit-movie-detail {
    padding: 8px;
    background-color: #1877f2;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    width: 7%;
}

.btn-submit-movie-detail:disabled {
    background-color: #a6cbf7;
    cursor: not-allowed;
}

.btn-cancel-movie-detail {
    padding: 8px;
    background-color: #e4e6eb;
    color: #4b4f56;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    width: 7%;
}

.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;
}

.load-more-replies-movie-detail {
    width: 20%;
    font-size: 13px;
    font-weight: bold;
    color: #65676b;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1px 0;
    margin-top: 5px;
    height: 20px;
    outline: none;
}

.load-more-replies-movie-detail:hover {
    text-decoration: underline;
    color: white;
}

.reply-indicator-movie-detail {
    color: #65676b;
    font-size: 14px;
    font-weight: normal;
}



.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);
    }
}

