/**
 * Forum Page Content Styles (excluding ticker, header, and footer)
 */

/* Main Content Container */
.main {
    padding: var(--space-10, 3rem) 0;
}

/* Hero Section */
.hero-section {
    text-align: center;
    margin-bottom: var(--space-10, 3rem);
}
.page-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: var(--space-2, 0.75rem);
    letter-spacing: -1px;
}
.page-subtitle {
    font-size: 1.25rem;
    color: #bfc6d1;
    margin-bottom: 0;
}

/* Comparison Table */
.comparison-section {
    margin-bottom: var(--space-10, 3rem);
}
.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: var(--space-6, 2rem);
    text-align: center;
    letter-spacing: -0.5px;
}
.comparison-table-container {
    overflow-x: auto;
    background: #202532;
    border-radius: 16px;
    box-shadow: 0 2px 16px 0 rgba(0,0,0,0.12);
    padding: var(--space-4, 1.5rem);
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
    background: transparent;
}
.comparison-table th,
.comparison-table td {
    padding: 0.75rem 1rem;
    text-align: center;
    border-bottom: 1px solid #232a36;
    font-size: 1rem;
}
.comparison-table th {
    background: #232a36;
    color: #ffd700;
    font-weight: 700;
    font-size: 1.05rem;
}
.comparison-table td {
    color: #f5f6fa;
    background: transparent;
}
.comparison-table .winner {
    color: #232a36;
    background: linear-gradient(90deg, #ffd700 60%, #fffbe6 100%);
    font-weight: 800;
    border-radius: 8px;
    box-shadow: 0 1px 4px 0 rgba(255,215,0,0.08);
}
.comparison-table tr:last-child td {
    border-bottom: none;
}

/* Why Choose Section */
.why-choose-section {
    margin-bottom: var(--space-10, 3rem);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-6, 2rem);
}
.feature-card {
    background: #232a36;
    border-radius: 16px;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.10);
    padding: var(--space-6, 2rem) var(--space-4, 1.5rem);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3, 1rem);
    min-height: 260px;
}
.feature-icon {
    background: linear-gradient(135deg, #ffd700 0%, #fffbe6 100%);
    color: #232a36;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin-bottom: 0.5rem;
}
.feature-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffd700;
    margin: 0 0 0.25rem 0;
}
.feature-content p {
    color: #bfc6d1;
    font-size: 0.98rem;
    margin-bottom: 0.5rem;
}
.feature-content img {
    width: 100%;
    max-width: 120px;
    border-radius: 8px;
    margin-top: 0.5rem;
    background: #232a36;
    object-fit: cover;
}

/* Reviews Section */
.reviews-section {
    margin-bottom: var(--space-10, 3rem);
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-6, 2rem);
}
.review-card {
    background: #232a36;
    border-radius: 16px;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.10);
    padding: var(--space-6, 2rem) var(--space-4, 1.5rem);
    display: flex;
    flex-direction: column;
    gap: var(--space-3, 1rem);
}
.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}
.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.reviewer-info img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #181c23;
    object-fit: cover;
    border: 2px solid #ffd700;
}
.reviewer-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #ffd700;
    margin: 0 0 0.15rem 0;
}
.rating {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    font-size: 0.95rem;
}
.rating i {
    color: #ffd700;
    font-size: 1rem;
}
.rating span {
    color: #bfc6d1;
    margin-left: 0.3rem;
    font-size: 0.95rem;
}
.review-content p {
    color: #f5f6fa;
    font-size: 1rem;
    margin: 0;
}

/* Sports Betting Discussion */
.sports-section {
    margin-bottom: var(--space-10, 3rem);
}
.sports-topics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-6, 2rem);
}
.topic-card {
    background: #232a36;
    border-radius: 16px;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.10);
    padding: var(--space-6, 2rem) var(--space-4, 1.5rem);
    display: flex;
    flex-direction: column;
    gap: var(--space-3, 1rem);
    min-height: 220px;
    position: relative;
}
.topic-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffd700;
    margin: 0 0 0.15rem 0;
}
.topic-meta {
    color: #bfc6d1;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}
.topic-content p {
    color: #f5f6fa;
    font-size: 0.98rem;
    margin-bottom: 0.5rem;
}
.topic-stats {
    display: flex;
    gap: 1.5rem;
    color: #ffd700;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}
.topic-stats i {
    margin-right: 0.3rem;
}
.topic-card img {
    width: 100%;
    max-width: 120px;
    border-radius: 8px;
    margin-top: 0.5rem;
    background: #232a36;
    object-fit: cover;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #232a36 0%, #2e3440 100%);
    border-radius: 20px;
    box-shadow: 0 2px 16px 0 rgba(0,0,0,0.12);
    padding: var(--space-10, 3rem) var(--space-6, 2rem);
    text-align: center;
    margin-bottom: var(--space-10, 3rem);
}
.cta-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: var(--space-3, 1rem);
}
.cta-content p {
    color: #bfc6d1;
    font-size: 1.1rem;
    margin-bottom: var(--space-6, 2rem);
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-4, 1.5rem);
    flex-wrap: wrap;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 var(--space-3, 12px);
    }
    .features-grid,
    .reviews-grid,
    .sports-topics {
        grid-template-columns: 1fr 1fr;
    }
    .comparison-table-container {
        padding: var(--space-2, 0.75rem);
    }
}
@media (max-width: 768px) {
    .main {
        padding: var(--space-6, 2rem) 0;
    }
    .features-grid,
    .reviews-grid,
    .sports-topics {
        grid-template-columns: 1fr;
    }
    .comparison-table {
        font-size: 0.95rem;
        min-width: 500px;
    }
    .cta-section {
        padding: var(--space-6, 2rem) var(--space-3, 1rem);
    }
    .floating-buttons {
        bottom: 1rem;
        right: 1rem;
    }
}
@media (max-width: 480px) {
    .main {
        padding: var(--space-3, 1rem) 0;
    }
    .page-title {
        font-size: 1.5rem;
    }
    .section-title {
        font-size: 1.1rem;
    }
    .cta-content h2 {
        font-size: 1.2rem;
    }
    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    .floating-buttons {
        bottom: 0.5rem;
        right: 0.5rem;
        gap: 0.5rem;
    }
}
