.character-hero {
    background-image:linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.2)),  url('../images/characters/hero-bg.jpeg');
    background-size: cover;
    background-position: center;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.character-hero .hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.character-hero h2 {
    color: var(--secondary-color);
    font-size: 3em;
    margin-bottom: 20px;
    font-family: 'Ma Shan Zheng', cursive;
}

.character-hero p {
    font-size: 2em;
}

.character-grid-section {
    padding: 60px 0;
    background-color: #f9f6f2;
}

.character-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.character-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.character-card:hover {
    transform: translateY(-5px);
}

.character-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.character-info {
    padding: 20px;
    text-align: center;
}

.character-info h4 {
    font-size: 1.5em;
    margin: 0 0 5px;
    font-family: 'Ma Shan Zheng', cursive;
}

.character-title {
    color: #8b0000;
    font-size: 1.1em;
    margin: 0 0 15px;
}

.character-detail {
    font-size: 0.9em;
    color: #666;
    line-height: 1.6;
}

.character-relations {
    padding: 60px 0;
    background-color: #fff;
}

.relation-chart {
    height: 600px;
    margin-top: 30px;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
}

.modal-content {
    position: relative;
    background-color: #fff;
    margin: 10% auto;
    padding: 30px;
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
}

.close-modal:hover {
    color: #000;
}

.modal-title {
    font-size: 2em;
    margin-bottom: 20px;
    font-family: 'Ma Shan Zheng', cursive;
    color: #8b0000;
}

.modal-description {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
    text-indent: 2em;
}

.modal-quote {
    font-style: italic;
    color: #666;
    padding: 20px;
    border-left: 3px solid #8b0000;
    background-color: #f9f6f2;
    margin-top: 20px;
}
