/* Forum Page Specific Styles */

.forum-hero {
    padding: 60px 0;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(0, 191, 255, 0.1) 0%, transparent 70%);
}

.forum-hero h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #00bfff;
    animation: fadeInUp 0.8s ease-out;
}

.forum-hero p {
    font-size: 18px;
    color: #cccccc;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.comparison-section {
    padding: 80px 0;
}

.comparison-section h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 50px;
    color: #ff1493;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.comparison-table {
    background: rgba(26, 26, 46, 0.9);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 20, 147, 0.3);
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

.table-header, .table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    border-bottom: 1px solid rgba(255, 20, 147, 0.2);
}

.table-header {
    background: linear-gradient(135deg, #ff1493 0%, #9932cc 100%);
    font-weight: 700;
    color: #ffffff;
}

.table-row:hover {
    background: rgba(255, 20, 147, 0.1);
}

.feature-col, .casino-col {
    padding: 15px 20px;
    border-right: 1px solid rgba(255, 20, 147, 0.2);
    display: flex;
    align-items: center;
}

.casino-col:last-child, .feature-col:last-child {
    border-right: none;
}

.casino-col.winner {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    font-weight: 700;
    position: relative;
}

.casino-col.winner::after {
    content: '🏆';
    margin-left: 5px;
}

.feature-col {
    font-weight: 600;
    color: #ffffff;
}

.casino-col {
    color: #cccccc;
    text-align: center;
    justify-content: center;
}

.why-choose {
    padding: 80px 0;
    background: rgba(15, 52, 96, 0.3);
}

.why-choose h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 50px;
    color: #00ff7f;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

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

.reason-card {
    background: rgba(26, 26, 46, 0.9);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(0, 255, 127, 0.3);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}

.reason-card:hover {
    transform: translateY(-5px);
    border-color: #00ff7f;
    box-shadow: 0 15px 30px rgba(0, 255, 127, 0.2);
}

.reason-card i {
    font-size: 48px;
    color: #00ff7f;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

.reason-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

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

.extras-section {
    padding: 80px 0;
}

.extras-section h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 50px;
    color: #ffa500;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

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

.extra-item {
    background: rgba(26, 26, 46, 0.9);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 165, 0, 0.3);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}

.extra-item:hover {
    transform: translateY(-5px);
    border-color: #ffa500;
    box-shadow: 0 10px 25px rgba(255, 165, 0, 0.2);
}

.extra-item img {
    width: 100%;
    height: 120px;
    border-radius: 10px;
    background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
    object-fit: cover;
    margin-bottom: 15px;
}

.extra-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffa500;
    margin-bottom: 10px;
}

.extra-info p {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.4;
}

.sports-predictions {
    padding: 80px 0;
    background: rgba(22, 33, 62, 0.5);
}

.sports-predictions h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 50px;
    color: #ff1493;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

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

.prediction-card {
    background: rgba(26, 26, 46, 0.9);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 20, 147, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}

.prediction-card:hover {
    transform: translateY(-3px);
    border-color: #ff1493;
    box-shadow: 0 10px 20px rgba(255, 20, 147, 0.2);
}

.match-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.match-info p {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.4;
}

.bet-btn {
    background: linear-gradient(135deg, #00ff7f 0%, #32cd32 100%);
    color: #000000;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.bet-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 255, 127, 0.3);
}

.action-section {
    padding: 80px 0;
}

.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.action-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    animation: fadeInUp 0.8s ease-out;
}

.action-btn.primary {
    background: linear-gradient(135deg, #ff1493 0%, #9932cc 100%);
    color: #ffffff;
}

.action-btn.secondary {
    background: linear-gradient(135deg, #00bfff 0%, #1e90ff 100%);
    color: #ffffff;
}

.action-btn.tertiary {
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    color: #000000;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 20, 147, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .forum-hero h1 {
        font-size: 32px;
    }
    
    .forum-hero p {
        font-size: 16px;
    }
    
    .comparison-table {
        overflow-x: auto;
    }
    
    .table-header, .table-row {
        grid-template-columns: 150px 80px 80px 80px;
        min-width: 390px;
    }
    
    .feature-col, .casino-col {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .extras-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .predictions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .prediction-card {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .action-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .forum-hero {
        padding: 40px 0;
    }
    
    .forum-hero h1 {
        font-size: 28px;
    }
    
    .comparison-section, .why-choose, .extras-section, .sports-predictions, .action-section {
        padding: 40px 0;
    }
    
    .reason-card, .extra-item, .prediction-card {
        padding: 20px;
    }
    
    .reason-card i {
        font-size: 36px;
    }
    
    .action-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}