.ps-c33e0809-wrapper {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Page Header */
.ps-c33e0809-page-header {
    text-align: center;
    padding: 80px 40px 60px;
}

.ps-c33e0809-page-title {
    font-size: 56px;
    font-weight: 800;
    margin: 0 0 16px;
    letter-spacing: -2px;
    color: inherit;
    line-height: 1.1;
}

.ps-c33e0809-page-subtitle {
    font-size: 18px;
    opacity: 0.6;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Category Section */
.ps-c33e0809-cat-section {
    padding: 70px 40px;
}

.ps-c33e0809-cat-section.ps-alt-bg {
    background-color: #141428;
}

/* Category Header */
.ps-c33e0809-cat-header {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto 48px;
}

.ps-c33e0809-cat-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    padding-top: 6px;
}

.ps-c33e0809-section-number {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    opacity: 0.9;
    letter-spacing: -1px;
}

.ps-c33e0809-section-line {
    width: 60px;
    height: 3px;
    border-radius: 2px;
}

.ps-c33e0809-cat-header-right {
    flex: 1;
}

.ps-c33e0809-cat-title {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 10px;
    color: inherit;
    letter-spacing: -0.5px;
}

.ps-c33e0809-cat-desc {
    font-size: 16px;
    opacity: 0.6;
    margin: 0;
    line-height: 1.7;
    max-width: 550px;
}

/* Grid Layout */
.ps-c33e0809-cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.ps-c33e0809-cat-grid.ps-cols-1 { grid-template-columns: 1fr; }
.ps-c33e0809-cat-grid.ps-cols-2 { grid-template-columns: repeat(2, 1fr); }
.ps-c33e0809-cat-grid.ps-cols-3 { grid-template-columns: repeat(3, 1fr); }
.ps-c33e0809-cat-grid.ps-cols-4 { grid-template-columns: repeat(4, 1fr); }

/* Carousel Layout */
.ps-c33e0809-carousel-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.ps-c33e0809-swiper {
    overflow: hidden;
    padding-bottom: 8px;
}

.ps-c33e0809-swiper .swiper-slide {
    height: auto;
}

.ps-c33e0809-swiper .swiper-slide .ps-c33e0809-card {
    height: 100%;
}

/* Carousel Navigation */
.ps-c33e0809-swiper-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 28px;
}

.ps-c33e0809-swiper-prev,
.ps-c33e0809-swiper-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
}

.ps-c33e0809-swiper-prev:hover,
.ps-c33e0809-swiper-next:hover {
    opacity: 0.85;
    transform: scale(1.05);
}

.ps-c33e0809-swiper-pagination {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ps-c33e0809-swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.ps-c33e0809-swiper-pagination .swiper-pagination-bullet-active {
    background-color: #6C63FF;
    width: 24px;
    border-radius: 4px;
}

/* Card */
.ps-c33e0809-card {
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease, border-color 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.ps-c33e0809-card.ps-hover-lift:hover {
    transform: translateY(-6px);
}

.ps-c33e0809-card.ps-hover-zoom:hover .ps-c33e0809-card-media img {
    transform: scale(1.05);
}

/* Card Media */
.ps-c33e0809-card-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.ps-c33e0809-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ps-c33e0809-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.ps-c33e0809-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 30px rgba(0,0,0,0.5);
}

.ps-c33e0809-media-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 1px;
    backdrop-filter: blur(4px);
}

/* Card Body */
.ps-c33e0809-card-body {
    padding: 24px;
    flex: 1;
}

.ps-c33e0809-card-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 6px;
    color: inherit;
}

.ps-c33e0809-card-client {
    font-size: 13px;
    opacity: 0.45;
    margin: 0 0 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ps-c33e0809-card-desc {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.65;
    margin: 0;
}

/* Scroll Animations */
.ps-c33e0809-cat-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.ps-c33e0809-cat-section.ps-visible {
    opacity: 1;
    transform: translateY(0);
}

.ps-c33e0809-cat-grid .ps-c33e0809-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease, background-color 0.4s ease, border-color 0.4s ease;
}

.ps-c33e0809-cat-grid .ps-c33e0809-card.ps-card-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Modal */
.ps-c33e0809-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ps-c33e0809-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
}

.ps-c33e0809-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    z-index: 2;
}

.ps-c33e0809-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    transition: opacity 0.3s;
}

.ps-c33e0809-modal-close:hover {
    opacity: 0.7;
}

.ps-c33e0809-modal-video {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.ps-c33e0809-modal-video iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .ps-c33e0809-cat-grid.ps-cols-4 { grid-template-columns: repeat(2, 1fr); }
    .ps-c33e0809-cat-grid.ps-cols-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .ps-c33e0809-page-header {
        padding: 50px 20px 40px;
    }
    .ps-c33e0809-page-title {
        font-size: 36px;
        letter-spacing: -1px;
    }
    .ps-c33e0809-page-subtitle {
        font-size: 15px;
    }
    .ps-c33e0809-cat-section {
        padding: 50px 20px;
    }
    .ps-c33e0809-cat-header {
        flex-direction: column;
        gap: 12px;
    }
    .ps-c33e0809-cat-header-left {
        gap: 12px;
    }
    .ps-c33e0809-section-number {
        font-size: 32px;
    }
    .ps-c33e0809-section-line {
        width: 40px;
    }
    .ps-c33e0809-cat-title {
        font-size: 26px;
    }
    .ps-c33e0809-cat-grid,
    .ps-c33e0809-cat-grid.ps-cols-2,
    .ps-c33e0809-cat-grid.ps-cols-3,
    .ps-c33e0809-cat-grid.ps-cols-4 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
