/* character-profile.css */
.character-section {
    padding: 100px 8% 60px;
    min-height: 100vh;
}

.profile-container {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    background: linear-gradient(90deg, rgba(0, 255, 255, 0.1) 0%, transparent 100%), rgba(15, 15, 20, 0.8);
    border: 1px solid #0ff;
    border-radius: 20px;
    padding: 40px;
    margin: 0 auto;
    max-width: 900px;
    transition: all 0.5s ease;
}

.profile-container:hover {
    border-color: #1e6fff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
    transform: translateY(-10px) scale(1.02);
}

.profile-image-box {
    flex-shrink: 0;
}

.profile-image-box img {
    width: 218px;
    height: 256px;
    border-radius: 16px;
    object-fit: cover;
    border: 2px solid #1e6fff;
    box-shadow: 0 0 20px #1e6fff88;
}

.profile-info {
    flex-grow: 1;
    color: #e3e8f5;
}

.info-row {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(30, 111, 255, 0.1);
}

.info-label {
    font-weight: bold;
    color: #0ff;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
}

.info-value {
    font-size: 24px;
    color: #fff;
    text-shadow: 0 0 10px #1e6fff;
}

/* آیتم ها و ماشین ها */
.items-container, .cars-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}

.item-box, .car-box {
    background: rgba(30, 111, 255, 0.1);
    border: 1px solid rgba(30, 111, 255, 0.3);
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    transition: all 0.3s;
}

.item-box {
    width: 90px;
}

.car-box {
    width: 170px;
}

.item-box:hover, .car-box:hover {
    background: rgba(30, 111, 255, 0.2);
    border-color: #0ff;
    transform: translateY(-3px);
}

.item-box img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 8px;
}

.car-box img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    margin-bottom: 8px;
}

.item-name, .car-name {
    font-size: 12px;
    color: #e3e8f5;
    display: block;
}

/* ریسپانسیو */
@media (max-width: 768px) {
    .character-section {
        padding-top: 100px;
    }
    .profile-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 25px;
    }
    .items-container, .cars-container {
        justify-content: center;
    }
}