/* ==========================================
   BOOKMAKERS / TOP BOOKMAKERS SPECIFIC STYLES
   ========================================== */

/* HERO BOOKMAKERS */
.hero-bookmakers {
    min-height: 70vh;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: var(--spacing-lg);
}

.hero-feature {
    background: rgba(212,175,55,0.15);
    padding: 10px 20px;
    border-radius: 25px;
    border: 1px solid rgba(212,175,55,0.3);
    font-weight: 600;
    color: var(--accent-gold);
}

/* BOOKMAKERS INTRO */
.bookmakers-intro {
    background: var(--secondary-dark);
    padding: var(--spacing-lg) 0;
    text-align: center;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h2 {
    color: var(--accent-gold);
    margin-bottom: var(--spacing-md);
    font-size: 2rem;
}

.intro-content p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* DETAILED BOOKMAKER CARDS */
.bookmaker-detailed {
    background: var(--secondary-dark);
    border-radius: var(--border-radius);
    margin-bottom: var(--spacing-xl);
    border: 2px solid rgba(212,175,55,0.2);
    overflow: hidden;
    transition: var(--transition-normal);
}

.bookmaker-detailed:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
}

.bookmaker-header {
    background: var(--primary-dark);
    padding: var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    border-bottom: 1px solid rgba(212,175,55,0.2);
}

.rank-badge {
    padding: 15px 25px;
    border-radius: var(--border-radius-sm);
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: var(--shadow-gold);
}

.rank-badge.gold {
    background: var(--gradient-accent);
    color: var(--primary-dark);
}

.rank-badge.silver {
    background: linear-gradient(135deg, #c0c0c0 0%, #e8e8e8 100%);
    color: var(--primary-dark);
}

.rank-badge.bronze {
    background: linear-gradient(135deg, #cd7f32 0%, #e6a15b 100%);
    color: var(--primary-dark);
}

.bookmaker-logo {
    flex: 1;
    text-align: center;
}

.bookmaker-logo img {
    max-height: 70px;
    width: auto;
    filter: brightness(1.2);
}

.bookmaker-rating {
    text-align: right;
}

.rating-score {
    display: block;
    margin-top: 8px;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--accent-gold);
}

.bookmaker-body {
    padding: var(--spacing-lg);
}

.bookmaker-body h3 {
    color: var(--accent-gold);
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
}

.bookmaker-bonus {
    background: rgba(212,175,55,0.1);
    border-left: 4px solid var(--accent-gold);
    border-radius: var(--border-radius-sm);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.bonus-highlight {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.bonus-icon {
    font-size: 3rem;
}

.bonus-title {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.bonus-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.bookmaker-review {
    background: rgba(212,175,55,0.05);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-sm);
    border-left: 3px solid var(--accent-gold);
    margin-bottom: var(--spacing-lg);
}

.bookmaker-review p {
    color: var(--text-muted);
    line-height: 1.8;
    font-style: italic;
}

.bookmaker-review strong {
    color: var(--accent-gold);
}

.bookmaker-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.feature-box {
    background: var(--primary-dark);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(212,175,55,0.2);
}

.feature-box h4 {
    color: var(--accent-gold);
    margin-bottom: var(--spacing-sm);
    font-size: 1.1rem;
}

.feature-box ul {
    list-style: none;
    padding: 0;
}

.feature-box li {
    color: var(--text-muted);
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.9rem;
}

.feature-box li:last-child {
    border-bottom: none;
}

.pros-cons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.pros,
.cons {
    padding: var(--spacing-md);
    border-radius: var(--border-radius-sm);
}

.pros {
    background: rgba(46, 125, 50, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.cons {
    background: rgba(211, 47, 47, 0.1);
    border: 1px solid rgba(229, 57, 53, 0.3);
}

.pros h4,
.cons h4 {
    margin-bottom: var(--spacing-sm);
    font-size: 1.2rem;
}

.pros h4 {
    color: #81c784;
}

.cons h4 {
    color: #e57373;
}

.pros ul,
.cons ul {
    list-style: none;
    padding: 0;
}

.pros li,
.cons li {
    color: var(--text-muted);
    padding: 6px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.4;
}

.pros li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #81c784;
    font-weight: 700;
}

.cons li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: #e57373;
    font-weight: 700;
    font-size: 1.2rem;
}

.bookmaker-cta {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* COMPARISON TABLE */
.comparison {
    background: var(--secondary-dark);
}

.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: var(--spacing-lg);
}

.comparison-table {
    width: 100%;
    min-width: 700px;
    border-collapse: collapse;
    background: var(--primary-dark);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.comparison-table thead {
    background: var(--gradient-accent);
}

.comparison-table th {
    padding: var(--spacing-md);
    text-align: left;
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1rem;
}

.comparison-table td {
    padding: var(--spacing-md);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.highlight-row {
    background: rgba(212,175,55,0.05);
}

.highlight-row td {
    color: var(--text-light);
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .bookmaker-header {
        flex-direction: column;
        text-align: center;
    }
    
    .bookmaker-rating {
        text-align: center;
    }
    
    .bookmaker-features-grid {
        grid-template-columns: 1fr;
    }
    
    .pros-cons {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        font-size: 0.85rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 10px;
    }
}

