/* PokerLatvija.lv - Static Site Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg: hsl(232, 47%, 13%);
  --fg: hsl(220, 20%, 90%);
  --card: hsl(232, 40%, 18%);
  --card-fg: hsl(220, 20%, 90%);
  --primary: hsl(145, 65%, 52%);
  --primary-fg: hsl(232, 47%, 13%);
  --muted: hsl(232, 30%, 22%);
  --muted-fg: hsl(220, 15%, 60%);
  --border: hsl(232, 30%, 25%);
  --destructive: hsl(0, 84%, 60%);
  --hero-gradient: linear-gradient(180deg, hsl(232, 47%, 16%) 0%, hsl(232, 47%, 10%) 100%);
  --card-gradient: linear-gradient(135deg, hsl(232, 40%, 20%) 0%, hsl(232, 40%, 16%) 100%);
  --cta-gradient: linear-gradient(135deg, hsl(145, 65%, 52%) 0%, hsl(145, 65%, 42%) 100%);
  --radius: 0.75rem;
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* Container */
.container {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: hsla(232, 47%, 13%, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
.header-logo { height: 1.75rem; flex-shrink: 0; }
.header-nav { display: none; align-items: center; gap: 2rem; }
.header-nav a {
  font-size: 0.875rem;
  color: var(--muted-fg);
  transition: color 0.2s;
}
.header-nav a:hover { color: var(--fg); }
.lang-switch {
  display: none;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--muted-fg);
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.2s;
}
.lang-switch:hover { color: var(--fg); }
.burger-btn {
  display: flex;
  background: none;
  border: none;
  color: var(--fg);
  cursor: pointer;
  padding: 0.25rem;
}
.burger-btn svg { width: 1.5rem; height: 1.5rem; }
@media (min-width: 768px) {
  .header-nav { display: flex; }
  .lang-switch { display: flex; }
  .burger-btn { display: none; }
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0 1rem 1rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.mobile-menu.open { display: flex; }
.mobile-menu a, .mobile-menu button {
  font-size: 0.875rem;
  color: var(--muted-fg);
  padding: 0.5rem 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
}
.mobile-menu a:hover, .mobile-menu button:hover { color: var(--fg); }

/* Hero */
.hero {
  padding: 4rem 0;
  text-align: center;
  background: var(--hero-gradient);
}
.hero h1 {
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.hero p, .hero-subtitle {
  color: var(--muted-fg);
  font-size: 1rem;
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.7;
}
@media (min-width: 640px) {
  .hero { padding: 6rem 0; }
  .hero h1 { font-size: 3rem; }
  .hero p, .hero-subtitle { font-size: 1.125rem; }
}
@media (min-width: 1024px) {
  .hero h1 { font-size: 3.75rem; }
}

/* Hero with image (review pages) */
.hero-image {
  margin-top: 2rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}
.hero-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: box-shadow 0.3s;
}
.hero-image img:hover {
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* Page hero (smaller) */
.page-hero {
  padding: 3rem 0 4rem;
  text-align: center;
  background: var(--hero-gradient);
}
.page-hero h1 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}
@media (min-width: 640px) {
  .page-hero { padding: 3rem 0 4rem; }
  .page-hero h1 { font-size: 2.25rem; }
}
@media (min-width: 1024px) {
  .page-hero h1 { font-size: 3rem; }
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
  gap: 0.5rem;
  font-size: 0.875rem;
}
.breadcrumb a { color: var(--muted-fg); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--fg); }
.breadcrumb .separator { color: var(--muted-fg); }
.breadcrumb .current { color: var(--fg); }

/* Poker Room Card */
.poker-card {
  background: var(--card-gradient);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 1rem;
}
.poker-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 640px) {
  .poker-card-grid {
    grid-template-columns: 200px 1fr 180px 160px;
  }
}
.poker-card-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: hsla(220, 20%, 90%, 0.05);
}
.poker-card-logo img { height: 3rem; object-fit: contain; margin-bottom: 0.75rem; }
@media (min-width: 640px) {
  .poker-card-logo img { height: 3.5rem; }
}
.star-rating { display: flex; gap: 2px; }
.star-rating svg { width: 1rem; height: 1rem; }
.star-rating .filled { color: #facc15; }
.star-rating .empty { color: hsla(220, 15%, 60%, 0.3); }
.rating-text { font-size: 0.75rem; color: var(--muted-fg); margin-top: 0.25rem; }

.poker-card-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-fg);
}
.feature-check {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
  flex-shrink: 0;
}

.poker-card-bonus {
  text-align: center;
  padding: 1rem;
}
.bonus-amount {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--fg);
}
@media (min-width: 640px) {
  .bonus-amount { font-size: 2.25rem; }
}
.bonus-label {
  font-size: 0.75rem;
  color: var(--muted-fg);
  margin-top: 0.25rem;
}

