body {
    background-color: green;
}

/* Image Carousel Section - Simple & Clean */
.image-carousel-section {
    margin-top: 40px;
    margin-bottom: 60px;
    padding: 0 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.image-card-row {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 214, 0, 0.2);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-card-row:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 214, 0, 0.15);
}

.card-images-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.card-images-row img {
    flex: 1;
    width: 50%;
    border-radius: 12px;
    cursor: pointer;
    object-fit: cover;
    aspect-ratio: 16/10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-images-row img:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(255, 214, 0, 0.25);
}

.image-card-info {
    text-align: center;
}

.image-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #FFD600;
}

/* Zoom Modal */
.zoom-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.zoom-img {
    max-width: 90%;
    max-height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.zoom-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
}

.zoom-close:hover {
    color: #FFD600;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive */
@media (max-width: 600px) {
    .image-carousel-section {
        padding: 0 12px;
    }
    
    .image-card-row {
        padding: 12px;
        margin-bottom: 16px;
    }
    
    .card-images-row {
        gap: 8px;
    }
    
    .card-images-row img {
        border-radius: 10px;
        aspect-ratio: 16/11;
    }
    
    .image-card-title {
        font-size: 13px;
    }
}