/* Forum Page Specific Styles */

.comparison-table {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f051d 0%, #1a0b2e 100%);
}

.table-wrapper {
    overflow-x: auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.comparison {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Roboto', sans-serif;
}

.comparison th,
.comparison td {
    padding: 15px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.comparison thead {
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.2), rgba(255, 107, 53, 0.2));
}

.comparison th {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: #ffd700;
    font-size: 1.1rem;
}

.comparison th.winner {
    background: linear-gradient(45deg, #ffd700, #ffcc02);
    color: #000;
    border-radius: 10px 10px 0 0;
}

.comparison td {
    color: #ccc;
    font-weight: 500;
}

.comparison td.winner {
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.3), rgba(255, 107, 53, 0.3));
    color: #fff;
    font-weight: 700;
    position: relative;
}

.comparison td.winner::after {
    content: '🏆';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.comparison tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Why GBO4D Section */
.why-gbo4d {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a0b2e 0%, #2d1b3d 100%);
}

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

.reason-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

.reason-icon {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #fff;
}

.reason-card h3 {
    font-family: 'Orbitron', monospace;
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.reason-card p {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.games-list,
.live-games {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.games-list img,
.live-games img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: linear-gradient(45deg, #37b24d, #1c7ed6);
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.method {
    background: linear-gradient(45deg, #1c7ed6, #37b24d);
    color: #fff;
    padding: 8px 15px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.9rem;
}

.sports-odds {
    margin-top: 15px;
}

.match {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    padding: 8px 15px;
    border-radius: 10px;
    margin: 5px 0;
    font-weight: 600;
    font-size: 0.9rem;
}

/* GBO4D Extras Section */
.gbo4d-extras {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d1b3d 0%, #0f051d 100%);
}

.extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.extra-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.extra-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

.extra-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.extra-card h4 {
    font-family: 'Orbitron', monospace;
    color: #ffd700;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.extra-card p {
    color: #ccc;
    line-height: 1.5;
}

/* Detailed Comparison Section */
.detailed-comparison {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a0b2e 0%, #0f051d 100%);
}

.analysis-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.analysis-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.analysis-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-5px);
}

.analysis-card h3 {
    font-family: 'Orbitron', monospace;
    color: #ffd700;
    margin-bottom: 20px;
    font-size: 1.3rem;
    text-align: center;
}

.comparison-item {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    color: #ccc;
    line-height: 1.6;
}

.comparison-item:last-child {
    border-bottom: none;
}

.comparison-item strong {
    color: #ffd700;
}

/* User Reviews Section */
.user-reviews {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f051d 0%, #2d1b3d 100%);
}

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

.review-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.review-card.gbo4d {
    border-color: rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 107, 53, 0.1));
}

.review-card.competitor {
    border-color: rgba(255, 107, 53, 0.3);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.review-header h4 {
    font-family: 'Orbitron', monospace;
    color: #ffd700;
    font-size: 1.1rem;
}

.rating {
    font-size: 1.2rem;
}

.review-card p {
    color: #ccc;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 15px;
}

.reviewer {
    color: #ffd700;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Sports Comparison Section */
.sports-comparison {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a0b2e 0%, #2d1b3d 100%);
}

.sports-table {
    max-width: 800px;
    margin: 0 auto;
}

.sports-table h3 {
    font-family: 'Orbitron', monospace;
    color: #ff6b35;
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.odds-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.odds-table th,
.odds-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.odds-table thead {
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.2), rgba(255, 107, 53, 0.2));
}

.odds-table th {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: #ffd700;
}

.odds-table th.winner {
    background: linear-gradient(45deg, #ffd700, #ffcc02);
    color: #000;
}

.odds-table td {
    color: #ccc;
    font-weight: 500;
}

.odds-table td.winner {
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.3), rgba(255, 107, 53, 0.3));
    color: #fff;
    font-weight: 700;
}

/* Action Section */
.action-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d1b3d 0%, #0f051d 100%);
    text-align: center;
}

.action-content h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 20px;
}

.action-content p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 40px;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.action-btn {
    display: block;
    padding: 15px 30px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.action-btn.primary {
    background: linear-gradient(45deg, #ffd700, #ffcc02);
    color: #000;
    border-color: #ffd700;
}

.action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

.action-btn.primary:hover {
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .table-wrapper {
        padding: 10px;
    }
    
    .comparison th,
    .comparison td {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .analysis-cards {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .comparison th,
    .comparison td {
        padding: 8px;
        font-size: 0.8rem;
    }
    
    .reason-card,
    .analysis-card,
    .review-card {
        margin: 0 10px;
    }
    
    .action-content h2 {
        font-size: 2rem;
    }
    
    .odds-table th,
    .odds-table td {
        padding: 10px;
        font-size: 0.8rem;
    }
}