/* Forum Page Styles */

/* Hero Section */
.hero-forum {
    padding: 150px 0 100px;
    background: radial-gradient(ellipse at center, rgba(138, 43, 226, 0.1) 0%, transparent 70%),
                linear-gradient(135deg, var(--dark-bg) 0%, #2a0a2a 100%);
    text-align: center;
}

.hero-forum h1 {
    font-family: 'Orbitron', monospace;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #8A2BE2 0%, #FFD700 50%, #FF8C00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-forum h2 {
    font-size: 24px;
    color: var(--primary-gold);
    margin-bottom: 25px;
}

/* Comparison Table */
.comparison-table {
    padding: 100px 0;
}

.comparison-table h2 {
    font-family: 'Orbitron', monospace;
    font-size: 36px;
    color: var(--primary-gold);
    margin-bottom: 60px;
    text-align: center;
}

.table-wrapper {
    overflow-x: auto;
    background: var(--gradient-dark);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow-card);
}

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

.comparison thead th {
    background: var(--gradient-main);
    color: var(--dark-bg);
    padding: 20px 15px;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    border: none;
}

.comparison thead th.winner {
    background: linear-gradient(135deg, #FFD700 0%, #FF8C00 100%);
    position: relative;
}

.comparison thead th.winner::after {
    content: '🏆';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 24px;
    background: var(--primary-red);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s infinite;
}

.comparison tbody tr {
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

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

.comparison td {
    padding: 20px 15px;
    text-align: center;
    border: none;
}

.feature-name {
    font-weight: 700;
    color: var(--text-gold);
    text-align: left !important;
    font-family: 'Orbitron', monospace;
}

.lgo4d-cell {
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 18px;
}

.winner-cell {
    background: rgba(255, 215, 0, 0.1);
    position: relative;
}

.winner-cell::before {
    content: '✓';
    position: absolute;
    top: 5px;
    right: 5px;
    color: var(--primary-green);
    font-weight: 900;
    font-size: 20px;
}

.competitor-cell {
    color: #888;
    font-weight: 500;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Why LGO4D Wins */
.why-lgo4d-wins {
    padding: 100px 0;
    background: var(--dark-surface);
}

.why-lgo4d-wins h2 {
    font-family: 'Orbitron', monospace;
    font-size: 36px;
    color: var(--primary-gold);
    margin-bottom: 60px;
    text-align: center;
}

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

.reason-card {
    background: var(--gradient-dark);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.reason-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.reason-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-main);
    border-radius: 15px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.reason-card:hover::before {
    opacity: 0.1;
}

.reason-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.reason-icon i {
    font-size: 36px;
    color: var(--dark-bg);
}

.reason-card h3 {
    font-family: 'Orbitron', monospace;
    color: var(--primary-gold);
    font-size: 22px;
    margin-bottom: 15px;
}

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

.reason-games,
.payment-methods,
.dealer-games,
.betting-matches {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.game-item,
.payment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.game-item img,
.payment-item img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: linear-gradient(45deg, var(--primary-gold), var(--accent-orange));
}

.game-item span,
.payment-item span {
    font-size: 12px;
    color: var(--primary-gold);
    font-weight: 600;
    text-align: center;
}

.dealer-games img {
    width: 60px;
    height: 40px;
    border-radius: 5px;
    background: linear-gradient(45deg, var(--primary-blue), var(--primary-green));
}

/* CTA Grid */
.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.cta-card {
    background: var(--gradient-gold);
    border-radius: 12px;
    padding: 28px 22px;
    text-align: center;
    box-shadow: 0 2px 16px 0 rgba(255, 215, 0, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    color: var(--dark-bg);
}

.cta-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 6px 24px 0 rgba(255, 215, 0, 0.18);
}

.cta-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-blue);
}

.cta-card p {
    font-size: 15px;
    margin-bottom: 18px;
    color: var(--dark-bg);
}

.cta-card .cta-btn {
    display: inline-block;
    background: var(--primary-blue);
    color: #fff;
    padding: 8px 22px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s;
}

.cta-card .cta-btn:hover {
    background: var(--primary-green);
    color: var(--primary-gold);
}


.match-item {
    display: flex;
		flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 215, 0, 0.1);
    padding: 10px 15px;
    border-radius: 10px;
    margin-bottom: 10px;
    min-width: 200px;
}

.odds {
    background: var(--primary-green);
    color: var(--dark-bg);
    padding: 5px 10px;
    border-radius: 10px;
    font-weight: 700;
}

/* Extra Perks */
.extra-perks {
    padding: 100px 0;
}

