/* === VALMSNES.COM — CLEAN CONVERT DESIGN === */

@font-face {
  font-family: 'Inter';
  font-display: swap;
}

:root {
  --bg: #FFFFFF;
  --bg-alt: #F8F9FA;
  --border: #E5E7EB;
  --text: #111827;
  --muted: #6B7280;
  --accent: #16A34A;
  --dark: #0f172a;
  --dark2: #1e293b;
  --radius: 8px;
  --font: 'Inter', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

/* === HEADER === */
.site-header {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
}

.logo-icon { font-size: 1.4rem; }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-desktop a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color .2s;
}

.nav-desktop a:hover { color: #fff; }

.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 8px 16px;
  border-radius: var(--radius);
  font-weight: 600;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .3s;
}

.mobile-nav { display: none; }

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .hamburger { display: flex; }
  .mobile-nav {
    background: var(--dark2);
    flex-direction: column;
    padding: 16px;
    gap: 12px;
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav a {
    color: #cbd5e1;
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
    font-size: 1rem;
  }
  .mobile-nav a:last-child { border-bottom: none; }
}

/* === HERO === */
.hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
  color: #fff;
  padding: 60px 0 50px;
}

.hero h1, .hero-desc { color: #f1f5f9; }

.hero-inner {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.hero-content { flex: 1; min-width: 280px; }

.hero-badge {
  display: inline-block;
  background: rgba(22,163,74,.2);
  color: #4ade80;
  border: 1px solid rgba(22,163,74,.4);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
}

h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #f1f5f9;
}

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #94a3b8;
  margin-bottom: 24px;
}

.hero-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.stat { text-align: center; }

.stat-num {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: #4ade80;
}

.stat-label {
  font-size: 0.75rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #16A34A, #15803d);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  animation: pulse 2s infinite;
  font-size: 1rem;
  transition: transform .2s;
}

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

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(22,163,74,.4); }
  50% { box-shadow: 0 0 0 8px rgba(22,163,74,0); }
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: #94a3b8;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.2);
  transition: all .2s;
}

.btn-secondary:hover { color: #fff; border-color: rgba(255,255,255,.5); }

.trust-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #94a3b8;
}

.trust-stars { font-size: 1rem; }

.hero-author {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 16px;
  flex-shrink: 0;
}

.hero-author img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
}

