/* characters-list.css */
.characters-section {
    padding: 100px 8% 60px; /* فاصله از بالا برای نویگیشن */
    min-height: 100vh;
}

.characters-section h1 {
    text-align: center;
    font-size: 36px;
    color: #e3e8f5;
    text-shadow: 0 0 15px #1e6fff;
    margin-bottom: 40px;
}

.character-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.character-card {
    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: 20px;
    text-align: center;
    width: 220px;
    text-decoration: none;
    color: #e3e8f5;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.character-card:hover {
    transform: translateY(-5px);
    border-color: #1e6fff;
    box-shadow: 0 0 20px rgba(30, 111, 255, 0.4);
}

.character-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #1e6fff;
    box-shadow: 0 0 15px #1e6fff88;
    margin-bottom: 15px;
}

.character-card h3 {
    font-size: 20px;
    margin: 10px 0 5px;
    color: #fff;
    text-shadow: 0 0 8px #1e6fff;
}

.character-card p {
    font-size: 14px;
    color: #a0aabf;
    margin: 0;
}

@media (max-width: 768px) {
    .characters-section {
        padding-top: 60px;
    }
}