.poker-card-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
}
.cta-button {
  background: var(--cta-gradient);
  color: var(--primary-fg);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
  transition: all 0.3s;
  display: inline-block;
  text-align: center;
}
.cta-button:hover {
  opacity: 0.9;
  transform: scale(1.05);
  box-shadow: 0 0 20px hsla(145, 65%, 52%, 0.3);
}
.payment-icons { height: 1.25rem; opacity: 0.6; }

/* Content sections */
.content-section { padding: 3rem 0; }
.content-section + .content-section { padding-top: 0; }
.section-block { margin-bottom: 3rem; }

h2.section-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) {
  h2.section-heading { font-size: 1.875rem; }
}

h3.subsection-heading {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.text-body {
  color: var(--muted-fg);
  font-size: 0.875rem;
  line-height: 1.7;
}

.text-body + .text-body { margin-top: 1rem; }

.list-styled {
  list-style: disc;
  list-style-position: inside;
  padding-left: 0.5rem;
}
.list-styled li {
  color: var(--muted-fg);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.list-decimal-styled {
  list-style: decimal;
  list-style-position: inside;
  padding-left: 0.5rem;
}
.list-decimal-styled li {
  color: var(--muted-fg);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

/* Info card */
.info-card {
  background: hsla(232, 30%, 22%, 0.3);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1rem;
}
.info-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.info-card p {
  color: var(--muted-fg);
  font-size: 0.875rem;
  line-height: 1.7;
}

/* Highlight box */
.highlight-box {
  background: hsla(145, 65%, 52%, 0.1);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.highlight-box p {
  color: var(--fg);
  font-size: 0.875rem;
  font-weight: 500;
}

/* Accordion / FAQ */
.accordion-item {
  background: hsla(232, 30%, 22%, 0.3);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.accordion-trigger:hover { color: var(--primary); }
.accordion-trigger svg {
  width: 1rem;
  height: 1rem;
  color: var(--muted-fg);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.accordion-item.open .accordion-trigger svg {
  transform: rotate(180deg);
}
.accordion-content {
  display: none;
  padding: 0 1.25rem 1rem;
  font-size: 0.875rem;
  color: var(--muted-fg);
  line-height: 1.7;
}
.accordion-item.open .accordion-content {
  display: block;
}

/* Tables */
.review-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin: 1rem 0;
}
.review-table th {
  background: var(--muted);
  color: var(--fg);
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}
.review-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--muted-fg);
}
.review-table tr:last-child td { border-bottom: none; }
.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

/* Review section */
.review-section {
  margin-bottom: 2rem;
}
.review-section h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.review-section h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fg);
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
.review-section p {
  color: var(--muted-fg);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.review-section strong { color: var(--fg); }

/* Pros & Cons */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .pros-cons { grid-template-columns: 1fr 1fr; }
}
.pros-box {
  background: hsla(145, 65%, 52%, 0.1);
  border-radius: var(--radius);
  padding: 1rem;
}
.cons-box {
  background: hsla(0, 84%, 60%, 0.1);
  border-radius: var(--radius);
  padding: 1rem;
}
.pros-box h4, .cons-box h4 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--fg);
}

/* Blog card */
.blog-card {
  background: hsla(232, 30%, 22%, 0.3);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.blog-card:hover { border-color: hsla(145, 65%, 52%, 0.5); }
.blog-card-inner { padding: 1.25rem; }
.blog-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}
.blog-card:hover h3 { color: var(--primary); }
.blog-card p {
  font-size: 0.875rem;
  color: var(--muted-fg);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.blog-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.blog-card-date { font-size: 0.75rem; color: var(--muted-fg); }
.blog-card-link { font-size: 0.75rem; color: var(--primary); font-weight: 500; }
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .blog-grid { grid-template-columns: 1fr 1fr 1fr; }
}

/* Author box */
.author-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-top: 1.5rem;
}
.author-avatar {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: hsla(145, 65%, 52%, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.author-avatar svg { width: 1.5rem; height: 1.5rem; color: var(--primary); }
.author-name { font-size: 0.875rem; font-weight: 600; color: var(--fg); }
.author-bio {
  font-size: 0.75rem;
  color: var(--muted-fg);
  line-height: 1.6;
  margin-top: 0.25rem;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0;
  margin-top: 3rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr 1fr; }
}
.footer-logo { height: 1.75rem; margin-bottom: 1rem; }
.footer h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.75rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  font-size: 0.75rem;
  color: var(--muted-fg);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--fg); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}
.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--muted-fg);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.footer-copyright-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copyright {
  font-size: 0.75rem;
  color: var(--muted-fg);
}
.footer-payments { height: 1.25rem; opacity: 0.5; }

/* Muted box */
.muted-box {
  background: hsla(232, 30%, 22%, 0.3);
  border-radius: var(--radius);
  padding: 1rem;
  margin-top: 1rem;
}
.muted-box h4 { font-size: 0.875rem; font-weight: 600; color: var(--fg); margin-bottom: 0.5rem; }

/* Chevron icon */
.chevron-down { width: 1rem; height: 1rem; }

/* Space utilities */
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