.hero-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-author-info strong { color: #f1f5f9; font-size: 0.95rem; }
.hero-author-info span { color: #94a3b8; font-size: 0.8rem; }
.author-exp { color: #4ade80 !important; }

/* === CONTENT SECTIONS === */
.content-section { padding: 56px 0; }
.section-light { background: var(--bg); }
.section-alt { background: var(--bg-alt); }

.content-section h2 {
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  display: block;
  width: 100%;
  float: none;
  clear: both;
  line-height: 1.3;
}

/* === H2 BANNER === */
.h2-banner-wrap {
  display: block;
  width: calc(100% + 32px);
  margin-left: -16px;
  margin-right: -16px;
  margin-top: 1.5rem;
  margin-bottom: 0;
  overflow: hidden;
  line-height: 0;
  clear: both;
}

.h2-banner-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 1;
  object-fit: cover;
  object-position: center center;
}

@media (max-width: 767px) {
  .h2-banner-img {
    aspect-ratio: 1 / 1;
    object-position: center top;
  }
}

.h2-banner-wrap figcaption {
  font-size: 11px;
  color: var(--muted);
  text-align: right;
  padding: 4px 8px 0;
  font-style: italic;
  margin-bottom: 1.5rem;
}

/* === SECTION BODY === */
.section-body {
  margin-top: 1.5rem;
}

.section-body p {
  margin-bottom: 16px;
  color: var(--text);
  line-height: 1.7;
}

.section-body ul, .section-body ol {
  margin: 16px 0 16px 24px;
}

.section-body li {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* === TABLES === */
.table-wrap {
  overflow-x: auto;
  margin: 20px 0;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

th {
  background: var(--dark);
  color: #fff;
  padding: 10px 12px;
  text-align: left;
  font-weight: 600;
}

td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

tr:last-child td { border-bottom: none; }
tr:nth-child(2n) td { background: #f9fafb; }

/* === VITRINA === */
.vitrina-section {
  background: var(--dark);
  padding: 56px 0;
}

.vitrina-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: #f1f5f9;
  text-align: center;
  margin-bottom: 8px;
}

.vitrina-sub {
  text-align: center;
  color: #94a3b8;
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.vitrina-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

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

.casino-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: transform .2s, box-shadow .2s;
  position: relative;
}

.casino-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}

.casino-card.top-pick {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(22,163,74,.3);
}

.casino-rank {
  background: var(--accent);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.casino-main { flex: 1; }

.casino-badge {
  display: inline-block;
  background: rgba(22,163,74,.15);
  color: #4ade80;
  border: 1px solid rgba(22,163,74,.3);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.casino-name {
  font-size: 1rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 4px;
}

.casino-license {
  font-size: 0.8rem;
  color: #94a3b8;
  margin-bottom: 4px;
}

.casino-bonus {
  font-size: 0.85rem;
  color: #4ade80;
  font-weight: 600;
  margin-bottom: 8px;
}

.casino-features {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 12px;
}

.feature-tag {
  background: rgba(255,255,255,.07);
  color: #94a3b8;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
}

.casino-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.casino-rating {
  color: #fbbf24;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
}

.vitrina-disclaimer {
  text-align: center;
  color: #64748b;
  font-size: 0.8rem;
  margin-top: 24px;
}

/* === E-E-A-T AUTHOR BOX === */
.eeat-section { padding: 56px 0; }

.author-box {
  display: flex;
  gap: 24px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  align-items: flex-start;
}

.author-box img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--accent);
}

.author-box h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.author-title {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.author-bio {
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.author-expertise strong {
  color: var(--dark);
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.author-expertise ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.author-expertise li {
  background: rgba(22,163,74,.1);
  color: var(--accent);
  border: 1px solid rgba(22,163,74,.2);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.author-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.author-link:hover { text-decoration: underline; }

@media (max-width: 600px) {
  .author-box { flex-direction: column; align-items: center; text-align: center; }
  .author-expertise ul { justify-content: center; }
}

/* === REVIEWED BY === */
.reviewed-section { padding: 56px 0; }

.reviewed-title {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  text-align: center;
  color: var(--dark);
  margin-bottom: 32px;
}

.reviewed-by-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .reviewed-by-cards { grid-template-columns: 1fr; }
}

.reviewer-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

.reviewer-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.reviewer-header img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.reviewer-header strong {
  display: block;
  font-size: 0.95rem;
  color: var(--dark);
}

.reviewer-header span {
  font-size: 0.8rem;
  color: var(--muted);
}

.reviewer-stars {
  color: #fbbf24;
  font-size: 1rem;
  margin-bottom: 10px;
}

.reviewer-card p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 10px;
}

.reviewer-card time {
  font-size: 0.8rem;
  color: var(--muted);
}

/* === FAQ === */
.faq-section { padding: 56px 0; }

.faq-section h2 {
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 700;
  text-align: center;
  color: var(--dark);
  margin-bottom: 32px;
}

.faq-list { max-width: 800px; margin: 0 auto; }

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

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 20px;
  text-align: left;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background .2s;
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform .3s;
}

.faq-question[aria-expanded="true"] { background: #f0fdf4; }
.faq-question[aria-expanded="true"]::after { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 20px 16px;
  background: #f9fafb;
}

.faq-answer p {
  color: var(--text);
  line-height: 1.7;
  font-size: 0.95rem;
}

.faq-answer.open { display: block; }

/* === FOOTER === */
.site-footer {
  background: var(--dark);
  color: #94a3b8;
  padding: 40px 0 24px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-brand p {
  color: #64748b;
  font-size: 0.85rem;
  margin-top: 8px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color .2s;
}

.footer-links a:hover { color: #fff; }

.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px;
}

.footer-disclaimer p {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer-disclaimer a {
  color: #94a3b8;
  text-decoration: none;
}

.footer-disclaimer a:hover { color: #fff; }

/* === STICKY CTA === */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--accent);
  z-index: 90;
  display: none;
  text-align: center;
  padding: 12px 16px;
}

.sticky-cta a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .sticky-cta.visible { display: block; }
}

/* === POPUP === */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.popup-overlay.visible { display: flex; }

.popup-box {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 32px;
  max-width: 420px;
  width: 100%;
  position: relative;
  text-align: center;
  color: #f1f5f9;
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}

.popup-badge {
  color: #4ade80;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.popup-box h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.popup-box p { margin-bottom: 20px; color: #94a3b8; }

.popup-disclaimer {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 12px;
}
