.martyrs-page-section {
    min-height: 60vh;
    padding: 80px 0;
    background: #f8f9fa;
}

.page-header {
    margin-bottom: 3rem;
}

.page-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color, #dc3545);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.page-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color, #dc3545) 0%, var(--secondary-color, #c82333) 100%);
    margin: 0 auto;
    border-radius: 2px;
}

.martyr-card-page {
    transition: all 0.3s ease;
    overflow: hidden;
}

.martyr-card-page:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

.martyr-image-wrapper-page {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #e9ecef;
}

.martyr-image-page {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.martyr-card-page:hover .martyr-image-page {
    transform: scale(1.1);
}

.martyr-overlay-page {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.martyr-card-page:hover .martyr-overlay-page {
    opacity: 1;
}

.martyr-name-page {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color, #dc3545);
    margin-bottom: 1rem;
}

.martyr-info-list-page {
    text-align: left;
}

.martyr-info-item-page {
    font-size: 0.95rem;
    color: #6c757d;
    margin: 0;
}

.martyr-info-item-page strong {
    color: #2c3e50;
    margin-right: 0.5rem;
}

.pagination {
    margin-top: 3rem;
    margin-bottom: 0;
}

.pagination .page-link {
    color: var(--primary-color, #dc3545);
    border-color: #dee2e6;
    padding: 0.5rem 0.75rem;
}

.pagination .page-link:hover {
    background-color: var(--primary-color, #dc3545);
    color: white;
    border-color: var(--primary-color, #dc3545);
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color, #dc3545);
    border-color: var(--primary-color, #dc3545);
    color: white;
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    background-color: #fff;
    border-color: #dee2e6;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .martyrs-page-section {
        padding: 40px 0;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .martyr-image-wrapper-page {
        height: 250px;
    }
    
    .pagination {
        font-size: 0.9rem;
    }
    
    .pagination .page-link {
        padding: 0.4rem 0.6rem;
    }
}

