﻿.card-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.card-page {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
}

.card-page.active {
    opacity: 1;
    z-index: 2;
}

.mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 3;
}

.content-box {
    position: absolute;
    bottom: 1%;
    left: 1%;
    width: 80%;
    padding: 20px;
    color: white;
    border-radius: 8px;
    z-index: 4;
}

.content-box h3 {
    margin-top: 0;
    font-size: 1.8rem;
}

.content-box p {
    font-size: 1rem;
    line-height: 1.5;
}

.pagination {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 5;
}

.page-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-indicator.active {
    background-color: white;
    transform: scale(1.2);
}

.PlayButton {
    position: absolute;
    top: 1%;
    left: 1%;
    z-index:9;
}
