/* Forum/Comparison Page Styles */

.hero {
    padding: 8rem 0 4rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(139, 0, 0, 0.2));
}

.hero-title {
    font-size: 3rem;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.hero-description {
    font-size: 1.2rem;
    color: #ccc;
}

/* Comparison Table */
.comparison {
    padding: 4rem 0;
}

.comparison-table {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(10px);
}

.table-header {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    background: linear-gradient(45deg, #8B0000, #B22222);
    font-weight: 700;
    text-align: center;
}

.table-header .feature-col {
    text-align: left;
    padding: 1.5rem;
}

.table-header .casino-col {
    padding: 1.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.table-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.table-row:hover {
    background: rgba(255, 215, 0, 0.1);
}

.feature-col {
    padding: 1.5rem;
    font-weight: 600;
    color: #FFD700;
    background: rgba(0, 0, 0, 0.3);
}

.casino-col {
    padding: 1.5rem;
    text-align: center;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.casino-col.winner {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.1));
    color: #FFD700;
    font-weight: 700;
    position: relative;
}

.casino-col.winner::before {
    content: '👑';
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

/* Why DB222 Wins */
.why-db222 {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.2);
}

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

.advantage-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.advantage-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    animation: pulse 3s ease-in-out infinite;
}

.advantage-card h3 {
    color: #FFD700;
    margin-bottom: 1rem;
}

.advantage-card p {
    color: #ccc;
    line-height: 1.6;
}

/* Extras Section */
.extras {
    padding: 4rem 0;
}

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

.extra-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

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

.extra-card i {
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 1rem;
    animation: float 4s ease-in-out infinite;
}

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

.extra-card h3 {
    color: #FFD700;
    margin-bottom: 1rem;
}

.extra-card p {
    color: #ccc;
    line-height: 1.6;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero {
        padding: 6rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .comparison-table {
        overflow-x: auto;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 1.5fr 0.8fr 0.8fr 0.8fr 0.8fr;
        min-width: 600px;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .extras-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .table-header,
    .table-row {
        font-size: 0.9rem;
    }
    
    .feature-col,
    .casino-col {
        padding: 1rem;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .extras-grid {
        grid-template-columns: 1fr;
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

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