/* General Container for both Single Cards and Comparison Tables */
.igaming-card, .ig-comparison-container {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin: 30px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    width: 100%; /* Forces full width on desktop */
    box-sizing: border-box;
}

/* --- SINGLE CASINO CARD STYLES --- */
.igaming-card { display: flex; align-items: center; padding: 20px; }
.igaming-card-logo { width: 120px; flex-shrink: 0; text-align: center; }
.igaming-card-logo img { max-width: 100%; height: auto; border-radius: 8px; }
.igaming-card-content { flex-grow: 1; padding: 0 25px; }
.brand-name { margin: 0; font-size: 22px; color: #1a202c; font-weight: 700; }
.brand-offer { font-weight: 800; font-size: 18px; color: #c53030; margin: 5px 0; }
.brand-rating { color: #f6ad55; font-size: 14px; margin-bottom: 5px; }
.igaming-btn { display: block; background: #38a169; color: #fff !important; text-align: center; padding: 12px; border-radius: 8px; text-decoration: none !important; font-weight: bold; transition: background 0.3s; }
.igaming-btn:hover { background: #2f855a; }

/* --- COMPARISON TABLE STYLES (Desktop Optimized) --- */
.ig-comparison-header, .ig-comparison-row, .ig-comparison-footer { 
    display: flex; 
    align-items: center; 
    width: 100%;
    border-bottom: 1px solid #edf2f7; 
}

.ig-comparison-header { background: #f8fafc; padding: 20px 0; }

/* Desktop Column Widths */
.ig-col-feature { width: 20%; padding: 0 20px; font-weight: bold; color: #4a5568; font-size: 14px; text-transform: uppercase; letter-spacing: 0.5px; }
.ig-col-brand { width: 35%; text-align: center; }
.ig-col-vs { width: 10%; text-align: center; font-weight: 900; color: #cbd5e0; font-size: 18px; }
.ig-col-data { width: 35%; text-align: center; padding: 20px; color: #2d3748; font-size: 15px; line-height: 1.4; }

.ig-col-brand img { max-width: 90px; height: auto; margin-bottom: 10px; border-radius: 6px; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
.ig-col-brand h4 { margin: 0; font-size: 18px; color: #1a202c; }

.igaming-btn-small { 
    background: #38a169; 
    color: #fff !important; 
    padding: 10px 20px; 
    border-radius: 6px; 
    text-decoration: none !important; 
    font-size: 13px; 
    font-weight: bold; 
    display: inline-block;
    transition: background 0.3s;
}
.igaming-btn-small:hover { background: #2f855a; }

/* T&C Toggle Styles */
.brand-terms-toggle { margin-top: 8px; font-size: 11px; }
.tg-link { color: #718096; text-decoration: underline; cursor: pointer; }
.terms-content { font-size: 10px; color: #a0aec0; margin-top: 5px; background: #f7fafc; padding: 8px; border-radius: 4px; display: none; }

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    .igaming-card { flex-direction: column; text-align: center; }
    .igaming-card-content { padding: 15px 0; }
    
    .ig-col-feature { display: none; } /* Hide "Feature" label on mobile to save space */
    .ig-col-brand, .ig-col-data { width: 45%; }
    .ig-col-vs { width: 10%; font-size: 14px; }
    
    .ig-col-brand h4 { font-size: 14px; }
    .ig-col-data { font-size: 13px; padding: 10px; }
    .igaming-btn-small { padding: 8px 10px; font-size: 11px; }
}