/* ========================================
   Image Styles for VERDICT Website
   ======================================== */

/* === Story Section Images === */
.story-visual {
    max-width: 1000px;
    margin: 0 auto 3rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.story-image {
    width: 100%;
    height: auto;
    display: block;
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.story-visual:hover .story-image {
    transform: scale(1.02);
}

/* === Manual Section Images === */
.manual-screenshot {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.screenshot-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 2px solid rgba(0, 217, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
}

.manual-screenshot:hover .screenshot-image {
    border-color: rgba(0, 217, 255, 0.6);
    box-shadow: 0 15px 60px rgba(0, 217, 255, 0.3);
}

/* === Feature Card Images === */
.feature-image-container {
    margin-bottom: 1.5rem;
    border-radius: 5px;
    overflow: hidden;
}

.feature-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-image {
    transform: scale(1.05);
}

/* === Gameplay Phase Images === */
.gameplay-image-container {
    margin-bottom: 1.5rem;
    border-radius: 5px;
    overflow: hidden;
}

.gameplay-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
    border: 1px solid rgba(0, 217, 255, 0.3);
    transition: all 0.3s ease;
}

.gameplay-phase:hover .gameplay-image {
    border-color: rgba(0, 217, 255, 0.6);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
}

/* === Character Portrait Images === */
.character-portrait {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.character-image {
    max-width: 200px;
    height: auto;
    border-radius: 10px;
    border: 2px solid rgba(139, 92, 246, 0.5);
    transition: all 0.3s ease;
}

.character-card:hover .character-image {
    border-color: var(--color-primary);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.4);
    transform: scale(1.05);
}

.character-card.featured .character-image {
    border-color: var(--color-accent);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
}

/* === Responsive Images === */
@media (max-width: 768px) {
    .story-visual,
    .manual-screenshot {
        margin: 0 1rem 2rem;
    }

    .character-image {
        max-width: 150px;
    }

    .feature-image-container,
    .gameplay-image-container {
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .character-image {
        max-width: 120px;
    }
}