.extra-perks h2 {
    font-family: 'Orbitron', monospace;
    font-size: 36px;
    color: var(--primary-gold);
    margin-bottom: 60px;
    text-align: center;
}

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

.perk-card {
    background: var(--gradient-dark);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.perk-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.perk-img {
    display: flex;
    justify-content: center;
    align-items: center;
		margin: 0 auto;
    margin-bottom: 20px;
    height: 150px;
    width: auto;
    background: rgba(255, 215, 0, 0.08);
    border-radius: 10px;
    box-shadow: 0 2px 8px 0 rgba(255, 215, 0, 0.08);
}

.perk-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.perk-card h3 {
    font-size: 20px;
    color: var(--text-gold);
    margin-bottom: 15px;
}

.perk-card p {
    color: #cccccc;
    line-height: 1.5;
}

/* Detailed Comparison */
.detailed-comparison {
    padding: 100px 0;
    background: var(--dark-surface);
}

.detailed-comparison h2 {
    font-family: 'Orbitron', monospace;
    font-size: 36px;
    color: var(--primary-gold);
    margin-bottom: 60px;
    text-align: center;
}

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

.comp-card {
    background: var(--gradient-dark);
    border-radius: 15px;
    padding: 30px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.comp-card.lgo4d-card {
    border: 2px solid var(--primary-gold);
    background: linear-gradient(135deg, var(--dark-surface) 0%, rgba(255, 215, 0, 0.1) 100%);
    transform: scale(1.05);
}

.comp-card.competitor-card:hover {
    border-color: #666;
    transform: translateY(-5px);
}

.comp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
}

.comp-header h3 {
    font-family: 'Orbitron', monospace;
    font-size: 24px;
    color: var(--primary-gold);
}

.rating {
    text-align: right;
}

.stars {
    color: var(--primary-gold);
    font-size: 18px;
    display: block;
    margin-bottom: 5px;
}

.score {
    font-weight: 700;
    font-size: 16px;
    color: var(--text-light);
}

.comp-features {
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.feature-item i {
    font-size: 16px;
}

.feature-item.limited {
    opacity: 0.6;
}

.feature-item i.fa-check-circle {
    color: var(--primary-green);
}

.feature-item i.fa-times-circle {
    color: var(--primary-red);
}

.comp-games h4 {
    color: var(--text-gold);
    margin-bottom: 15px;
    font-family: 'Orbitron', monospace;
}

.comp-games ul {
    list-style: none;
    padding: 0;
}

.comp-games li {
    padding: 5px 0;
    color: #cccccc;
    position: relative;
    padding-left: 20px;
}

.comp-games li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-size: 12px;
}

.comp-btn {
    width: 100%;
    padding: 15px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    display: block;
    margin-top: 25px;
    transition: all 0.3s ease;
}

.winner-btn {
    background: var(--gradient-main);
    color: var(--dark-bg);
}

.winner-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.comp-btn:not(.winner-btn) {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
}

.comp-btn:not(.winner-btn):hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
}

/* Forum CTA */
.forum-cta {
    padding: 80px 0;
    background: var(--dark-bg);
}

.forum-cta-card {
    background: var(--gradient-dark);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: var(--text-light);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: block;
}

.forum-cta-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.forum-cta-card i {
    font-size: 40px;
    color: var(--primary-gold);
    margin-bottom: 20px;
    display: block;
}

.forum-cta-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 18px;
    color: var(--text-gold);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-forum h1 {
        font-size: 32px;
    }
    
    .table-wrapper {
        padding: 20px;
    }
    
    .comparison {
        font-size: 14px;
    }
    
    .comparison th,
    .comparison td {
        padding: 15px 10px;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .reason-card {
        padding: 25px;
    }
    
    .perks-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
    
    .comparison-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .comp-card.lgo4d-card {
        transform: none;
    }
    
    .reason-games,
    .payment-methods {
        flex-direction: column;
        align-items: center;
    }
    
    .match-item {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .hero-forum {
        padding: 120px 0 80px;
    }
    
    .hero-forum h1 {
        font-size: 24px;
    }
    
    .hero-forum h2 {
        font-size: 18px;
    }
    
    .table-wrapper {
        padding: 15px;
        overflow-x: scroll;
    }
    
    .comparison {
        min-width: 500px;
        font-size: 12px;
    }
    
    .comparison th,
    .comparison td {
        padding: 10px 8px;
    }
    
    .reason-card,
    .perk-card,
    .comp-card {
        padding: 20px;
    }
    
    .reason-icon {
        width: 60px;
        height: 60px;
    }
    
    .reason-icon i {
        font-size: 28px;
    }
    
    .comp-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}