.card-carousel-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.card-carousel {
    position: relative;
    width: 100%;
    padding: 2rem 0;
}

.card-carousel-slides {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease-out;
    padding: 1.5rem 0;
}

.card-carousel-card {
    flex: 0 0 350px;
    height: 500px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    transform-origin: center;
}

.card-carousel-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.card-carousel-img {
    width: 100%;
    height: 60%;
    overflow: hidden;
}

.card-carousel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    transform-origin: center;
}

.card-carousel-card:hover .card-carousel-img img {
    transform: scale(1.1);
}

.card-carousel-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 40%;
}

.card-carousel-tag {
    font-size: 0.85rem;
    color: #4ecdc4;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-carousel-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    line-height: 1.2;
}

.card-carousel-text {
    font-size: 0.95rem;
    color: #b3b3b3;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.card-carousel-button {
    align-self: flex-start;
    padding: 0.5rem 1rem;
    background: linear-gradient(90deg, #0071e3, #88b8e9);
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.card-carousel-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.5);
}

.card-carousel-navigation {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 1rem;
}

.card-carousel-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90deg, #0071e3, #88b8e9);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.card-carousel-nav-btn:hover {
    background: rgba(7, 7, 7, 0.8);
    color: white;
    transform: scale(1.1);
}

.card-carousel-nav-btn:active {
    transform: scale(0.95);
}

.card-carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
    gap: 0.5rem;
}

.card-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.card-carousel-dot.active {
    background: #0071e3;
    transform: scale(1.3);
}

.card-carousel-progress-bar {
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    margin-top: 1rem;
    overflow: hidden;
}

.card-carousel-progress {
    height: 100%;
    background: linear-gradient(90deg, #0071e3, #88b8e9);
    width: 16.66%;
    transition: width 0.3s ease;
}

@media (max-width: 768px) {
    .card-carousel-card {
        flex: 0 0 300px;
        height: 450px;
    }
}

@media (max-width: 480px) {
    .card-carousel-card {
        flex: 0 0 250px;
        height: 400px;
    }
    .card-carousel-title {
        font-size: 1.2rem;
    }
}