/* Forum Page Specific Styles */

/* Forum Hero */
.forum-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.forum-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(33, 150, 243, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.forum-hero .container {
    position: relative;
    z-index: 2;
}

.forum-hero .hero-title {
    background: linear-gradient(135deg, #2196f3, #21cbf3, #e91e63);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

/* Comparison Table */
.comparison {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
}

.comparison-table {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(233, 30, 99, 0.2);
    backdrop-filter: blur(10px);
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    font-weight: 700;
    color: white;
}

.table-header > div {
    padding: 20px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.table-header > div:last-child {
    border-right: none;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    border-bottom: 1px solid rgba(233, 30, 99, 0.1);
    transition: background 0.3s ease;
}

.table-row:hover {
    background: rgba(233, 30, 99, 0.1);
}

.table-row > div {
    padding: 20px;
    text-align: center;
    border-right: 1px solid rgba(233, 30, 99, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.table-row > div:last-child {
    border-right: none;
}

.feature-col {
    text-align: left !important;
    justify-content: flex-start !important;
    font-weight: 600;
    color: #ffffff;
}

.uok-col {
    color: #ffffff;
    font-weight: 700;
}

.competitor-col {
    color: #b0b0b0;
}

.winner {
    color: #4caf50 !important;
    position: relative;
}

.winner::after {
    content: '🏆';
    margin-left: 8px;
}

.uok-col i.fa-check {
    color: #4caf50;
    font-size: 1.2rem;
}

.competitor-col i.fa-times {
    color: #f44336;
    font-size: 1.2rem;
}

/* Why UOK */
.why-uok {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

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

.reason-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(76, 175, 80, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.reason-card:hover {
    transform: translateY(-10px);
    border-color: rgba(76, 175, 80, 0.5);
    box-shadow: 0 15px 30px rgba(76, 175, 80, 0.2);
}

.reason-card i {
    font-size: 3rem;
    color: #4caf50;
    margin-bottom: 20px;
    display: block;
}

.reason-card h3 {
    color: #ffffff;
    margin-bottom: 15px;
}

.reason-card p {
    color: #b0b0b0;
}

/* UOK Extras */
.uok-extras {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
}

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

.extra-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.extra-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

.extra-card i {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 20px;
    display: block;
}

.extra-card h3 {
    color: #ffffff;
    margin-bottom: 15px;
}

.extra-card p {
    color: #b0b0b0;
}

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

/* Responsive Design for Forum */
@media (max-width: 768px) {
    .comparison-table {
        overflow-x: auto;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        min-width: 600px;
    }
    
    .table-header > div,
    .table-row > div {
        padding: 15px 10px;
        font-size: 0.9rem;
    }
    
    .reasons-grid,
    .extras-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .comparison-table {
        margin: 0 -15px;
    }
    
    .table-header > div,
    .table-row > div {
        padding: 12px 8px;
        font-size: 0.8rem;
    }
    
    .feature-col {
        font-size: 0.8rem !important;
    }
}