/* TOP3CASINOWITHOUTLICENSE.COM - Shared Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=DM+Sans:wght@400;500;700&display=swap');

:root {
  --green: #16a34a;
  --green-light: #dcfce7;
  --green-dark: #166534;
  --blue: #1d4ed8;
  --blue-light: #dbeafe;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --gold: #f59e0b;
  --red: #dc2626;
  --radius: 12px;
  --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.05);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--gray-800); background: #fff; font-size: 15px; line-height: 1.6; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; }

/* HEADER */
.site-header { background: #fff; border-bottom: 1px solid var(--gray-200); position: sticky; top: 0; z-index: 100; }
.header-inner { max-width: 1100px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; height: 60px; }
.logo { font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 18px; color: var(--gray-900); }
.logo span { color: var(--green); }
.main-nav { display: flex; gap: 4px; }
.main-nav a { padding: 6px 12px; border-radius: 8px; font-size: 13px; font-weight: 500; color: var(--gray-600); transition: all 0.15s; }
.main-nav a:hover, .main-nav a.active { background: var(--gray-100); color: var(--gray-900); text-decoration: none; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }

/* LAYOUT */
.page-wrap { max-width: 1100px; margin: 0 auto; padding: 32px 20px 60px; display: grid; grid-template-columns: 1fr 300px; gap: 32px; }
.main-col { min-width: 0; }
.side-col { min-width: 0; }

/* AUTHOR BAR */
.author-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; flex-wrap: wrap; gap: 10px; }
.author-info { display: flex; align-items: center; gap: 10px; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--green), #059669); display: flex; align-items: center; justify-content: center; font-weight: 700; color: white; font-size: 14px; flex-shrink: 0; }
.author-name { font-weight: 600; font-size: 14px; }
.author-title { font-size: 12px; color: var(--gray-400); }
.updated-badge { background: var(--green-light); color: var(--green-dark); font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 20px; }

/* HERO SECTION */
.page-hero { margin-bottom: 28px; }
.page-hero h1 { font-family: 'DM Sans', sans-serif; font-size: 28px; font-weight: 700; color: var(--gray-900); line-height: 1.3; margin-bottom: 10px; }
.page-hero .lead { font-size: 15px; color: var(--gray-600); line-height: 1.7; margin-bottom: 16px; }

/* STATS ROW */
.stats-row { display: flex; gap: 0; border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; margin-bottom: 24px; }
.stat-item { flex: 1; text-align: center; padding: 12px 8px; border-right: 1px solid var(--gray-200); }
.stat-item:last-child { border-right: none; }
.stat-num { font-weight: 700; font-size: 18px; color: var(--gray-900); display: block; }
.stat-label { font-size: 11px; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.5px; }

/* CATEGORY FILTER */
.cat-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.cat-btn { padding: 7px 16px; border-radius: 20px; font-size: 13px; font-weight: 500; cursor: pointer; border: 1px solid var(--gray-200); background: white; color: var(--gray-600); transition: all 0.15s; }
.cat-btn.active, .cat-btn:hover { background: var(--green); border-color: var(--green); color: white; }

/* CASINO CARDS */
.casino-count { font-size: 13px; color: var(--gray-400); margin-bottom: 16px; }
.casino-count strong { color: var(--gray-800); }

