/*
 * Mercedes Obsidian Design System
 * Generated automatically - Full redesign
 */

/* ========== CSS VARIABLES ========== */
:root {
    --primary: #ffffff;
    --secondary: #8e8e8e;
    --accent: #00adef;
    --accent-hover: #00bfff;
    --bg: #0d0d0d;
    --bg-alt: #171a20;
    --card-bg: #171a20;
    --text: #ffffff;
    --text-muted: #8e8e8e;
    --success: #3dd68c;
    --gold: #00adef;
    --border: rgba(255,255,255,0.1);
    --shadow: 0 4px 24px rgba(0,0,0,0.5);
    --shadow-hover: 0 12px 40px rgba(232,33,39,0.3);
    --radius: 0;
    --radius-sm: 4px;
    --font: 'Gotham SSm A', 'Gotham SSm B', 'Helvetica Neue', Arial, sans-serif;
}

/* ========== RESET & BASE ========== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary);
}

h1 { font-size: clamp(32px, 5vw, 48px); margin-bottom: 24px; }
h2 { font-size: clamp(24px, 4vw, 36px); margin-bottom: 20px; }
h3 { font-size: clamp(20px, 3vw, 28px); margin-bottom: 16px; }
h4 { font-size: clamp(18px, 2.5vw, 22px); margin-bottom: 12px; }

p {
    margin-bottom: 16px;
    color: var(--text-muted);
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--accent-hover);
}

/* ========== LAYOUT ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 20px;
}

/* ========== HEADER STYLES ========== */

