/* Catalog Section */
#apitech-catalog-section {
    min-height: 60vh;
    background: #f8f9fa;
    padding: 80px 0;
    font-family: 'Noto Sans KR', sans-serif;
    position: relative;
}

#apitech-catalog-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

#apitech-catalog-cards-wrapper {
    display: flex;
    gap: 40px;
}

/* Catalog Cards */
.apitech-catalog-card-unique {
    flex: 1;
    height: 320px;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    opacity: 0;
    transition: all 0.8s ease;
}

.apitech-catalog-card-unique.visible {
    opacity: 1;
    transform: translateX(0) !important;
}

.apitech-catalog-card-unique:hover {
    transform: scale(1.05);
}

#apitech-general-catalog {
    transform: translateX(-50px);
    transition-delay: 0.2s;
}

#apitech-video-catalog {
    transform: translateX(50px);
    transition-delay: 0.4s;
}

/* Card Overlays */
#apitech-general-overlay,
#apitech-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 52, 54, 0.8) 0%, rgba(99, 110, 114, 0.8) 100%);
}

/* Card Content */
#apitech-general-content,
#apitech-video-content {
    position: absolute;
    bottom: 50px;
    left: 50px;
    right: 50px;
    color: white;
}

#apitech-general-subtitle,
#apitech-video-subtitle {
    color: #FF8A4C;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    word-break: keep-all;
    word-wrap: break-word;
}

#apitech-general-title,
#apitech-video-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 30px 0;
    word-break: keep-all;
    word-wrap: break-word;
}

/* Buttons */
#apitech-general-btn {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    word-break: keep-all;
    word-wrap: break-word;
}

#apitech-general-btn:hover {
    background: white;
    color: #2d3436;
}

#apitech-general-arrow {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    color: #2d3436;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

#apitech-video-buttons {
    display: flex;
    gap: 15px;
}

#apitech-subscribe-btn,
#apitech-watch-btn {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    word-break: keep-all;
    word-wrap: break-word;
}

#apitech-subscribe-btn:hover,
#apitech-watch-btn:hover {
    background: rgba(255,255,255,0.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    #apitech-catalog-section {
        padding: 60px 0 !important;
        min-height: 50vh !important;
    }
    
    #apitech-catalog-container {
        padding: 0 20px !important;
    }
    
    #apitech-catalog-cards-wrapper {
        flex-direction: column !important;
        gap: 20px !important;
    }
    
    .apitech-catalog-card-unique {
        height: 280px !important;
    }
    
    #apitech-general-content,
    #apitech-video-content {
        bottom: 30px !important;
        left: 30px !important;
        right: 30px !important;
    }
    
    #apitech-general-subtitle,
    #apitech-video-subtitle {
        font-size: 12px !important;
        margin-bottom: 15px !important;
    }
    
    #apitech-general-title,
    #apitech-video-title {
        font-size: 24px !important;
        margin-bottom: 20px !important;
    }
    
    #apitech-general-btn {
        font-size: 12px !important;
        padding: 10px 25px !important;
    }
    
    #apitech-general-arrow {
        width: 18px !important;
        height: 18px !important;
        font-size: 10px !important;
    }
    
    #apitech-video-buttons {
        gap: 10px !important;
    }
    
    #apitech-subscribe-btn,
    #apitech-watch-btn {
        font-size: 11px !important;
        padding: 8px 16px !important;
    }
}