.casino-card { background: white; border: 1px solid var(--gray-200); border-radius: var(--radius); margin-bottom: 16px; overflow: hidden; transition: box-shadow 0.2s; }
.casino-card:hover { box-shadow: var(--shadow-md); }
.card-ribbon { background: var(--gray-800); color: white; font-size: 11px; font-weight: 600; padding: 6px 16px; display: flex; align-items: center; justify-content: space-between; }
.card-ribbon .ribbon-stars { color: var(--gold); letter-spacing: 2px; }
.card-body { padding: 20px; display: grid; grid-template-columns: 90px 1fr 160px; gap: 20px; align-items: start; }
.card-logo-col { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.card-logo { width: 80px; height: 80px; object-fit: contain; border-radius: 10px; border: 1px solid var(--gray-200); padding: 6px; background: white; }
.card-safety { text-align: center; }
.safety-label { font-size: 10px; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.5px; display: block; }
.safety-score { font-size: 28px; font-weight: 700; color: var(--gray-900); display: block; line-height: 1.1; }
.safety-text { font-size: 11px; color: var(--green); font-weight: 600; }
.payment-pills { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 8px; justify-content: center; }
.payment-pill { font-size: 10px; background: var(--gray-100); color: var(--gray-600); padding: 2px 6px; border-radius: 4px; font-weight: 500; }

.card-info-col { min-width: 0; }
.card-casino-name { font-size: 18px; font-weight: 700; color: var(--gray-900); margin-bottom: 2px; }
.card-meta { font-size: 12px; color: var(--gray-400); margin-bottom: 12px; }
.bonus-box { background: linear-gradient(135deg, #fef3c7, #fde68a); border: 1px solid #f59e0b; border-radius: 8px; padding: 10px 14px; margin-bottom: 12px; }
.bonus-label { font-size: 10px; font-weight: 700; text-transform: uppercase; color: #92400e; letter-spacing: 0.5px; display: flex; align-items: center; gap: 4px; margin-bottom: 3px; }
.bonus-amount { font-weight: 700; font-size: 14px; color: var(--gray-900); }
.bonus-terms { font-size: 11px; color: var(--gray-500); margin-top: 2px; }
.feature-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 10px; }
.feature-tag { font-size: 11px; padding: 3px 8px; border-radius: 4px; font-weight: 600; }
.tag-green { background: var(--green-light); color: var(--green-dark); }
.tag-blue { background: var(--blue-light); color: var(--blue); }
.tag-gray { background: var(--gray-100); color: var(--gray-700); }
.card-details { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.detail-item { font-size: 12px; color: var(--gray-600); display: flex; align-items: center; gap: 5px; }

.card-cta-col { display: flex; flex-direction: column; gap: 8px; }
.cta-btn { display: block; text-align: center; padding: 12px 16px; border-radius: 8px; font-size: 14px; font-weight: 600; text-decoration: none; transition: all 0.15s; }
.cta-primary { background: var(--green); color: white; }
.cta-primary:hover { background: var(--green-dark); text-decoration: none; }
.cta-secondary { border: 1px solid var(--gray-200); color: var(--gray-600); background: white; }
.cta-secondary:hover { background: var(--gray-50); text-decoration: none; }
.players-today { font-size: 11px; color: var(--green); font-weight: 600; text-align: center; }
.players-today::before { content: '● '; }
.tc-note { font-size: 10px; color: var(--gray-400); text-align: center; }

/* PROS CONS TOGGLE */
.pros-cons-toggle { border: none; background: none; font-size: 12px; color: var(--blue); cursor: pointer; padding: 8px 20px 12px; display: flex; align-items: center; gap: 4px; }
.pros-cons-box { display: none; padding: 0 20px 16px; }
.pros-cons-box.open { display: block; }
.pros-cons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pros-list, .cons-list { list-style: none; }
.pros-list li { font-size: 13px; color: var(--gray-700); padding: 3px 0 3px 18px; position: relative; }
.pros-list li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.cons-list li { font-size: 13px; color: var(--gray-700); padding: 3px 0 3px 18px; position: relative; }
.cons-list li::before { content: '✗'; position: absolute; left: 0; color: var(--red); font-weight: 700; }

/* CONTENT SECTIONS */
.content-section { background: white; border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 24px; margin-bottom: 20px; }
.content-section h2 { font-family: 'DM Sans', sans-serif; font-size: 20px; font-weight: 700; color: var(--gray-900); margin-bottom: 14px; }
.content-section h3 { font-size: 15px; font-weight: 600; color: var(--gray-900); margin-bottom: 8px; margin-top: 16px; }
.content-section p { font-size: 14px; color: var(--gray-600); line-height: 1.7; margin-bottom: 10px; }
.content-section ul { padding-left: 20px; margin-bottom: 10px; }
.content-section ul li { font-size: 14px; color: var(--gray-600); line-height: 1.7; margin-bottom: 4px; }

/* INFO GRID */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 4px; }
.info-card { background: var(--gray-50); border-radius: 8px; padding: 14px; border: 1px solid var(--gray-100); }
.info-card h3 { font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--gray-800); }
.info-card p { font-size: 13px; color: var(--gray-600); margin: 0; line-height: 1.5; }

/* FAQ */
.faq-section { margin-bottom: 20px; }
.faq-section h2 { font-family: 'DM Sans', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 14px; }
.faq-item { border: 1px solid var(--gray-200); border-radius: 8px; margin-bottom: 8px; overflow: hidden; }
.faq-q { padding: 14px 16px; cursor: pointer; display: flex; align-items: center; justify-content: space-between; font-weight: 600; font-size: 14px; color: var(--gray-800); background: white; border: none; width: 100%; text-align: left; }
.faq-q:hover { background: var(--gray-50); }
.faq-arrow { color: var(--gray-400); font-size: 12px; transition: transform 0.2s; }
.faq-a { display: none; padding: 0 16px 14px; font-size: 14px; color: var(--gray-600); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }

/* SIDEBAR */
.sidebar-card { background: white; border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 20px; margin-bottom: 16px; }
.sidebar-card h3 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--gray-400); margin-bottom: 14px; }
.quick-compare-item { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--gray-100); }
.quick-compare-item:last-child { border-bottom: none; }
.qc-rank { font-weight: 700; color: var(--gray-400); font-size: 14px; min-width: 16px; }
.qc-logo { width: 32px; height: 32px; object-fit: contain; border-radius: 6px; border: 1px solid var(--gray-100); }
.qc-name { flex: 1; font-size: 13px; font-weight: 600; }
.qc-score { font-weight: 700; font-size: 14px; color: var(--gray-800); }