.site-header {
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}
.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-logo img {
    height: auto;
    max-height: 55px;
    min-height: 45px;
    filter: none;
}
.header-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 36px;
}
.header-nav a {
    color: var(--secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}
.header-nav a:hover {
    color: var(--primary);
}
.btn-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.btn-menu span {
    width: 20px;
    height: 2px;
    background: #fff;
}
@media (max-width: 768px) {
    .header-nav { display: none; }
    .btn-menu { display: flex; }
}

/* ========== CASINO TABLE STYLES ========== */

.casino-section {
    padding: 100px 20px;
    background: var(--bg);
}
.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-title {
    font-size: 40px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.section-subtitle {
    font-size: 16px;
    color: var(--secondary);
}
.casino-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.casino-item {
    display: grid;
    grid-template-columns: 60px 120px 1fr 150px 100px 180px;
    gap: 24px;
    align-items: center;
    padding: 28px 32px;
    background: var(--cardBg);
    transition: all 0.3s;
    border-left: 3px solid transparent;
}
.casino-item:hover {
    background: #1d2027;
    border-left-color: var(--accent);
}
.casino-rank {
    font-size: 28px;
    font-weight: 300;
    color: var(--secondary);
}
.casino-logo {
    max-width: 100px;
    max-height: 120px;
    object-fit: contain;
}
.casino-info h3 {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 8px;
}
.casino-features {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.feature-tag {
    background: rgba(255,255,255,0.08);
    color: var(--secondary);
    padding: 4px 10px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.feature-tag.hot {
    background: var(--accent);
    color: #fff;
}
.bonus-value {
    font-size: 24px;
    font-weight: 600;
    color: var(--accent);
}
.bonus-extra {
    font-size: 12px;
    color: var(--secondary);
}
.rating-stars {
    color: var(--accent);
    font-size: 14px;
    letter-spacing: 2px;
}
.rating-num {
    font-size: 14px;
    color: var(--primary);
    font-weight: 500;
    margin-top: 4px;
}
.casino-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.btn-play {
    background: var(--accent);
    color: #fff;
    padding: 12px 24px;
    text-align: center;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s;
}
.btn-play:hover {
    background: var(--accentHover);
}
.btn-review {
    background: transparent;
    color: var(--secondary);
    padding: 10px 24px;
    text-align: center;
    text-decoration: none;
    font-size: 12px;
    border: 1px solid var(--border);
    transition: all 0.2s;
}
.btn-review:hover {
    border-color: var(--accent);
    color: var(--accent);
}
@media (max-width: 1000px) {
    .casino-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 16px;
    }
    .casino-features { justify-content: center; }
    .casino-actions { flex-direction: row; justify-content: center; }
}

/* ========== FOOTER STYLES ========== */
.site-footer {
    background: #000;
    color: var(--text-muted);
    padding: 60px 20px 30px;
    margin-top: 80px;
    
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    margin: 16px 0;
    font-size: 14px;
    line-height: 1.7;
}

.footer-badge {
    display: inline-block;
    background: #00adef20;
    color: var(--accent);
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid var(--accent);
    border-radius: var(--radius-sm);
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: var(--text-muted);
    font-size: 14px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    text-align: center;
    font-size: 13px;
}

.footer-bottom p {
    margin: 4px 0;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* ========== CONTENT BLOCKS ========== */
.content-block {
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 32px;
    margin: 24px 0;
}

.content-block h2,
.content-block h3 {
    color: var(--primary);
}

/* ========== COMPONENTS ========== */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 24px 0;
}

.pros, .cons {
    background: var(--card-bg);
    padding: 24px;
    border-radius: var(--radius);
}

.pros {
    border-left: 4px solid var(--success);
}

.cons {
    border-left: 4px solid var(--accent);
}

.faq-section {
    margin: 40px 0;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    background: var(--bg-alt);
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.faq-question:hover {
    background: var(--accent);
    color: #fff;
}

.faq-answer {
    padding: 20px 24px;
    background: var(--card-bg);
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--bg-alt);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* ========== UTILITIES ========== */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.mb-0 { margin-bottom: 0; }
.mt-4 { margin-top: 24px; }
.mb-4 { margin-bottom: 24px; }

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .section {
        padding: 50px 16px;
    }

    .content-block {
        padding: 24px 20px;
    }

    .pros-cons {
        grid-template-columns: 1fr;
    }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.5s ease-out;
}

/* ========== PRINT STYLES ========== */
@media print {
    .site-header,
    .site-footer,
    .btn {
        display: none;
    }
}

/* Universal logo style */
/* removed max-height 60px limit */

/* Casino logos - remove max-height limit */
img[src*="/logos/"] { max-height: 120px !important; min-height: auto !important; }


/* === Auto-fixed contrast issues === */

/* Fix: Light text for dark header */
header a,
.header a,
.header-nav a,
.header-nav ul li a,
nav a,
.navbar a {
    color: #ffffff !important;
}

header a:hover,
.header a:hover,
.header-nav a:hover,
.header-nav ul li a:hover {
    color: #cccccc !important;
}

/* Fix: Header logo - clean display */
header .logo,
.header .logo,
header .site-logo,
.header-logo,
header a.logo,
header .logo-link {
    background: none;
    padding: 0;
    border-radius: 0;
}
header img {
    background: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    max-height: 55px !important;
    height: auto !important;
}

/* Fix: Light text for dark footer */
footer,
.footer,
footer p,
.footer p,
footer span,
.footer span {
    color: #ffffff !important;
}

footer a,
.footer a,
.footer-nav a,
.footer-links a {
    color: #ffffff !important;
}

footer a:hover,
.footer a:hover,
.footer-nav a:hover,
.footer-links a:hover {
    color: #cccccc !important;
}

/* Fix: Semi-transparent background for logo on dark footer */
footer .logo,
.footer .logo,
footer .site-logo,
.footer-logo,
footer a.logo,
footer .logo-link,
footer img {
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 10px;
    border-radius: 4px;
}

/* Mobile responsive styles */
@media (max-width: 1024px) {
    .swoosh-casino-section, .swoosh-section-inner, .swoosh-casino-list { display: flex !important; flex-direction: column !important; align-items: center !important; }
    .swoosh-casino-item { display: flex !important; flex-direction: column !important; align-items: center !important; text-align: center !important; width: 90% !important; max-width: 400px !important; margin: 10px auto !important; padding: 20px !important; }
    .swoosh-casino-logo img { width: 50vw !important; max-width: 180px !important; height: auto !important; }
    .swoosh-info, .swoosh-features, .swoosh-bonus-col, .swoosh-rating, .swoosh-actions { display: flex !important; flex-direction: column !important; align-items: center !important; text-align: center !important; width: 100% !important; }
    .swoosh-rank { margin: 0 auto 10px !important; }
}

/* Universal mobile responsive styles */
@media (max-width: 1024px) {
    [class*="-casino-section"], [class*="-section-inner"], [class*="-casino-list"], [class*="-casino-grid"] { display: flex !important; flex-direction: column !important; align-items: center !important; }
    [class*="-casino-item"], [class*="-casino-card"], [class*="-casino-row"] { display: flex !important; flex-direction: column !important; align-items: center !important; text-align: center !important; width: 90% !important; max-width: 400px !important; margin: 10px auto !important; padding: 20px !important; }
    [class*="-casino-logo"] img, [class*="-casino-logo"] { width: 50vw !important; max-width: 180px !important; height: auto !important; max-height: none !important; min-height: auto !important; }
    [class*="-info"], [class*="-features"], [class*="-bonus"], [class*="-rating"], [class*="-actions"] { display: flex !important; flex-direction: column !important; align-items: center !important; text-align: center !important; width: 100% !important; }
    [class*="-rank"] { margin: 0 auto 10px !important; }
}

/* Fix header logo on mobile */
@media (max-width: 1024px) {
    [class*="logo"] img,
    header img,
    .site-header img,
    .header-logo img,
    [class*="-logo"] img {
        max-width: 150px !important;
        
        width: auto !important;
        height: auto !important;
    }
}

    .menu-overlay a,
    .menu-overlay .close-btn,
    .menu-overlay span,
    .mobile-menu a,
    .mobile-menu .close-btn,
    .mobile-nav a,
    .header-nav.active a,
    [class*="mobile-menu"] a,
    [class*="menu-overlay"] a {
        color: #ffffff !important;
    }
}

/* Random menu colors - unique for this site */
@media (max-width: 1024px) {
    .menu-overlay,
    .mobile-menu,
    .mobile-nav,
    .header-nav.active,
    [class*="mobile-menu"],
    [class*="menu-overlay"] {
        background: rgb(37, 44, 50) !important;
    }
    .menu-overlay a,
    .menu-overlay .close-btn,
    .menu-overlay span,
    .mobile-menu a,
    .mobile-nav a,
    .header-nav.active a,
    [class*="mobile-menu"] a,
    [class*="menu-overlay"] a {
        color: rgb(243, 239, 242) !important;
    }
}

/* Fix: Remove background from payment SVG icons in footer */
footer svg, .footer svg { background: none !important; padding: 0 !important; }


/* ========== BUG FIXES 2026-02-15 ========== */

/* Fix 1: Header logo too small - make it bigger and visible */
header .site-logo img,
.industrial-header .site-logo img,
header img[src*='logo.webp'] 
    max-height: 120px !important;
    min-height: 45px !important;
    height: auto !important;
    width: auto !important;
    filter: none !important;
    background: none !important;
    padding: 0 !important;

}

/* Fix 2: Casino table logos too large - reduce size */
img[src*="/logos/"]
    max-height: 120px !important;
    min-height: auto !important;
    height: auto !important;
    width: auto !important;
    max-width: 120px !important;
;
}
.casino-logo 
    max-height: 120px !important;
    max-width: 120px !important;
    min-height: auto !important;

}

