/* Forum/Comparison Page Specific Styles */

/* Comparison Hero */
.comparison-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.1) 0%, rgba(0, 255, 255, 0.1) 100%);
    text-align: center;
}

.comparison-hero h1 {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials {
	padding-bottom: 80px;
}

.quick-stats, .special-events {
	padding: 80px 0;
}

/* Stats Table */
.stats-table {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 1px;
    background: var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.stats-row {
    display: contents;
}

.stats-cell {
    background: var(--card-bg);
    padding: 20px 15px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.stats-row.header .stats-cell {
    background: var(--gradient-1);
    color: white;
    font-weight: 900;
    font-size: 1.1rem;
}

.stats-cell.jiliapp {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 0, 128, 0.1));
    color: var(--text-light);
    font-weight: 700;
}

.stats-cell.competitor {
    color: var(--text-gray);
}

.stats-cell:hover {
    background: rgba(255, 0, 128, 0.1);
    transform: scale(1.02);
}

/* Reason Cards */
.reason-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
}

.reason-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 0, 128, 0.3);
    border-color: var(--primary-color);
}

.reason-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.reason-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-light);
    font-weight: 700;
}

.reason-card p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.reason-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
}

/* Event Cards */
.event-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
    border-color: #ffd700;
}

.event-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--dark-bg);
}

.event-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-light);
    font-weight: 700;
}

.event-card p {
    color: var(--text-gray);
    margin-bottom: 15px;
    font-size: 14px;
}

.event-date {
    background: var(--gradient-2);
    color: white;
    padding: 8px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.1) 0%, rgba(0, 255, 255, 0.1) 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
}

.cta-stats .stat-item {
    text-align: center;
}

.cta-stats .stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    font-family: 'Orbitron', monospace;
    display: block;
}

.cta-stats .stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .stats-table {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .stats-cell {
        padding: 15px;
        text-align: left;
    }
    
    .stats-row.header .stats-cell:not(:first-child) {
        display: none;
    }
    
    .comparison-hero h1 {
        font-size: 2rem;
    }
    
    .cta-stats {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .reason-card,
    .event-card {
        padding: 20px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}
