/* ============================================
   CASAPARIURILOR.INFO - GLOBAL STYLES
   ============================================ */

:root {
    --primary: #1e40af;
    --primary-dark: #1e3a8a;
    --accent: #f59e0b;
    --bg-main: #ffffff;
    --bg-light: #f8fafc;
    --text-dark: #1e293b;
    --text-gray: #64748b;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { overflow-x: hidden; width: 100%; }
body { font-family: 'Poppins', sans-serif; background: var(--bg-light); color: var(--text-dark); line-height: 1.6; }
h1, h2, h3, h4, h5, h6, p, div, span, a { word-wrap: break-word; overflow-wrap: break-word; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; width: 100%; }

/* Buttons */
.btn, .btn-warning { display: inline-block; background: var(--accent); color: white; padding: 14px 28px; border-radius: 10px; font-weight: 700; text-decoration: none; transition: all 0.3s ease; border: none; cursor: pointer; font-size: 15px; }
.btn:hover, .btn-warning:hover { background: #d97706; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-secondary { background: white; color: var(--primary); border: 2px solid var(--primary); padding: 12px 26px; }
.btn-secondary:hover { background: var(--primary); color: white; }

/* Header & Navigation */
header { background: white; box-shadow: var(--shadow-sm); position: sticky; top: 0; z-index: 1000; }
.header-top { background: var(--primary); padding: 10px 0; font-size: 13px; color: white; }
.header-top .container { display: flex; justify-content: flex-end; align-items: center; gap: 15px; }
.language-selector, .theme-toggle { display: flex; align-items: center; gap: 8px; cursor: pointer; padding: 6px 14px; border-radius: 6px; background: rgba(255,255,255,0.15); color: white; font-weight: 600; font-size: 13px; transition: all 0.3s; }
.language-selector:hover, .theme-toggle:hover { background: rgba(255,255,255,0.25); }

/* Dark Theme */
body.dark-theme { background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%); color: #e2e8f0; }
body.dark-theme header { background: #2d3748; }
body.dark-theme .header-top { background: #2d3748; }
body.dark-theme .casino-card, body.dark-theme .content-block, body.dark-theme .faq-item { background: #374151; color: #e2e8f0; }
body.dark-theme .language-selector, body.dark-theme .theme-toggle { background: #4a5568; }
body.dark-theme .hero { background: linear-gradient(135deg, #4c1d95 0%, #5b21b6 100%); }

.nav-main { padding: 15px 0; }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: #2c3e50; }
.logo-text { font-size: 24px; font-weight: 700; color: var(--primary); }
nav ul { display: flex; list-style: none; gap: 30px; }
nav a { text-decoration: none; color: #2c3e50; font-weight: 500; transition: color 0.3s; }
nav a:hover { color: var(--primary); }

/* Desktop Navigation with Dropdown */
.desktop-nav { display: block; }
.desktop-nav > ul { display: flex; list-style: none; gap: 15px; align-items: center; }
.desktop-nav > ul > li { position: relative; }
.desktop-nav > ul > li > a { text-decoration: none; color: var(--text-dark); font-weight: 500; padding: 10px 15px; display: block; transition: color 0.3s; font-size: 15px; }
.desktop-nav > ul > li > a:hover { color: var(--primary); }

/* Dropdown Menu */
.has-dropdown { position: relative; }
.has-dropdown > a::after { content: "▼"; font-size: 10px; margin-left: 6px; color: var(--text-gray); }
.dropdown { position: absolute; top: 100%; left: 0; background: white; min-width: 220px; box-shadow: var(--shadow-lg); border-radius: 8px; padding: 10px 0; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s ease; z-index: 1000; list-style: none; }
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
@media screen and (min-width: 769px) { .desktop-nav > ul > li:nth-child(n+3) .dropdown { left: auto; right: 0; } }
.dropdown li { margin: 0; }
.dropdown li a { padding: 12px 20px; display: block; color: var(--text-dark); text-decoration: none; transition: all 0.2s; font-size: 14px; white-space: nowrap; }
.dropdown li a:hover { background: var(--bg-light); color: var(--primary); padding-left: 25px; }

/* Burger Menu */
.burger-menu { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 10px; z-index: 1001; }
.burger-menu span { width: 28px; height: 3px; background: var(--primary); border-radius: 3px; transition: all 0.3s ease; }
.burger-menu.active span:nth-child(1) { transform: rotate(45deg) translate(8px, 8px); }
.burger-menu.active span:nth-child(2) { opacity: 0; }
.burger-menu.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

/* Mobile Menu Header */
.mobile-menu-header { display: none; position: absolute; top: 0; left: 0; right: 0; padding: 20px 25px; background: white; border-bottom: 1px solid var(--border); justify-content: space-between; align-items: center; }
.mobile-menu-title { font-size: 18px; font-weight: 700; color: var(--primary); }
.mobile-close-btn { background: none; border: none; cursor: pointer; padding: 5px; color: var(--text-dark); display: flex; align-items: center; justify-content: center; transition: color 0.3s; }
.mobile-close-btn:hover { color: var(--primary); }
.mobile-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 1000; opacity: 0; transition: opacity 0.3s ease; }
.mobile-overlay.active { display: block; opacity: 1; }

/* Images responsive */
img { max-width: 100%; height: auto; display: block; }
table { width: 100%; border-collapse: collapse; max-width: 100%; }
section, article, div { max-width: 100%; }

/* Page Navigation */
.page-nav-item:hover { transform: translateY(-4px); box-shadow: 0 8px 20px rgba(0,0,0,0.12) !important; border-color: var(--primary) !important; }
.page-nav-item:active { transform: translateY(-2px); }

/* Hero Section */
.hero { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: white; padding: 60px 0 80px; text-align: center; }
.hero h1 { font-size: 42px; margin-bottom: 20px; font-weight: 800; }
.hero p { font-size: 18px; max-width: 900px; margin: 0 auto 30px; line-height: 1.8; opacity: 0.95; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 40px; }
.feature-card { background: rgba(255,255,255,0.15); padding: 20px; border-radius: 10px; backdrop-filter: blur(10px); }
.feature-icon { font-size: 32px; margin-bottom: 10px; }

/* Casino Cards */
.casinos-section { padding: 60px 0; background: transparent; }
.section-title { text-align: center; font-size: 36px; margin-bottom: 40px; font-weight: 800; color: var(--text-dark); }
.casino-card { background: white; padding: 0; border-radius: 16px; margin-bottom: 24px; transition: all 0.3s ease; border: 1px solid var(--border); overflow: hidden; box-shadow: var(--shadow-sm); }
.casino-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.casino-content { display: grid; grid-template-columns: 200px 1fr auto; gap: 30px; padding: 32px; align-items: center; }
.casino-logo-section { text-align: center; position: relative; background: var(--bg-light); padding: 20px; border-radius: 12px; }
.rank-number { position: absolute; top: -10px; left: -10px; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 20px; color: white; z-index: 10; box-shadow: 0 4px 15px rgba(0,0,0,0.3); }
.rank-number.rank-1 { background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%); }
.rank-number.rank-2 { background: linear-gradient(135deg, #C0C0C0 0%, #808080 100%); }
.rank-number.rank-3 { background: linear-gradient(135deg, #CD7F32 0%, #8B4513 100%); }
.casino-logo { width: 120px; height: 120px; border-radius: 50%; border: 3px solid #e9ecef; object-fit: cover; margin: 20px auto 10px; }
.casino-badges { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-top: 10px; }
.badge { background: #e3f2fd; color: #1976d2; padding: 4px 8px; border-radius: 5px; font-size: 12px; font-weight: 600; }
.casino-type-badge { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; border-radius: 20px; font-size: 13px; font-weight: 600; margin-top: 10px; }
.casino-type-badge svg { flex-shrink: 0; vertical-align: middle; }
.casino-type-badge.both { background: var(--primary); color: white; }
.casino-type-badge.casino-only { background: #9333ea; color: white; }
.casino-info { flex: 1; }
.casino-name { font-size: 24px; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }
.casino-bonus { font-size: 16px; color: var(--text-gray); font-weight: 600; margin-bottom: 16px; padding: 12px 16px; background: #fff3e0; border-left: 4px solid var(--accent); border-radius: 8px; }
.bonus-highlight { color: var(--accent); font-weight: 700; font-size: 18px; }
.casino-features { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 15px; }
.feature-tag { 
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); 
    padding: 8px 14px; 
    border-radius: 20px; 
    font-size: 12px; 
    display: inline-flex; 
    align-items: center; 
    gap: 8px; 
    color: white;
    font-weight: 500;
    border: none;
}
.feature-tag svg { flex-shrink: 0; color: white; width: 16px; height: 16px; }
.casino-rating-section { text-align: center; min-width: 180px; }
.rating-box { background: var(--primary); color: white; padding: 20px; border-radius: 12px; margin-bottom: 15px; }
.rating-number { font-size: 36px; font-weight: 700; margin-bottom: 5px; }
.stars { font-size: 20px; color: #FFD700; }
.accepted-players { display: flex; align-items: center; justify-content: center; gap: 5px; margin-top: 10px; color: #28a745; font-weight: 600; font-size: 14px; }

/* Content Section */
.content-section { padding: 60px 0; background: transparent; }
.content-block { background: white; padding: 40px; border-radius: 16px; margin-bottom: 30px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.content-block h2 { font-size: 28px; margin-bottom: 20px; color: var(--text-dark); font-weight: 700; }
.content-block h3, .content-block h4 { font-size: 22px; margin: 25px 0 15px; color: var(--primary); font-weight: 700; }
.content-block p { margin-bottom: 15px; line-height: 1.8; color: var(--text-gray); }
.content-block a { color: var(--primary); text-decoration: none; font-weight: 600; }
.content-block a:hover { color: var(--primary-dark); text-decoration: underline; }
.content-block ul { list-style: none; padding-left: 0; margin-bottom: 20px; }
.content-block ul { list-style: none; padding-left: 0; }
.content-block ul li { padding: 10px 0; padding-left: 30px; position: relative; color: #495057; }
.content-block ul li:before { content: "✓"; position: absolute; left: 0; color: #28a745; font-weight: 700; font-size: 18px; top: 10px; }
.content-block ol { padding-left: 24px; }
.content-block ol li { padding: 8px 0; color: #495057; }
.content-block ol li::marker { color: var(--primary); font-weight: 700; }
.content-block table { width: 100%; margin: 20px 0; border-collapse: collapse; }
.content-block table td { padding: 15px; text-align: center; border: 1px solid #e9ecef; }
.content-block table img { width: 80px; height: 80px; object-fit: contain; margin-bottom: 10px; }
.content-block table strong { display: block; margin-top: 10px; color: #2c3e50; }

/* Newsletter Section */
.newsletter-section { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); padding: 60px 0; color: white; text-align: center; }
.newsletter-box { max-width: 600px; margin: 0 auto; }
.newsletter-box h3 { font-size: 28px; margin-bottom: 15px; }
.newsletter-box p { font-size: 16px; margin-bottom: 30px; opacity: 0.95; }
.newsletter-form { display: flex; gap: 10px; max-width: 500px; margin: 0 auto; }
.newsletter-form input { flex: 1; padding: 15px 20px; border: none; border-radius: 25px; font-size: 16px; }
.newsletter-form button { padding: 15px 30px; background: white; color: #667eea; border: none; border-radius: 25px; font-weight: 600; cursor: pointer; transition: transform 0.3s; }
.newsletter-form button:hover { transform: translateY(-2px); }

/* FAQ Section */
.faq-section { padding: 60px 0; background: #f8f9fa; }
.faq-item { background: white; margin-bottom: 15px; border-radius: 10px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.faq-question { padding: 20px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; color: #2c3e50; gap: 15px; }
.faq-question svg { width: 36px; height: 36px; min-width: 36px; flex-shrink: 0; }
.section-title svg { width: 36px; height: 36px; }
.faq-question:hover { background: #f8f9fa; }
.faq-answer { padding: 0 20px 20px; color: #495057; display: none; }
.faq-item.active .faq-answer { display: block; }

/* Footer */
footer { background: #2c3e50; color: white; padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-column h4 { margin-bottom: 20px; font-size: 18px; }
.footer-column ul { list-style: none; }
.footer-column a { color: rgba(255,255,255,0.8); text-decoration: none; display: block; padding: 5px 0; transition: color 0.3s; }
.footer-column a:hover { color: white; }
.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.6); }

/* ============ MOBILE RESPONSIVE ============ */
@media screen and (max-width: 768px) {
    .desktop-nav { position: fixed; top: 0; right: -100%; width: 300px; height: 100vh; background: white; box-shadow: -4px 0 20px rgba(0,0,0,0.2); transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1); z-index: 1001; padding: 80px 0 30px; overflow-y: auto; }
    .desktop-nav.active { right: 0; }
    .desktop-nav > ul { flex-direction: column; gap: 0; width: 100%; }
    .desktop-nav > ul > li { width: 100%; border-bottom: 1px solid var(--border); }
    .desktop-nav > ul > li > a { padding: 18px 25px; font-size: 16px; display: block; }
    .has-dropdown > a::after { float: right; }
    .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: var(--bg-light); border-radius: 0; padding: 0; max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
    .has-dropdown.open .dropdown { max-height: 500px; }
    .dropdown li a { padding: 12px 25px 12px 45px; font-size: 14px; }
    .dropdown li a:hover { padding-left: 50px; }
    .burger-menu { display: flex !important; }
    .container { padding: 0 10px; max-width: 100%; }
    header { box-shadow: 0 2px 8px rgba(0,0,0,0.05) !important; }
    .nav-main { padding: 10px 0 !important; }
    .mobile-menu-header { display: flex !important; }
    nav { position: fixed; top: 0; right: -300px; width: 280px; height: 100vh; background: white; box-shadow: -4px 0 20px rgba(0,0,0,0.2); transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1); z-index: 1001; padding: 70px 0 30px; overflow-y: auto; }
    nav.active { right: 0; }
    nav ul { flex-direction: column; gap: 0; width: 100%; }
    nav ul li { width: 100%; border-bottom: 1px solid var(--border); }
    nav ul li a { display: block; padding: 18px 25px; text-align: left; font-size: 16px; font-weight: 600; color: var(--text-dark); }
    nav ul li a:hover { background: var(--bg-light); color: var(--primary); }
    .logo-text { font-size: 16px; }
    .logo svg { width: 34px; height: 34px; }
    .burger-menu span { width: 24px; height: 2.5px; }
    
    /* Hero */
    .hero { padding: 20px 0 30px !important; }
    .hero h1 { font-size: 20px !important; line-height: 1.3; margin-bottom: 15px; }
    .hero p { font-size: 13px; line-height: 1.5; }
    .hero .container > div:first-child { width: 100% !important; max-width: 100% !important; }
    .hero .container > div:first-child > div { padding: 12px 10px !important; border-radius: 12px !important; }
    .hero h3 { font-size: 16px !important; margin: 20px 0 15px !important; }
    
    /* Casino Cards */
    .casinos-section { padding: 30px 0; }
    .section-title { font-size: 22px !important; margin-bottom: 20px; }
    .casino-card { margin-bottom: 15px; border-radius: 12px !important; }
    .casino-content { grid-template-columns: 1fr !important; gap: 12px !important; padding: 12px 10px !important; text-align: center; }
    .casino-logo-section { margin: 0 auto; max-width: 180px; padding: 12px !important; border-radius: 10px !important; }
    .casino-logo { max-width: 120px !important; }
    .rank-number { width: 36px; height: 36px; font-size: 16px; }
    .casino-info { text-align: center; }
    .casino-info h3 { font-size: 18px; margin-bottom: 8px !important; }
    .casino-rating { justify-content: center; font-size: 13px; }
    .casino-type-badge { font-size: 10px; padding: 4px 8px; }
    .casino-actions { flex-direction: column; width: 100%; gap: 8px; }
    .casino-actions .btn, .casino-actions .btn-warning, .casino-actions .btn-secondary { width: 100%; padding: 12px 16px; font-size: 13px; border-radius: 8px !important; }
    
    /* Content Blocks */
    .content-block { padding: 15px 10px !important; margin-bottom: 12px; border-radius: 12px !important; }
    .content-block h2 { font-size: 18px !important; margin-bottom: 10px; }
    .content-block h3 { font-size: 16px !important; margin-bottom: 8px !important; }
    .content-block p { font-size: 13px; line-height: 1.5; margin-bottom: 10px !important; }
    .content-block ul, .content-block ol { font-size: 13px !important; padding-left: 20px !important; }
    
    /* Tables */
    .content-block table { font-size: 12px; display: block; overflow-x: auto; }
    .content-block table thead { display: none; }
    .content-block table tbody, .content-block table tr, .content-block table td { display: block; width: 100%; }
    .content-block table tr { margin-bottom: 10px; border: 1px solid var(--border); border-radius: 8px; padding: 8px; }
    .content-block table td { padding: 6px !important; text-align: left !important; border: none !important; font-size: 12px !important; }
    
    /* Grid layouts */
    [style*="grid-template-columns"] { grid-template-columns: 1fr !important; gap: 15px !important; }
    
    /* Page Navigation */
    .page-nav-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 8px !important; }
    .page-nav-item { padding: 8px 6px !important; gap: 8px !important; border-radius: 8px !important; }
    .page-nav-item > div:first-child { min-width: 32px !important; height: 32px !important; padding: 6px !important; border-radius: 6px !important; }
    .page-nav-item > div:first-child svg { width: 16px !important; height: 16px !important; }
    .page-nav-item > div:last-child > div:first-child { font-size: 11px !important; margin-bottom: 1px !important; }
    .page-nav-item > div:last-child > div:last-child { font-size: 10px !important; }
    
    /* FAQ */
    .faq-item { padding: 0 !important; margin-bottom: 8px !important; border-radius: 10px !important; }
    .faq-question { font-size: 13px !important; gap: 8px !important; padding: 12px 10px !important; }
    .faq-question svg { width: 32px !important; height: 32px !important; min-width: 32px !important; }
    .faq-answer { font-size: 12px !important; padding: 0 10px 12px 50px !important; line-height: 1.5 !important; }
    
    /* Tables */
    table { font-size: 11px !important; }
    table th, table td { padding: 10px 8px !important; font-size: 11px !important; }
    
    /* Footer */
    footer { padding: 30px 0 20px !important; }
    .footer-content { grid-template-columns: 1fr !important; text-align: center; gap: 20px; }
    .footer-column { text-align: center; }
    .footer-column h4 { font-size: 15px !important; margin-bottom: 10px !important; }
    .footer-column ul { display: flex; flex-direction: column; align-items: center; gap: 8px; }
    .footer-column ul li a { font-size: 13px !important; }
    .newsletter-form { flex-direction: column; gap: 8px; }
    .newsletter-form input, .newsletter-form button { width: 100%; padding: 10px !important; font-size: 13px !important; }
    .footer-bottom { padding-top: 15px !important; }
    .footer-bottom p { font-size: 11px; }
    
    /* Buttons */
    .btn, .btn-warning, .btn-secondary { padding: 10px 16px; font-size: 13px; }
    
    /* SVG */
    svg { max-width: 100%; height: auto; }
}

/* ============================================
   CASINO REVIEW PAGE STYLES
   ============================================ */

/* Casino Review Hero */
.casino-review-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 40px 0;
    color: white;
}

.casino-hero-grid {
    display: grid;
    grid-template-columns: 180px 1fr 180px;
    gap: 30px;
    align-items: center;
}

.casino-logo-box {
    text-align: center;
}

.casino-logo-box img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 4px solid rgba(255,255,255,0.3);
    object-fit: cover;
    margin: 0 auto 12px;
}

.casino-main-info h1 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
}

.bonus-box {
    background: rgba(255,255,255,0.15);
    padding: 18px 22px;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
    margin-bottom: 18px;
}

.bonus-main {
    font-size: 26px;
    font-weight: 700;
    color: var(--accent);
}

.bonus-extra {
    font-size: 16px;
    opacity: 0.95;
    margin-top: 4px;
}

.feature-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-badge {
    background: rgba(255,255,255,0.15);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.feature-badge svg {
    flex-shrink: 0;
}

/* Rating Box in Casino Review Hero */
.casino-review-hero .rating-box {
    text-align: center;
    background: transparent;
    padding: 0;
    margin: 0;
}

.casino-review-hero .rating-circle {
    background: var(--primary);
    border: 3px solid var(--accent);
    border-radius: 12px;
    padding: 15px 25px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto 12px;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.casino-review-hero .rating-number {
    font-size: 30px;
    font-weight: 800;
    color: white;
    margin: 0;
}

.casino-review-hero .rating-stars {
    font-size: 14px;
    color: var(--accent);
}

.btn-play {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(245, 158, 11, 0.4);
}

.btn-play:hover {
    background: #d97706;
    transform: translateY(-2px);
}

.accepted-flag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 600;
}

/* Payments Section */
.payments-section {
    background: white;
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.payments-section h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payments-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.payment-icon {
    width: 65px;
    height: 42px;
    object-fit: contain;
    background: var(--bg-light);
    padding: 6px;
    border-radius: 8px;
    border: 1px solid var(--border);
}

/* Info Table */
.info-section {
    background: white;
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.info-section h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-row {
    display: flex;
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    width: 35%;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.info-label svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.info-value {
    width: 65%;
    color: var(--text-gray);
    font-size: 14px;
}

.info-value strong {
    color: var(--success);
}

/* Page Navigation for Reviews */
.page-nav-section {
    background: white;
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.page-nav-section h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 18px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.page-nav-section .page-nav-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.page-nav-section .page-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.page-nav-section .page-nav-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.nav-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nav-icon.blue { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); }
.nav-icon.green { background: linear-gradient(135deg, #10b981 0%, #059669 100%); }
.nav-icon.orange { background: linear-gradient(135deg, var(--accent) 0%, #d97706 100%); }
.nav-icon.purple { background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%); }
.nav-icon.red { background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%); }
.nav-icon.teal { background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%); }

.nav-text {
    font-weight: 600;
    font-size: 13px;
    color: var(--text-dark);
}

/* Pros & Cons */
.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.pros-box, .cons-box {
    padding: 20px;
    border-radius: 12px;
}

.pros-box {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    border: 1px solid #86efac;
}

.cons-box {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border: 1px solid #fca5a5;
}

.pros-box h4, .cons-box h4 {
    font-size: 16px;
    margin-bottom: 12px;
}

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

.pros-box li, .cons-box li {
    padding: 8px 0 8px 28px;
    font-size: 14px;
    position: relative;
    line-height: 1.5;
}

.pros-box li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 8px;
    color: #16a34a;
    font-weight: bold;
    font-size: 16px;
}

.cons-box li::before {
    content: "✗";
    position: absolute;
    left: 0;
    top: 8px;
    color: #dc2626;
    font-weight: bold;
    font-size: 16px;
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 15px 0;
}

.breadcrumbs ul {
    display: flex;
    gap: 10px;
    list-style: none;
    font-size: 14px;
}

.breadcrumbs li:not(:last-child)::after {
    content: "›";
    margin-left: 10px;
    color: var(--text-gray);
}

.breadcrumbs a {
    color: var(--primary);
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* Casino Review Mobile */
@media screen and (max-width: 768px) {
    .casino-review-hero {
        padding: 25px 0;
    }
    
    .casino-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    
    .casino-logo-box img {
        width: 100px;
        height: 100px;
    }
    
    .casino-main-info h1 {
        font-size: 22px;
    }
    
    .bonus-main {
        font-size: 20px;
    }
    
    .feature-badges {
        justify-content: center;
    }
    
    .casino-review-hero .rating-circle {
        padding: 10px 20px;
        border-radius: 10px;
        border-width: 2px;
        margin-bottom: 10px;
    }
    
    .casino-review-hero .rating-number {
        font-size: 24px;
    }
    
    .casino-review-hero .rating-stars {
        font-size: 12px;
    }
    
    .btn-play {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .info-row {
        flex-direction: column;
        gap: 6px;
    }
    
    .info-label, .info-value {
        width: 100%;
    }
    
    .pros-cons-grid {
        grid-template-columns: 1fr;
    }
    
    .page-nav-section .page-nav-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 480px) {
    .page-nav-section .page-nav-grid {
        grid-template-columns: 1fr;
    }
}

