/* Forum Page Specific Styles */

/* Forum Hero */
.forum-hero {
    background: linear-gradient(135deg, #dc3545 0%, #fd7e14 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.forum-hero .hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    animation: slideInLeft 1s ease-out;
}

.forum-hero .hero-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: slideInLeft 1s ease-out 0.2s both;
}

.hero-highlight {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    animation: slideInLeft 1s ease-out 0.4s both;
}

.hero-highlight i {
    color: #ffd700;
    font-size: 1.2rem;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Comparison Table */
.comparison-table {
    padding: 80px 0;
    background: #f8f9fa;
}

.table-wrapper {
    overflow-x: auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.comparison {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.comparison th,
.comparison td {
    padding: 20px 15px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.comparison th {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 10;
}

.comparison th.winner {
    background: linear-gradient(45deg, #28a745, #20c997);
    position: relative;
}

.comparison th.winner::after {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #ffd700;
}

.comparison td.winner {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0fff0 100%);
    font-weight: 600;
    color: #28a745;
    position: relative;
}

.comparison td.winner i {
    color: #ffd700;
    margin-left: 5px;
}

.comparison tr:hover {
    background: #f8f9fa;
}

.comparison td:first-child {
    text-align: left;
    font-weight: 600;
    color: #333;
}

/* Why Wins Section */
.why-wins {
    padding: 80px 0;
    background: white;
}

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

.win-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #28a745;
    text-align: center;
}

.win-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.win-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
    animation: bounce 2s infinite;
}

.win-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

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

.win-stats {
    text-align: center;
}

.stat-highlight {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

/* Exclusive Features */
.exclusive-features {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.feature-image {
    width: auto;
    height: 200px;
    border-radius: 10%;
    margin: 0 auto 20px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
}
.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

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

.feature-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Migration Stories */
.migration-stories {
    padding: 80px 0;
    background: #f8f9fa;
}

.migration-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.migration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

.player-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.player-info i {
    font-size: 2.5rem;
    color: #ff6b35;
}

.player-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.player-info span {
    font-size: 12px;
    color: #666;
    background: #f8f9fa;
    padding: 4px 8px;
    border-radius: 10px;
}

.switch-badge {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.migration-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.improvement-stats {
    display: flex;
    gap: 20px;
    font-size: 12px;
    flex-wrap: wrap;
}

.improvement-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #e8f5e8;
    color: #28a745;
    padding: 5px 10px;
    border-radius: 15px;
    font-weight: 600;
}

/* Detailed Comparison */
.detailed-comparison {
    padding: 80px 0;
    background: white;
}

.comparison-categories {
    max-width: 1000px;
    margin: 0 auto;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.category-tab {
    background: transparent;
    border: 2px solid #ff6b35;
    color: #ff6b35;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.category-tab.active,
.category-tab:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-2px);
}

.category-content {
    display: none;
}

.category-content.active {
    display: block;
}

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

.comparison-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.comparison-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.comparison-details {
    space-y: 10px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row.winner {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0fff0 100%);
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 600;
    color: #28a745;
}

.casino {
    font-weight: 600;
    color: #333;
}

.value {
    color: #666;
}

.detail-row.winner .value {
    color: #28a745;
}

/* Comparison CTA */
.comparison-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.benefit-item i {
    font-size: 1.5rem;
    color: #ffd700;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.cta-buttons .btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .forum-hero .hero-title {
        font-size: 2.2rem;
    }
    
    .comparison {
        font-size: 12px;
    }
    
    .comparison th,
    .comparison td {
        padding: 15px 10px;
    }
    
    .wins-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .migration-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .category-tabs {
        gap: 10px;
    }
    
    .category-tab {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-benefits {
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .forum-hero {
        padding: 60px 0;
    }
    
    .forum-hero .hero-title {
        font-size: 1.8rem;
    }
    
    .table-wrapper {
        margin: 0 -15px;
        border-radius: 0;
    }
    
    .comparison th,
    .comparison td {
        padding: 10px 8px;
        font-size: 11px;
    }
    
    .migration-card {
        padding: 20px;
    }
    
    .improvement-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .category-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-benefits {
        flex-direction: column;
        gap: 15px;
    }
}