/* Fix 3: Nav links invisible (white on white header) - fix colors */
.industrial-header a,
.industrial-header .main-nav a,
.industrial-header .main-nav ul li a,
.industrial-header nav a {
    color: #333333 !important;
}
.industrial-header a:hover,
.industrial-header .main-nav a:hover {
    color: #E60012 !important;
}
.industrial-header .site-logo {
    color: #333 !important;
}

/* Fix 4: Star rating icons too large */
.table-row .celestial-stars,
.table-row [style*='color:gold'],
.table-row [style*='color: gold'] {
    font-size: 0.85rem !important;
    color: #E60012 !important;
    letter-spacing: 1px;
}

/* === MOBILE-LOGO-40VW === */
@media (max-width: 1024px) {
  .wh-casino-logo,
  .casino-logo img,
  .casino-logo-wrap img,
  .im-casino-info img,
  .wh-casino-logo-wrapper img,
  .wh-casino-logo-link img,
  .casino-logo-link img,
  [class*="casino-logo"] img,
  [class*="casino-logo"],
  img.wh-casino-logo,
  img.casino-logo,
  .swoosh-casino-logo img,
  .rh-logo img {
    width: 40vw !important;
    max-width: 160px !important;
    min-width: 120px !important;
    height: auto !important;
    max-height: none !important;
    min-height: auto !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
    border-radius: 12px !important;
  }
  .iv-table-row:not(.mi-table-header),
  .casino-row,
  .casino-card,
  .im-casino-info,
  .wh-casino-logo-wrapper,
  .celestial-advantages,
  .celestial-rating,
  .lt-bonus-highlight,
  .action-section-xt,
  .casino-info,
  .casino-bonus,
  .casino-cta,
  .casino-features,
  .casino-actions,
  .casino-logo-wrap {
    text-align: center !important;
    align-items: center !important;
  }
  .mi-table-header,
  .casino-table-header,
  .iv-table-row.mi-table-header {
    display: none !important;
  }
}
/* === END-MOBILE-LOGO-40VW === */

