@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@500;600;700;800&display=swap');

:root {
    --primary: #004d40;
    --primary-light: #00695c;
    --accent: #ff6f00;
    --accent-hover: #e65100;
    --text-main: #333333;
    --text-muted: #666666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border: #e0e0e0;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-light);
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary);
    margin-top: 0;
}

/* Header & Navigation */
.top-bar {
    background: #f1f1f1;
    padding: 8px 0;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.top-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.top-info span {
    margin-right: 20px;
}

header {
    background: var(--white);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo img {
    height: 45px;
}

.nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

.cta-quote {
    background: var(--accent);
    color: white !important;
    padding: 10px 20px;
    border-radius: 4px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
}

/* Hero Section */
.hero-refined {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 60px 20px;
    text-align: left;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-tagline {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 20px;
    border-left: 3px solid var(--accent);
}

.hero-refined h1 {
    color: white;
    font-size: 2.8rem;
    max-width: 700px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-refined p {
    font-size: 1.1rem;
    max-width: 600px;
    opacity: 0.9;
}

/* Casino Listings */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.casino-list {
    margin-top: -80px; /* Overlap with hero */
    position: relative;
    z-index: 10;
}

.casino-card {
    background: var(--white);
    border: none;
    border-radius: 12px;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: 80px 180px 1fr 250px 200px;
    align-items: center;
    padding: 0;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.casino-card:hover {
    transform: translateY(-5px);
}

.casino-card > div {
    padding: 25px 15px;
}

.casino-rank {
    background: #f1f8e9;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}

.casino-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-right: 1px solid #f0f0f0;
}

.casino-logo img {
    max-width: 140px;
    max-height: 70px;
}

.casino-info h3 {
    margin-bottom: 8px;
    font-size: 1.25rem;
}

.casino-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.licensing-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: #2e7d32;
    background: #e8f5e9;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 600;
}

.casino-bonus {
    background: #fffaf0;
    height: 100%;
    border-left: 1px solid #fff3e0;
    border-right: 1px solid #fff3e0;
}

.casino-bonus h4 {
    font-size: 0.85rem;
    margin-bottom: 10px;
    color: var(--accent);
}

.casino-bonus ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.8rem;
    color: #777;
}

.casino-bonus li {
    margin-bottom: 4px;
    position: relative;
    padding-left: 15px;
}

.casino-bonus li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
}

.casino-action {
    text-align: center;
}

.btn-visit {
    display: block;
    padding: 12px;
    background: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: background 0.2s;
}

.btn-visit:hover {
    background: var(--accent-hover);
}

.terms-link {
    display: block;
    margin-top: 10px;
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Article Section */
.article-container {
    margin-top: 40px;
}

.article-section {
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.article-section h2 {
    font-size: 2rem;
    border-left: 4px solid var(--accent);
    padding-left: 20px;
    margin-bottom: 25px;
}

.article-section p {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 20px;
    text-align: justify;
}

.article-section h3 {
    margin-top: 35px;
    font-size: 1.4rem;
}

/* Footer */
footer {
    background: #111;
    color: #aaa;
    padding: 60px 20px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    height: 35px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.footer-links {
    margin-bottom: 30px;
}

.footer-links a {
    color: #eee;
    margin: 0 15px;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-disclaimer {
    max-width: 800px;
    margin: 0 auto;
    font-size: 0.8rem;
    border-top: 1px solid #333;
    padding-top: 30px;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .casino-card {
        grid-template-columns: 80px 180px 1fr 200px;
    }
    .casino-bonus { display: none; }
}

@media (max-width: 768px) {
    .casino-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .casino-rank { padding: 10px; font-size: 1.4rem; height: auto; }
    .nav-menu { display: none; }
    .mobile-menu-btn { display: block; }
    .hero-refined h1 { font-size: 1.8rem; }
    .article-section { padding: 30px 20px; }
}

/* Shared legal footer block (aligned with The best place to) */
.standard-footer {
  background: #111827;
  color: #e5e7eb;
  padding: 2.2rem 1rem 2.6rem;
  margin-top: 3rem;
}
.standard-footer .footer-nav {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
}
.standard-footer .footer-nav a {
  color: #e5e7eb;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
}
.standard-footer .footer-nav a:hover {
  text-decoration: underline;
}
.standard-footer .footer-disclaimer {
  max-width: 980px;
  margin: 1.8rem auto 0;
  text-align: left;
  border-top: 1px solid rgba(255,255,255,0.16);
  padding-top: 1.6rem;
}
.standard-footer .footer-disclaimer p {
  font-size: 0.78rem;
  color: rgba(229,231,235,0.85);
  line-height: 1.7;
  margin: 0 0 0.9rem;
}
.standard-footer .footer-disclaimer a {
  color: #c7d2fe;
}
.standard-footer .footer-logos-section {
  width: 100%;
  max-width: 980px;
  margin: 1.6rem auto 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.16);
  padding-top: 1.6rem;
}
.standard-footer .footer-logos-heading {
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}
.standard-footer .footer-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px 26px;
}
.standard-footer .legal-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  opacity: 0.92;
}
