/* Forum/Comparison Page Specific Styles */

/* Comparison Hero */
.comparison-hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, #1a0b2b 0%, #2d1b69 50%, #1a0b2b 100%);
    text-align: center;
}

.comparison-hero h1 {
    font-size: 2.3rem;
    background: linear-gradient(135deg, #ff006e, #ffd700);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #ffd700;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-description {
    color: #cccccc;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Comparison Table */
.comparison-table-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0f051a 0%, #1a0b2b 100%);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-bottom: 3rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th {
    background: rgba(255, 255, 255, 0.1);
    font-weight: 600;
    font-size: 1.1rem;
    color: #ffffff;
}

.comparison-table th.winner {
    background: linear-gradient(135deg, #ff006e, #8338ec);
    color: #ffffff;
    position: relative;
}

.comparison-table th.winner::after {
    content: '👑';
    position: absolute;
    top: -10px;
    right: 10px;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.feature-name {
    text-align: left;
    font-weight: 600;
    color: #ffffff;
}

.feature-name i {
    margin-right: 0.5rem;
    color: #ffd700;
}

.kongbet-cell {
    background: rgba(255, 0, 110, 0.1);
    border: 1px solid rgba(255, 0, 110, 0.3);
    font-weight: 600;
}

.winner-cell {
    color: #ffd700;
    position: relative;
}

.winner-cell::before {
    content: '✅ ';
    color: #00ffa5;
}

.table-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Why KongBet Wins */
.why-kongbet-wins {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a0b2b 0%, #0f051a 100%);
}

.why-kongbet-wins h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #00ffa5;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.advantage-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 255, 165, 0.3);
}

.advantage-icon {
    font-size: 3rem;
    color: #ff006e;
    margin-bottom: 1rem;
    text-align: center;
}

.advantage-content h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: center;
}

.advantage-content p {
    color: #cccccc;
    line-height: 1.6;
    text-align: center;
}

/* Exclusive Perks */
.exclusive-perks {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0f051a 0%, #2d1b69 100%);
}

.exclusive-perks h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #ffd700;
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.perk-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.perk-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.perk-icon {
    font-size: 2.5rem;
    color: #ff006e;
    margin-bottom: 1rem;
}

.perk-card h3 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.perk-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Security Section */
.security-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a0b2b 0%, #0f051a 100%);
}

.security-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #00ffa5;
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.security-item {
    background: rgba(0, 255, 165, 0.05);
    border: 1px solid rgba(0, 255, 165, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.security-item:hover {
    background: rgba(0, 255, 165, 0.1);
    transform: translateY(-5px);
    border-color: rgba(0, 255, 165, 0.4);
}

.security-item i {
    font-size: 2.5rem;
    color: #00ffa5;
    margin-bottom: 1rem;
}

.security-item h3 {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.security-item p {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Final CTA */
.final-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0f051a 0%, #1a0b2b 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .comparison-hero h1 {
        font-size: 1.8rem;
    }
    
    .comparison-table-wrapper {
        overflow-x: scroll;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .perks-grid {
        grid-template-columns: 1fr;
    }
    
    .security-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .table-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem;
        font-size: 0.8rem;
    }
    
    .feature-name {
        font-size: 0.9rem;
    }
    
    .advantage-card,
    .perk-card,
    .security-item {
        padding: 1.5rem;
    }
    
    .security-features {
        grid-template-columns: 1fr;
    }
    
    .advantage-icon,
    .perk-icon {
        font-size: 2rem;
    }
}