/* Forum/Comparison Page Specific Styles */

.comparison-hero {
    background: 
        radial-gradient(circle at 25% 35%, rgba(255, 215, 0, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 75% 65%, rgba(34, 139, 34, 0.12) 0%, transparent 50%),
        linear-gradient(135deg, rgba(26, 26, 26, 0.85), rgba(13, 13, 13, 0.95));
    position: relative;
    overflow: hidden;
}

.comparison-hero::after {
    content: '📊📈🏆';
    position: absolute;
    top: 15%;
    right: 8%;
    font-size: 3.5rem;
    opacity: 0.08;
    animation: float 8s ease-in-out infinite;
}

/* Main Comparison Table */
.main-comparison {
    background: rgba(26, 26, 26, 0.3);
}

.comparison-container {
    overflow-x: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.comparison-table-wrapper {
    min-width: 600px;
}

.comparison-table {
    width: 100%;
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.comparison-table th {
    background: var(--gradient-primary);
    color: var(--dark-bg);
    padding: 1.5rem 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    border-bottom: 2px solid rgba(255, 215, 0, 0.5);
    font-family: 'Oswald', sans-serif;
}

.comparison-table .winner-col {
    background: var(--gradient-green);
    position: relative;
}

.comparison-table .winner-col::after {
    content: '👑';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

.comparison-table td {
    padding: 1.2rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.comparison-table tr:hover td {
    background: rgba(255, 215, 0, 0.05);
}

.feature-name {
    font-weight: 600;
    color: var(--text-light);
    text-align: left !important;
    background: rgba(255, 215, 0, 0.05);
}

.winner {
    background: rgba(34, 139, 34, 0.2);
    color: var(--casino-green);
    font-weight: 700;
    position: relative;
    animation: winnerGlow 3s ease-in-out infinite;
}

@keyframes winnerGlow {
    0%, 100% { box-shadow: inset 0 0 10px rgba(34, 139, 34, 0.3); }
    50% { box-shadow: inset 0 0 20px rgba(34, 139, 34, 0.6); }
}

.winner::before {
    content: '🏆';
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
}

/* Why Yesb Wins Section */
.why-yesb-wins {
    background: rgba(13, 13, 13, 0.5);
}

.advantage-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.advantage-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.3);
    border-color: var(--primary-gold);
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: all 0.5s ease;
    transform: rotate(45deg);
    opacity: 0;
}

.advantage-card:hover::before {
    animation: shimmer 1.5s ease-in-out;
    opacity: 1;
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--dark-bg);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}

.advantage-card h3 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
}

.advantage-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.advantage-stats {
    background: rgba(255, 215, 0, 0.1);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-gold);
}

.stat {
    display: block;
    text-align: center;
}

.stat strong {
    display: block;
    color: var(--primary-gold);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.stat small {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Exclusive Perks Section */
.exclusive-perks {
    background: rgba(26, 26, 26, 0.5);
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.perk-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
}

.perk-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.perk-card.holiday {
    border-left: 5px solid #ff6b35;
}

.perk-card.weekly {
    border-left: 5px solid var(--casino-green);
}

.perk-card.vip {
    border-left: 5px solid var(--primary-gold);
}

.perk-card.support {
    border-left: 5px solid var(--casino-red);
}

.perk-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.perk-header i {
    font-size: 2rem;
    color: var(--primary-gold);
    background: rgba(255, 215, 0, 0.1);
    padding: 0.8rem;
    border-radius: 50%;
}

.perk-header h3 {
    color: var(--primary-gold);
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
}

.perk-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.perk-card ul {
    list-style: none;
}

.perk-card ul li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

/* Detailed Comparison Bars */
.detailed-comparison {
    background: rgba(13, 13, 13, 0.8);
}

.feature-breakdown {
    display: grid;
    gap: 3rem;
}

.feature-section {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.feature-section h3 {
    color: var(--primary-gold);
    margin-bottom: 2rem;
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    text-align: center;
}

.comparison-bars {
    display: grid;
    gap: 1.5rem;
}

.bar-item {
    display: grid;
    grid-template-columns: 100px 1fr 120px;
    align-items: center;
    gap: 1rem;
}

.casino-name {
    font-weight: 600;
    color: var(--text-light);
}

.progress-bar {
    background: rgba(255, 255, 255, 0.1);
    height: 25px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.progress {
    height: 100%;
    border-radius: 15px;
    transition: width 2s ease-in-out;
    position: relative;
}

.progress.yesb {
    background: var(--gradient-green);
    animation: winnerPulse 3s ease-in-out infinite;
}

.progress.competitor {
    background: rgba(255, 255, 255, 0.3);
}

@keyframes winnerPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progressShine 2s ease-in-out infinite;
}

@keyframes progressShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.value {
    font-weight: 600;
    color: var(--primary-gold);
    text-align: right;
}

/* Security Section */
.security-licensing {
    background: rgba(26, 26, 26, 0.8);
}

.security-info {
    max-width: 800px;
    margin: 0 auto;
}

.security-card {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--casino-green);
    position: relative;
}

.security-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-green);
    border-radius: 15px;
    z-index: -1;
    animation: securityGlow 4s ease-in-out infinite;
}

@keyframes securityGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.security-card i {
    font-size: 4rem;
    color: var(--casino-green);
    margin-bottom: 1.5rem;
    background: rgba(34, 139, 34, 0.1);
    padding: 1.5rem;
    border-radius: 50%;
    display: inline-block;
}

.security-card h3 {
    color: var(--casino-green);
    margin-bottom: 1rem;
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
}

.security-card p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.security-card ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.security-card ul li {
    color: var(--text-light);
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
}

.license-badge {
    background: var(--gradient-green);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    display: inline-block;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(34, 139, 34, 0.3);
}

.license-badge span {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
}

.license-badge strong {
    display: block;
    font-size: 1.1rem;
    margin-top: 0.3rem;
}

/* Final CTA Section */
.final-cta {
    background: var(--gradient-primary);
    color: var(--dark-bg);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-bg);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    margin-bottom: 2rem;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    background: var(--dark-bg);
    color: var(--primary-gold);
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-large:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.trust-indicators span {
    background: rgba(13, 13, 13, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .bar-item {
        grid-template-columns: 80px 1fr 100px;
        gap: 0.5rem;
    }
    
    .advantage-card,
    .perk-card {
        padding: 1.5rem;
    }
    
    .advantage-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .perks-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-indicators {
        gap: 1rem;
    }
    
    .trust-indicators span {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }
    
    .security-card {
        padding: 2rem;
    }
    
    .security-card i {
        font-size: 3rem;
        padding: 1rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .comparison-table th,
    .comparison-table td {
        padding: 0.6rem 0.3rem;
        font-size: 0.8rem;
    }
    
    .bar-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0.8rem;
    }
    
    .trust-indicators {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-section {
        padding: 1.5rem;
    }
    
    .advantage-card h3 {
        font-size: 1.2rem;
    }
    
    .perk-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}
