/* Forum Page Specific Styles */
body {
    padding-top: 100px;
}

/* Forum Hero */
.forum-hero {
    padding: 60px 0;
    text-align: center;
    background: radial-gradient(circle at center, rgba(255, 107, 107, 0.1) 0%, transparent 70%);
}

.forum-hero h1 {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ff6b6b, #6c5ce7);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.forum-hero h2 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffd700;
}

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

.table-wrapper {
    overflow-x: auto;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(108, 92, 231, 0.3);
}

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

.comparison th,
.comparison td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(108, 92, 231, 0.2);
}

.comparison th {
    background: linear-gradient(45deg, #6c5ce7, #a855f7);
    color: white;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comparison td {
    color: #cccccc;
    font-weight: 500;
}

.comparison .winner {
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.2), rgba(0, 255, 136, 0.1));
    color: #ffd700;
    font-weight: 700;
    position: relative;
}

.comparison .winner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.1), rgba(0, 255, 136, 0.05));
    animation: winnerGlow 2s ease-in-out infinite alternate;
}

@keyframes winnerGlow {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Why mvia88 Section */
.why-mvia88 {
    padding: 60px 0;
}

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

.reason-card {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(0, 255, 136, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

.reason-card:hover {
    transform: translateY(-10px);
    border-color: #00ff88;
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.3);
}

.reason-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.reason-content {
    padding: 25px;
    text-align: center;
}

.reason-content i {
    font-size: 2.5rem;
    color: #00ff88;
    margin-bottom: 15px;
    animation: float 3s ease-in-out infinite;
}

.reason-content h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffd700;
}

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

/* mvia88 Extras */
.mvia88-extras {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(26, 26, 46, 0.5));
}

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

.extra-item {
    background: rgba(108, 92, 231, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(108, 92, 231, 0.3);
    transition: all 0.4s ease;
}

.extra-item:hover {
    transform: translateY(-5px);
    background: rgba(108, 92, 231, 0.2);
    box-shadow: 0 15px 30px rgba(108, 92, 231, 0.3);
}

.extra-item i {
    font-size: 2.5rem;
    color: #6c5ce7;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

.extra-item:nth-child(2) i {
    animation-delay: 0.5s;
}

.extra-item:nth-child(3) i {
    animation-delay: 1s;
}

.extra-item:nth-child(4) i {
    animation-delay: 1.5s;
}

.extra-item h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffd700;
}

.extra-item p {
    color: #cccccc;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    text-align: center;
}

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

/* Responsive Design for Forum */
@media (max-width: 1024px) {
    .forum-hero h1 {
        font-size: 2.2rem;
    }
    
    .forum-hero h2 {
        font-size: 1.3rem;
    }
    
    .comparison th,
    .comparison td {
        padding: 15px 10px;
        font-size: 14px;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .reason-card {
        margin-bottom: 20px;
    }
    
    .reason-content {
        padding: 20px;
    }
    
    .extras-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .extra-item {
        padding: 25px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .forum-hero h1 {
        font-size: 1.8rem;
    }
    
    .forum-hero h2 {
        font-size: 1.1rem;
    }
    
    .comparison th,
    .comparison td {
        padding: 12px 8px;
        font-size: 12px;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .reason-card img {
        height: 120px;
    }
    
    .reason-content {
        padding: 15px;
    }
    
    .reason-content i {
        font-size: 2rem;
    }
    
    .reason-content h3 {
        font-size: 1.1rem;
    }
    
    .extras-grid {
        grid-template-columns: 1fr;
    }
    
    .extra-item {
        padding: 20px 15px;
    }
}