/* Forum Page Specific Styles */

.forum-hero {
    background: linear-gradient(135deg, #3742fa 0%, #2f3542 100%);
    padding: 60px 40px;
    border-radius: 20px;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.forum-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><g opacity="0.1"><circle cx="25" cy="25" r="15" fill="none" stroke="white" stroke-width="1"/><circle cx="75" cy="75" r="20" fill="none" stroke="white" stroke-width="1"/><circle cx="75" cy="25" r="10" fill="none" stroke="white" stroke-width="1"/><circle cx="25" cy="75" r="12" fill="none" stroke="white" stroke-width="1"/></g></svg>');
    animation: forumPattern 30s linear infinite;
}

@keyframes forumPattern {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.forum-hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

.forum-hero p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.forum-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
    margin-top: 5px;
}

/* Casino Comparisons */
.casino-comparisons {
    margin-bottom: 60px;
}

.casino-comparisons h2 {
    text-align: center;
    font-size: 36px;
    color: #ffd700;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.comparison-card {
    background: linear-gradient(145deg, #2c3e50 0%, #34495e 100%);
    border-radius: 20px;
    margin-bottom: 30px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    position: relative;
}

.comparison-card.featured {
    border: 3px solid #ffd700;
    box-shadow: 0 20px 40px rgba(255,215,0,0.2);
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.comparison-header {
    padding: 25px 30px 15px;
    position: relative;
}

.trending-badge {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
    animation: trendingPulse 2s ease-in-out infinite;
}

@keyframes trendingPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.comparison-header h3 {
    color: #ffd700;
    font-size: 24px;
    margin-bottom: 15px;
}

.comparison-meta {
    display: flex;
    gap: 20px;
    color: #b8c9e0;
    font-size: 14px;
    flex-wrap: wrap;
}

.comparison-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.comparison-content {
    padding: 0 30px 30px;
}

/* Comparison Table */
.comparison-table {
    background: rgba(0,0,0,0.1);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 25px;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    min-height: 60px;
}

.comparison-row.header-row {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
}

.comparison-row:nth-child(even):not(.header-row) {
    background: rgba(255,255,255,0.02);
}

.comparison-cell {
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
}

.comparison-cell:last-child {
    border-right: none;
}

.comparison-cell.homebet88 {
    background: linear-gradient(135deg, rgba(255,215,0,0.1) 0%, rgba(255,215,0,0.05) 100%);
    color: #ffd700;
    font-weight: bold;
}

.comparison-cell.homebet88 i {
    margin-right: 5px;
    font-size: 16px;
}

.comparison-cell.competitor {
    color: #b8c9e0;
}

.comparison-cell img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    border-radius: 50%;
    opacity: 0;
}

.comparison-verdict {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.comparison-verdict h4 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 18px;
}

.comparison-verdict p {
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    margin: 0;
}

/* Comparison Highlights */
.comparison-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.highlight-card {
    background: rgba(0,0,0,0.1);
    padding: 20px;
    border-radius: 15px;
}

.highlight-card h4 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 16px;
}

.highlight-card ul {
    list-style: none;
    padding: 0;
}

.highlight-card li {
    color: #e0e6ed;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.highlight-card li i {
    color: #27ae60;
    font-size: 12px;
}

.player-quotes {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quote {
    background: rgba(255,255,255,0.02);
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
}

.quote p {
    color: #e0e6ed;
    font-style: italic;
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.5;
}

.quote cite {
    color: #b8c9e0;
    font-size: 12px;
    font-weight: bold;
}

/* Poll Results */
.poll-results {
    margin-bottom: 25px;
}

.poll-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(0,0,0,0.1);
    border-radius: 10px;
}

.poll-item.winner {
    background: linear-gradient(135deg, rgba(255,215,0,0.1) 0%, rgba(255,215,0,0.05) 100%);
    border: 2px solid #ffd700;
}

.poll-casino {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 120px;
    font-weight: bold;
}

.poll-casino img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    opacity: 0;
}

