/* Comparison Section Styles */
.comparison-section {
    padding: 100px 0;
    position: relative;
    margin-top: 80px;
}

.comparison-table {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-top: 40px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.comparison-table:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.comparison-table .table {
    margin-bottom: 0;
}

.comparison-table th {
    background: linear-gradient(45deg, #f8f9fa, #ffffff);
    font-weight: 600;
    padding: 25px 20px;
    border: none;
    font-size: 18px;
    color: #2c2c2c;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.comparison-table td {
    padding: 20px;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 16px;
    vertical-align: middle;
    transition: all 0.3s ease;
}

.comparison-table th.verimap,
.comparison-table td.verimap {
    background: linear-gradient(45deg, rgba(13, 202, 240, 0.08), rgba(13, 110, 253, 0.12));
}

.comparison-table th.desktop,
.comparison-table td.desktop {
    background: linear-gradient(45deg, rgba(255, 193, 7, 0.08), rgba(255, 171, 0, 0.12));
}

.comparison-table .fa-check {
    color: #198754;
    font-size: 20px;
    background: rgba(25, 135, 84, 0.2);
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(25, 135, 84, 0.2);
}

.comparison-table .fa-times {
    color: #dc3545;
    font-size: 20px;
    background: rgba(220, 53, 69, 0.2);
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(220, 53, 69, 0.2);
}

.comparison-table .rating {
    color: #ffc107;
    font-size: 18px;
    display: flex;
    gap: 5px;
}

.comparison-table .rating i {
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
}

.comparison-table .rating i:hover {
    transform: scale(1.2);
    text-shadow: 0 0 15px rgba(255, 193, 7, 0.5);
}

.comparison-note {
    background: linear-gradient(45deg, #fff3cd, #fff8e1);
    border-radius: 15px;
    padding: 25px;
    margin-top: 40px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid rgba(133, 100, 4, 0.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.comparison-note:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.comparison-note .note-icon {
    color: #856404;
    font-size: 28px;
    flex-shrink: 0;
    background: rgba(133, 100, 4, 0.15);
    padding: 12px;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(133, 100, 4, 0.1);
}

.comparison-note p {
    color: #856404;
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    font-weight: 500;
}

.comparison-table .platform-header {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.comparison-table .platform-header i {
    font-size: 24px;
    background: rgba(13, 202, 240, 0.2);
    padding: 12px;
    border-radius: 50%;
    color: #0dcaf0;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(13, 202, 240, 0.3);
}

.comparison-table .platform-header span {
    font-weight: 600;
    font-size: 18px;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.comparison-table td:first-child {
    display: flex;
    align-items: center;
    gap: 10px;
}

.comparison-table td:first-child i {
    color: #0dcaf0;
    font-size: 18px;
    background: rgba(13, 202, 240, 0.2);
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(13, 202, 240, 0.2);
}

.comparison-table td:first-child:hover i {
    transform: scale(1.1);
    background: rgba(13, 202, 240, 0.2);
    box-shadow: 0 0 15px rgba(13, 202, 240, 0.2);
}

.comparison-table th.verimap .platform-header i {
    background: rgba(13, 202, 240, 0.25);
    color: #0dcaf0;
    box-shadow: 0 0 20px rgba(13, 202, 240, 0.4);
}

.comparison-table th.desktop .platform-header i {
    background: rgba(255, 193, 7, 0.25);
    color: #ffc107;
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.4);
}

@media (max-width: 767px) {
    .comparison-section {
        padding: 60px 0;
        margin-top: 40px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 15px;
        font-size: 14px;
    }
    
    .comparison-table .fa-check,
    .comparison-table .fa-times {
        font-size: 16px;
        padding: 6px;
    }
    
    .comparison-note {
        padding: 20px;
        margin-top: 30px;
    }
    
    .comparison-note p {
        font-size: 14px;
    }
    
    .comparison-note .note-icon {
        font-size: 24px;
        padding: 10px;
    }
    
    .comparison-table .platform-header {
        flex-direction: column;
        gap: 5px;
    }
    
    .comparison-table .platform-header i {
        font-size: 20px;
        padding: 8px;
    }
    
    .comparison-table .platform-header span {
        font-size: 16px;
    }
    
    .comparison-table td:first-child i {
        font-size: 16px;
        padding: 6px;
    }
} 