/* === MOBILE RESPONSIVE FIX === */
html,body{max-width:100vw!important;overflow-x:hidden!important}
img,video,iframe,embed,object{max-width:100%!important;height:auto}
table{max-width:100%!important}
.star-icon{width:20px!important;height:20px!important;display:inline-block!important}
.stars-container{display:flex!important;justify-content:center!important;gap:4px!important;flex-wrap:wrap!important}
.rating-container{text-align:center!important;max-width:300px!important;margin:1rem auto!important}
@media(max-width:768px){
.burger-menu,.mobile-menu-btn,[class*="burger"]{display:flex!important;flex-direction:column!important;justify-content:center!important;cursor:pointer!important}
.burger-menu span,.burger-icon,.burger-bar{display:block!important;width:25px!important;height:3px!important;margin:3px 0!important;border-radius:2px!important;transition:.3s!important}
}

/* === HIDE CASINO NAMES UNDER LOGOS === */
[class*="-casino-name"], .casino-name, .dl-casino-name, .gb-casino-name { display: none !important; }

/* CASINO-TABLE-ALIGNMENT-FIX-20260508 */
.comparison-block-xc .mi-table-header > div { text-align: center !important; }
.comparison-block-xc .mi-table-header > div:first-child { text-align: left !important; }
.comparison-block-xc .iv-table-row:not(.mi-table-header) > .celestial-advantages {
    align-items: center !important;
    text-align: center !important;
}
.comparison-block-xc .iv-table-row:not(.mi-table-header) > .celestial-advantages > * { text-align: center !important; }
.comparison-block-xc .iv-table-row:not(.mi-table-header) > .action-section-xt {
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
}
.comparison-block-xc .iv-table-row:not(.mi-table-header) > .im-casino-info {
    justify-content: center !important;
}

/* CASINO-TABLE-ALIGNMENT-FIX-V2-20260508 — universal header centering across all class-name variants */
[class*="-table-header"] > div,
[class*="-table-header"] > div[style] {
    text-align: center !important;
    justify-content: center !important;
}
[class*="-table-header"] [role="columnheader"] {
    text-align: center !important;
}

/* CASINO-TABLE-ALIGNMENT-FIX-V3-20260508 — override V1 first-child left rule */
.comparison-block-xc .mi-table-header > div,
.comparison-block-xc .mi-table-header > div:first-child,
[class*="-table-header"] > div,
[class*="-table-header"] > div:first-child {
    text-align: center !important;
    justify-content: center !important;
}

/* STICKY-FOOTER-IMG-FIX-V1 */
.sticky-footer-inner img{min-height:0!important}


/* cta-card-x-mobile-fix-20260513: mobile responsive for compact CTA cards and BLUF block */
@media (max-width: 540px) {
  .cta-card-x {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    column-gap: 12px !important;
    row-gap: 8px !important;
  }
  .cta-card-x > * { justify-self: center !important; }
  .cta-card-x-btn { width: 100%; max-width: 280px; box-sizing: border-box; }
  .cta-card-x img { grid-row: auto !important; }
  .bluf-block-20260513 {
    margin: 12px auto !important;
    padding: 12px 16px !important;
    font-size: 0.95rem !important;
  }
}

/* heading-faq-fix-20260519 */
h2 { text-align: center !important; }
h3 { text-align: center !important; }
.faq-question.active + div {
  display: block !important;
  max-height: 9999px !important;
  overflow: visible !important;
}

/* logo-center-fix-20260522 */

/* uifix-20260529-d308bc : contrast/blend fix */
html body .bluf-block-20260513, html body .bluf-block-20260513 p, html body .bluf-block-20260513 strong{color:#1f2540!important;-webkit-text-fill-color:#1f2540!important;}html body .bluf-block-20260513 strong{color:#0f1530!important;-webkit-text-fill-color:#0f1530!important;}