.poll-bar {
    flex: 1;
    height: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.poll-fill {
    height: 100%;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
    border-radius: 10px;
    transition: width 1s ease-in-out;
}

.poll-percentage {
    font-weight: bold;
    color: #ffd700;
    min-width: 50px;
    text-align: right;
}

.poll-summary {
    background: rgba(255,215,0,0.1);
    padding: 20px;
    border-radius: 15px;
    border: 2px solid rgba(255,215,0,0.2);
}

.poll-summary h4 {
    color: #ffd700;
    margin-bottom: 10px;
}

.poll-summary p {
    color: #e0e6ed;
    margin: 0;
    line-height: 1.6;
}

/* Join Discussion Button */
.join-discussion-btn,
.discussion-btn {
    background: linear-gradient(135deg, #3742fa 0%, #2f3542 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.join-discussion-btn:hover,
.discussion-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(55, 66, 250, 0.4);
}

/* Player Discussions */
.player-discussions {
    margin-bottom: 60px;
}

.player-discussions h2 {
    text-align: center;
    font-size: 36px;
    color: #ffd700;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

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

.discussion-card {
    background: linear-gradient(145deg, #16a085 0%, #1abc9c 100%);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.discussion-card.hot {
    background: linear-gradient(145deg, #e74c3c 0%, #c0392b 100%);
    animation: hotDiscussion 3s ease-in-out infinite;
}

@keyframes hotDiscussion {
    0%, 100% { box-shadow: 0 0 15px rgba(231, 76, 60, 0.3); }
    50% { box-shadow: 0 0 30px rgba(231, 76, 60, 0.6), 0 0 40px rgba(231, 76, 60, 0.4); }
}

.discussion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.discussion-badge {
    background: rgba(255,255,255,0.2);
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

.discussion-badge.hot {
    background: rgba(255,255,255,0.3);
    animation: badgeGlow 2s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% { text-shadow: 0 0 5px rgba(255,255,255,0.5); }
    50% { text-shadow: 0 0 15px rgba(255,255,255,0.8); }
}

.discussion-badge.new {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.discussion-badge.popular {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
}

.discussion-header h3 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 15px;
}

.discussion-meta {
    display: flex;
    gap: 15px;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.discussion-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.discussion-content p {
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    margin-bottom: 15px;
}

.latest-reply {
    background: rgba(0,0,0,0.1);
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 15px;
}

.latest-reply strong {
    color: #ffd700;
}

.latest-reply em {
    color: #ffffff;
    font-weight: bold;
}

/* Tips & Strategies */
.tips-strategies {
    margin-bottom: 60px;
}

.tips-strategies h2 {
    text-align: center;
    font-size: 36px;
    color: #ffd700;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

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

.tip-card {
    background: linear-gradient(145deg, #8e44ad 0%, #9b59b6 100%);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tip-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(142, 68, 173, 0.3);
}

.tip-header {
    text-align: center;
    margin-bottom: 20px;
}

.tip-header img {
    width: auto;
    height: 150px;
    margin-bottom: 40px;
    display: block;
		margin: 0 auto;
}

.tip-header h3 {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 10px;
}

.tip-author {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.tip-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 15px;
    line-height: 1.6;
}

.tip-content ul {
    list-style: none;
    margin-bottom: 20px;
}

.tip-content li {
    color: rgba(255,255,255,0.9);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.tip-content li i {
    color: #ffd700;
    font-size: 12px;
}

.tip-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.rating-stars i {
    color: #ffd700;
    font-size: 16px;
}

/* Community Rules */
.community-rules {
    margin-bottom: 40px;
}

.rules-card {
    background: linear-gradient(145deg, #2c3e50 0%, #34495e 100%);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
}

.rules-card h3 {
    color: #ffd700;
    font-size: 24px;
    margin-bottom: 25px;
}

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

.rule {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255,255,255,0.02);
    border-radius: 10px;
}

.rule i {
    color: #27ae60;
    font-size: 18px;
}

.rule span {
    color: #e0e6ed;
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .forum-hero {
        padding: 40px 20px;
    }
    
    .forum-hero h1 {
        font-size: 28px;
    }
    
    .forum-stats {
        gap: 20px;
    }
    
    .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .comparison-highlights {
        grid-template-columns: 1fr;
    }
    
    .discussions-grid,
    .tips-grid {
        grid-template-columns: 1fr;
    }
		.tip-card {
			max-width: 320px;
		}
		.tip-header img {
			width: 270px !important;
		}
    
    .rules-content {
        grid-template-columns: 1fr;
    }
    
    .poll-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .poll-casino {
        justify-content: center;
    }
    
    .poll-bar {
        width: 100%;
    }
}