.trust-list { list-style: none; }
.trust-list li { font-size: 13px; color: var(--gray-600); padding: 5px 0; padding-left: 20px; position: relative; }
.trust-list li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }

.pro-tip { background: #eff6ff; border: 1px solid #bfdbfe; border-radius: 8px; padding: 12px; }
.pro-tip-label { font-size: 11px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; display: flex; align-items: center; gap: 4px; }
.pro-tip p { font-size: 13px; color: #1e40af; line-height: 1.5; margin: 0; }

.rg-box { background: var(--gray-50); border-radius: 8px; padding: 14px; text-align: center; }
.rg-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--gray-400); margin-bottom: 10px; }
.rg-badges { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-bottom: 8px; }
.rg-badge { background: var(--gray-200); color: var(--gray-700); font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 4px; }
.rg-text { font-size: 11px; color: var(--gray-400); line-height: 1.4; }

/* FOOTER */
.site-footer { background: var(--gray-900); color: var(--gray-400); padding: 40px 20px 24px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-bottom: 32px; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: white; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col a { display: block; font-size: 13px; color: var(--gray-400); padding: 3px 0; }
.footer-col a:hover { color: white; text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; font-size: 12px; text-align: center; }

/* SCHEMA/META */
.schema-breadcrumb { font-size: 12px; color: var(--gray-400); margin-bottom: 16px; }
.schema-breadcrumb a { color: var(--gray-400); }
.schema-breadcrumb span { color: var(--gray-300); padding: 0 6px; }

/* MOBILE */
@media (max-width: 768px) {
  .page-wrap { grid-template-columns: 1fr; }
  .side-col { display: none; }
  .card-body { grid-template-columns: 1fr; }
  .card-logo-col { flex-direction: row; align-items: center; }
  .card-cta-col { grid-row: 4; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .info-grid { grid-template-columns: 1fr; }
  .pros-cons-grid { grid-template-columns: 1fr; }
}
