.top10-header {
    text-align: center;
    margin: 2rem 0 1rem;
}
.top10-header h1 {
    font-size: 2.2rem;
    color: #1a2a3a;
}
.top10-header p {
    font-size: 1.1rem;
    color: #4a5568;
}
.comparison-table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.comparison-table th, .comparison-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}
.comparison-table th {
    background: #f8fafc;
    font-weight: 600;
}
.comparison-table tr:hover {
    background: #faf5ff;
}
.rank-badge {
    display: inline-block;
    width: 32px;
    height: 32px;
    background: #d71718;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    font-weight: bold;
}
.card-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}
.hybrid-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.2s;
}
.hybrid-card:hover {
    transform: translateY(-2px);
}
.card-header {
    background: #f8fafc;
    padding: 1rem 1.5rem;
    border-bottom: 2px solid #d71718;
}
.card-header h3 {
    margin: 0;
    font-size: 1.4rem;
}
.card-body {
    padding: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.card-image {
    flex: 0 0 120px;
}
.card-image img {
    width: 100%;
    border-radius: 12px;
}
.card-details {
    flex: 1;
}
.pros-cons {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    font-size: 0.9rem;
}
.pros {
    color: #2e7d32;
}
.cons {
    color: #c62828;
}
.btn-sm {
    display: inline-block;
    background: #d71718;
    color: white;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    text-decoration: none;
}
.btn-sm:hover {
    background: #a31213;
}
@media (max-width: 640px) {
    .card-body {
        flex-direction: column;
    }
    .card-image {
        text-align: center;
    }
}