.rc-19cfa50c-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.rc-19cfa50c-container {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 600px;
    background: #000;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.rc-19cfa50c-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.rc-19cfa50c-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease-in-out, visibility 0.4s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.rc-19cfa50c-slide.active {
    opacity: 1;
    visibility: visible;
}

.rc-19cfa50c-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 5s linear;
}

.rc-19cfa50c-slide.active .rc-19cfa50c-bg {
    transform: scale(1.05);
}

.rc-19cfa50c-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%, rgba(0,0,0,0.4) 100%);
    pointer-events: none;
}

.rc-19cfa50c-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px 40px;
    z-index: 2;
    color: #fff;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* RTL Support */
.rc-19cfa50c-rtl {
    direction: rtl;
}

.rc-19cfa50c-date {
    font-size: 0.85em;
    font-weight: 500;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rc-19cfa50c-title {
    margin: 0;
    font-size: 1.8em;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.rc-19cfa50c-desc {
    margin: 0;
    font-size: 1em;
    line-height: 1.5;
    color: #eee;
    opacity: 0.9;
}

/* Progress Bar */
.rc-19cfa50c-progress-bar {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    gap: 5px;
    z-index: 10;
    align-items: center;
}

.rc-19cfa50c-progress-segment {
    flex-grow: 1;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.rc-19cfa50c-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: #fff;
    border-radius: 2px;
}

.rc-19cfa50c-play-pause {
    background: none;
    border: none;
    color: #fff;
    font-size: 12px;
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.2s, background-color 0.2s;
    flex-shrink: 0;
}

.rc-19cfa50c-play-pause:hover {
    opacity: 1;
}

.rc-19cfa50c-icon-play {
    padding-left: 2px;
}

/* Navigation Arrows */
.rc-19cfa50c-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.3);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 18px;
    opacity: 0;
    transition: opacity 0.3s, background 0.3s;
    backdrop-filter: blur(4px);
}

.rc-19cfa50c-container:hover .rc-19cfa50c-nav-btn {
    opacity: 1;
}

.rc-19cfa50c-nav-btn:hover {
    background: rgba(0,0,0,0.6);
}

.rc-19cfa50c-prev {
    left: 10px;
}

.rc-19cfa50c-next {
    right: 10px;
}
