:root {
  --bg: #f8fafc;
  --panel: #ffffff;
  --panel-soft: #f1f5f9;
  --text: #1e293b;
  --muted: #64748b;
  --accent: #f59e0b;
  --accent-2: #06b6d4;
  --accent-3: #ef4444;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  --radius: 18px;
  --font: 'Bai Jamjuree', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --outline: rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: radial-gradient(
      circle at 12% 18%,
      rgba(6, 182, 212, 0.06),
      transparent 26%
    ),
    radial-gradient(circle at 86% 8%, rgba(245, 158, 11, 0.08), transparent 24%),
    radial-gradient(circle at 40% 78%, rgba(239, 68, 68, 0.05), transparent 25%),
    linear-gradient(160deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.7;
  letter-spacing: 0.01em;
}

a {
  color: var(--accent-2);
  text-decoration: none;
  font-weight: 600;
}

a:hover {
  color: var(--text);
  text-decoration: underline;
}

h1 {
  margin: 0 auto;
}

.main-title {
  line-height: 1.1;
  max-width: 1200px;
  margin: 28px auto 12px;
  font-size: 28px;
  padding: 18px 22px;
  background: linear-gradient(
    120deg,
    rgba(245, 165, 36, 0.16),
    rgba(63, 216, 193, 0.08)
  );
  border-radius: 20px;
  border: 1px solid var(--outline);
  box-shadow: var(--shadow);
}

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.text-weight {
  font-weight: 700;
}

.flex {
  align-items: center;
  justify-content: center;
  gap: 22px;

  @media screen and (min-width: 768px) {
    display: flex;
  }
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  border-bottom: 1px solid var(--outline);
  box-shadow: var(--shadow);
}

.brand {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

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

.nav-links {
  display: flex;
  gap: 12px;
  font-weight: 700;
}

.nav-links a {
  padding: 9px 12px;
  border-radius: 12px;
  color: var(--text);
  text-align: center;
  border: 1px solid var(--outline);
  background: rgba(255, 255, 255, 0.02);
  transition: 0.2s ease;
}

.nav-links a.active,
.nav-links a:hover {
  background: linear-gradient(
    130deg,
    rgba(245, 158, 11, 0.12),
    rgba(6, 182, 212, 0.12)
  );
  border-color: rgba(0, 0, 0, 0.12);
  color: var(--text);
  box-shadow: var(--shadow);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social {
  display: flex;
  gap: 10px;
  margin: 0 auto;
}

.social a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--text);
  /* border: 1px solid var(--outline); */
  /* background: rgba(255, 255, 255, 0.03); */
  transition: 0.2s ease;
}

.social a:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid rgba(245, 165, 36, 0.4);
  background: linear-gradient(120deg, #f06543, #f5a524);
  color: #0c101c;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(240, 101, 67, 0.35);
  transition: 0.18s ease;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-1px);
  background: linear-gradient(120deg, #f5a524, #3fd8c1);
  box-shadow: 0 16px 32px rgba(63, 216, 193, 0.35);
}

.subscribe {
  text-decoration: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--outline);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}

.nav-toggle span {
  display: block;
  height: 3px;
  background: var(--text);
  border-radius: 8px;
}

.content {
  padding: 0 0 36px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 22px 46px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: flex-start;
  overflow: hidden;
}

.feed {
  display: flex;
  flex-direction: column;
  gap: 28px;
  overflow: hidden;
}

.feed-text {
  padding: 15px;
}

.post-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95),
    rgba(248, 250, 252, 0.9)
  );
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 18px 26px;
  display: grid;
  grid-template-columns: minmax(280px, 340px) 1fr;
  gap: 22px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--outline);
  transition: 0.2s ease;
}

/* Alternative Card Styles */
.post-card.card-style-2 {
  background: linear-gradient(
    135deg,
    rgba(6, 182, 212, 0.08),
    rgba(255, 255, 255, 0.95)
  );
  border-left: 4px solid var(--accent-2);
  border-radius: 12px;
  transform: none;
}

.post-card.card-style-2:hover {
  transform: translateY(-2px);
  border-left-width: 6px;
  box-shadow: 0 16px 32px rgba(6, 182, 212, 0.15);
}

.post-card.card-style-3 {
  background: rgba(255, 255, 255, 0.98);
  border: 2px solid transparent;
  background-clip: padding-box;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border-radius: 20px;
}

.post-card.card-style-3:hover {
  border-color: var(--accent-2);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(6, 182, 212, 0.15);
}

.post-card.card-style-4 {
  background: linear-gradient(
    145deg,
    rgba(245, 158, 11, 0.05),
    rgba(255, 255, 255, 0.98)
  );
  border: none;
  border-radius: 16px;
  position: relative;
  overflow: visible;
}

.post-card.card-style-4::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(
    145deg,
    var(--accent),
    var(--accent-2),
    var(--accent-3)
  );
  border-radius: 18px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.post-card.card-style-4:hover::before {
  opacity: 1;
}

.post-card.card-style-5 {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.post-card.card-style-5:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.post-card.card-style-6 {
  background: var(--panel);
  border: 3px solid var(--panel-soft);
  border-radius: 8px;
  box-shadow: none;
  position: relative;
}

.post-card.card-style-6::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--accent) 0%,
    var(--accent-2) 50%,
    var(--accent-3) 100%
  );
  border-radius: 5px 5px 0 0;
}

.post-card.card-style-6:hover {
  border-color: var(--accent-2);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(6, 182, 212, 0.12);
}

.post-card::before {
  content: '';
  position: absolute;
  inset: -40% auto auto -55%;
  width: 60%;
  height: 160%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(245, 158, 11, 0.06),
    transparent 60%
  );
  transform: rotate(8deg);
  opacity: 0.7;
  pointer-events: none;
}

.post-card::after {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--accent),
    var(--accent-2),
    var(--accent-3)
  );
  opacity: 0.85;
  pointer-events: none;
}

.post-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 0, 0, 0.14);
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.12);
}

.media {
  display: flex;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: var(--panel-soft);
  border: 1px solid var(--outline);
  min-height: 200px;
  align-items: center;
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.placeholder {
  min-height: 220px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  background: radial-gradient(
    circle at 50% 40%,
    rgba(63, 216, 193, 0.25),
    rgba(5, 10, 22, 0.8)
  );
}

.placeholder img {
  border-radius: 12px;
  width: 100%;
}

.chip-action {
  position: absolute;
  right: 12px;
  top: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(135deg, var(--accent-3), var(--accent));
  color: #0c101c;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 14px 26px rgba(240, 101, 67, 0.4);
  cursor: pointer;
  font-size: 16px;
}

.body h2 {
  margin: 8px 0 12px;
  line-height: 1.3;
  font-size: 24px;
}

.body p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.badge {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 13px;
  color: #0c101c;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge-primary {
  background: linear-gradient(135deg, var(--accent), #ffd37a);
}

.badge-teal {
  background: linear-gradient(135deg, var(--accent-2), #9cf1e3);
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 110px;
  align-self: flex-start;
}

.card {
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.95),
    rgba(248, 250, 252, 0.9)
  );
  border-radius: 18px;
  padding: 18px 18px 10px;
  box-shadow: var(--shadow);
  border: 1px solid var(--outline);
}

.search-card {
  background: var(--panel);
}

.card-title {
  font-size: 18px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid var(--outline);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.02);
}

.search-box {
  margin: 16px 0 10px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  background: var(--panel-soft);
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.search-box input {
  border: none;
  outline: none;
  font-size: 15px;
  background: transparent;
  color: var(--text);
}

.search-box .btn {
  width: 110px;
  box-shadow: 0 8px 18px rgba(240, 101, 67, 0.3);
}

.recent-card {
  padding-bottom: 12px;
}

.recent-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
}

.recent-list li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-weight: 700;
}

.recent-list li:last-child {
  border-bottom: none;
}

.recent-list li a {
  display: block;
  color: var(--text);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 4px 8px;
  border-radius: 8px;
  position: relative;
}

.recent-list li a:hover {
  color: var(--accent-2);
  background: linear-gradient(
    135deg,
    rgba(6, 182, 212, 0.08),
    rgba(245, 158, 11, 0.04)
  );
  transform: translateX(4px);
}

.recent-list li a::before {
  content: '→';
  position: absolute;
  left: -20px;
  color: var(--accent-2);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.recent-list li a:hover::before {
  opacity: 1;
}

.recommendations {
  padding: 0 24px 44px;
}

.rec-card {
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.95),
    rgba(248, 250, 252, 0.92)
  );
  border: 1px solid var(--outline);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 18px 18px 24px;
}

.rec-card__title {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 18px;
  border: 1px solid var(--outline);
}

.rec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.rec-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--text);
  background: var(--panel-soft);
  border-radius: 16px;
  padding: 10px 10px 14px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.25);
  transition: 0.18s ease;
}

.rec-item:hover {
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-3px);
}

.rec-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  min-height: 140px;
  background: #10182c;
  display: grid;
  align-items: end;
}

.rec-thumb .badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 1;
}

.rec-placeholder {
  background: linear-gradient(135deg, #f5a524, #f06543, #3fd8c1);
  height: 100%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.rec-item p {
  margin: 0;
  font-weight: 800;
  line-height: 1.3;
}

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

  .post-card {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }
}

@media (max-width: 760px) {
  .topbar {
    padding: 14px 18px;
  }

  .nav {
    position: absolute;
    top: 72px;
    right: 18px;
    left: 18px;
    flex-direction: column;
    background: var(--panel);
    border-radius: 14px;
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.35);
    padding: 14px 16px;
    gap: 12px;
    display: none;
  }

  .nav.open {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
  }

  .nav-links a {
    width: 100%;
  }

  .nav-actions {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .subscribe {
    width: 100%;
    justify-content: center;
  }

  .nav-toggle {
    display: flex;
  }

  .content {
    padding: 0 0;
  }

  .post-card {
    padding: 14px 14px 20px;
  }

  .body h2 {
    font-size: 22px;
  }

  .recommendations {
    padding: 0 16px 28px;
  }

  .rec-card {
    padding: 16px 12px 18px;
  }

  .rec-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 80%;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
  }

  .rec-item {
    scroll-snap-align: start;
  }
}

.img-box {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin: 0px auto 15px auto;
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

footer {
  padding: 18px;
  margin: 0 auto;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--outline);
  background: rgba(5, 9, 18, 0.9);
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 15px 10px;
  background: linear-gradient(135deg, var(--accent-3), var(--accent));
  border-radius: 0.75rem;
  transition: all 0.12s ease;
  max-width: 360px;
  height: 60px;
  color: #0c101c;
  margin: 20px auto;
  border: 1px solid rgba(245, 165, 36, 0.4);
  box-shadow: 0 18px 30px rgba(240, 101, 67, 0.3);
}

.button:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  transform: translateY(-2px);
}

.button:active {
  letter-spacing: 1px;
  transform: translateY(4px);
  background: linear-gradient(135deg, var(--accent-2), var(--accent-3));
}

/* Pros and Cons Table Styles */
.pros-cons-table {
  margin: 32px 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--outline);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95),
    rgba(248, 250, 252, 0.9)
  );
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
}

.comparison-table th {
  padding: 20px 24px;
  font-weight: 800;
  font-size: 18px;
  text-align: center;
  border-bottom: 2px solid var(--outline);
  letter-spacing: 0.02em;
}

.pros-header {
  background: linear-gradient(
    135deg,
    rgba(63, 216, 193, 0.15),
    rgba(63, 216, 193, 0.08)
  );
  color: var(--accent-2);
  border-right: 1px solid var(--outline);
}

.cons-header {
  background: linear-gradient(
    135deg,
    rgba(240, 101, 67, 0.15),
    rgba(240, 101, 67, 0.08)
  );
  color: var(--accent-3);
}

.comparison-table td {
  padding: 24px 28px;
  vertical-align: top;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pros-cell {
  background: linear-gradient(
    135deg,
    rgba(6, 182, 212, 0.06),
    rgba(6, 182, 212, 0.03)
  );
  border-right: 1px solid var(--outline);
}

.cons-cell {
  background: linear-gradient(
    135deg,
    rgba(239, 68, 68, 0.06),
    rgba(239, 68, 68, 0.03)
  );
}

.comparison-table ul {
  margin: 0;
  padding-left: 20px;
  list-style: none;
}

.comparison-table li {
  margin-bottom: 12px;
  position: relative;
  color: var(--text);
  font-weight: 500;
  padding-left: 8px;
}

.comparison-table li:last-child {
  margin-bottom: 0;
}

.pros-cell li::before {
  content: '●';
  position: absolute;
  left: -12px;
  color: var(--accent-2);
  font-weight: 900;
  font-size: 12px;
}

.cons-cell li::before {
  content: '●';
  position: absolute;
  left: -12px;
  color: var(--accent-3);
  font-weight: 900;
  font-size: 12px;
}

.comparison-table .highlight {
  color: var(--accent);
  font-weight: 700;
  background: linear-gradient(120deg, rgba(245, 165, 36, 0.15), transparent);
  padding: 2px 6px;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .pros-cons-table {
    margin: 24px -14px;
    border-radius: 0;
  }

  .comparison-table th {
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 700;
  }

  .comparison-table td {
    padding: 16px 14px;
  }

  .comparison-table {
    font-size: 13px;
    line-height: 1.5;
  }

  .comparison-table ul {
    padding-left: 14px;
  }

  .comparison-table li {
    margin-bottom: 10px;
    padding-left: 6px;
  }

  .pros-cell li::before,
  .cons-cell li::before {
    left: -10px;
    font-size: 10px;
  }

  .comparison-table .highlight {
    padding: 1px 4px;
    border-radius: 4px;
  }
}

.questions {
  max-width: 635px;
}

@media (min-width: 768px) {
  .questions-faq {
    letter-spacing: 0.095rem;
    text-transform: uppercase;
    font-family: sans-serif;
    font-size: 2rem;
    font-weight: 900;
    line-height: 101%;
    text-align: center;
  }
}

.questions-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--text);
  list-style: none;
}

.questions-content-box {
  &:hover .questions-title {
    color: var(--text);
  }

  &:hover .questions-plus {
    background: var(--text);
    border: 1px var(--panel) solid;
  }
}

.questions-cover {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.questions-title {
  display: grid;
  grid-template-columns: 1fr 20px;
  cursor: pointer;
  align-items: center;
  font-size: 22px;
  margin-bottom: 15px;
}

.questions-plus {
  border-radius: 0.375rem;
  min-width: 1.875rem;
  height: 1.875rem;
  padding: 0.25rem;
  background-color: #e8f5e8;
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.top-line,
.bottom-line {
  position: absolute;
  width: 12px;
  height: 2px;
  background-color: var(--panel);
}

.top-line {
  transform: rotate(90deg);
  transition: all 0.3s ease;
}

.questions-plus.active .top-line {
  transform: rotate(0deg);
}

.icon {
  width: 30px;
  height: 25px;
  fill: var(--text);
}

.questions-content {
  overflow: hidden;
  height: 0;
  transition: height 0.3s ease;
}

.slots-table-wrapper {
  max-width: 1200px;
  margin: 40px auto;
  padding: 24px;
  border-radius: var(--radius);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95),
    rgba(248, 250, 252, 0.9)
  );
  box-shadow: var(--shadow);
  border: 1px solid var(--outline);
}

.slots-table-title {
  margin: 0 0 24px;
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  text-align: center;
  letter-spacing: 0.02em;
}

.slots-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  color: var(--text);
  font-family: var(--font);
}

.slots-table thead {
  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 0.1),
    rgba(6, 182, 212, 0.06)
  );
}

.slots-table th {
  padding: 20px 24px;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  border-bottom: 2px solid var(--outline);
  letter-spacing: 0.01em;
}

.slots-table th:first-child {
  width: 60px;
  min-width: 60px;
}

.slots-table th:nth-child(2) {
  width: 180px;
  min-width: 180px;
}

.slots-table th:nth-child(3) {
  width: 220px;
  min-width: 220px;
}

.slots-table th:nth-child(4) {
  width: auto;
}

.slots-table td {
  padding: 24px;
  vertical-align: top;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  line-height: 1.6;
}

.slots-table td:first-child {
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  color: var(--accent);
  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 0.06),
    rgba(245, 158, 11, 0.03)
  );
}

.slots-table td:nth-child(2) {
  text-align: center;
  font-weight: 600;
}

.slots-table td:nth-child(3) {
  text-align: center;
  font-weight: 600;
}

.slots-table tr:nth-child(even) {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.01));
}

.slots-table tr:last-child td {
  border-bottom: none;
}

.slots-table td strong {
  font-weight: 700;
  color: var(--accent-2);
}

.slots-table ul {
  margin: 0;
  padding-left: 18px;
  list-style: none;
}

.slots-table li {
  margin-bottom: 8px;
  position: relative;
  color: var(--text);
  font-weight: 500;
  padding-left: 6px;
}

.slots-table li:last-child {
  margin-bottom: 0;
}

.slots-table li::before {
  content: '●';
  position: absolute;
  left: -12px;
  color: var(--accent-2);
  font-weight: 900;
  font-size: 12px;
}

@media (max-width: 768px) {
  .slots-table-wrapper {
    margin: 24px 12px;
    padding: 16px;
  }

  .slots-table-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .slots-table thead {
    display: none;
  }

  .slots-table tbody,
  .slots-table tr,
  .slots-table td {
    display: block;
    width: 100%;
  }

  .slots-table tr {
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 12px;
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.9),
      rgba(248, 250, 252, 0.7)
    );
    border: 1px solid var(--outline);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  }

  .slots-table tr:hover {
    transform: none;
  }

  .slots-table td {
    padding: 8px 0;
    border-bottom: none;
    text-align: left !important;
    position: relative;
  }

  .slots-table td:first-child {
    background: none;
    font-size: 24px;
    color: var(--accent);
    text-align: center !important;
    margin-bottom: 12px;
    padding: 12px 0;
  }

  /* Add labels for each data cell */
  .slots-table td:nth-child(2)::before {
    content: '';
  }

  .slots-table td:nth-child(3)::before {
    content: 'Bono de bienvenida: ';
    font-weight: 700;
    color: var(--accent-2);
    display: block;
    margin-bottom: 4px;
  }

  .slots-table td:nth-child(4)::before {
    content: 'Ventajas principales: ';
    font-weight: 700;
    color: var(--accent-2);
    display: block;
    margin-bottom: 8px;
  }

  .slots-table td:nth-child(2),
  .slots-table td:nth-child(3),
  .slots-table td:nth-child(4) {
    margin-bottom: 16px;
  }

  .slots-table ul {
    padding-left: 14px;
  }

  .slots-table li {
    margin-bottom: 6px;
    font-size: 14px;
  }

  /* Add play button to mobile casino cards */
  .slots-table tr::after {
    content: 'JUEGA CON BONIFICACIÓN';
    display: block;
    margin-top: 20px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: white;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
  }

  .slots-table tr:hover::after {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
  }
}

/* ---------------swiper-------------------- */
.swiper {
  width: 100%;
  height: 100%;

  & img {
    object-fit: contain;
  }
}

/* Slots Mobile Container */
.slots-mobile {
  margin: 40px 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.slots-mobile h3 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
  color: var(--text);
  font-weight: 700;
}

/* Slots Swiper Container */
.slots-swiper {
  padding: 0 20px 50px 20px;
  overflow: visible;
  position: relative;
}

.slots-swiper .swiper-slide {
  height: auto;
  display: flex;
  justify-content: center;
}

/* Slot Card Styles */
.slot-card {
  width: 100%;
  max-width: 300px;
  background: linear-gradient(
    135deg,
    rgba(10, 16, 28, 0.95),
    rgba(14, 22, 38, 0.9)
  );
  border-radius: var(--radius);
  border: 1px solid var(--outline);
  box-shadow: var(--shadow);
  transition: 0.2s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.slot-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.55);
}

/* Slot Card Image Container */
.slot-card-image {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.slot-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Slot Card Badge */
.slot-card-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0c101c;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Slot Card Content */
.slot-card-content {
  padding: 16px;
  padding-bottom: 25px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

.slot-card-title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  text-align: center;
}

.slot-card-provider {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  font-weight: 500;
}

.slot-card-rtp {
  font-size: 13px;
  color: var(--accent);
  text-align: center;
  font-weight: 600;
  margin-bottom: 8px;
}

.slot-card-content a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  background: linear-gradient(135deg, var(--accent-3), var(--accent));
  color: #0c101c;
  font-weight: 700;
  font-size: 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.2s ease;
  margin-top: auto;
}

.slot-card-content a:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  transform: translateY(-1px);
}

/* Legacy simple card styles for compatibility */
.slot-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.slot-card h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  line-height: 1.3;
}

.slot-card p {
  margin: 0;
  font-size: 13px;
  color: var(--accent);
  text-align: center;
  font-weight: 600;
}

/* Swiper Navigation Buttons */
.slots-swiper .swiper-button-next,
.slots-swiper .swiper-button-prev {
  color: var(--accent-2);
  width: 35px;
  height: 35px;
  margin-top: -17px;
  background: var(--panel);
  border: 1px solid var(--outline);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: 0.2s ease;
}

.slots-swiper .swiper-button-next:hover,
.slots-swiper .swiper-button-prev:hover {
  background: var(--panel-soft);
  border-color: var(--accent-2);
  transform: scale(1.05);
}

.slots-swiper .swiper-button-next::after,
.slots-swiper .swiper-button-prev::after {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-2);
}

.slots-swiper .swiper-button-next {
  right: 10px;
}

.slots-swiper .swiper-button-prev {
  left: 10px;
}

/* Swiper Pagination */
.slots-swiper .swiper-pagination {
  bottom: 15px;
}

.slots-swiper .swiper-pagination-bullet {
  background: rgba(63, 216, 193, 0.3);
  opacity: 1;
  width: 8px;
  height: 8px;
  transition: 0.2s ease;
}

.slots-swiper .swiper-pagination-bullet-active {
  background: var(--accent-2);
  width: 20px;
  border-radius: 5px;
  box-shadow: 0 4px 12px rgba(63, 216, 193, 0.4);
}

@media (max-width: 628px) {
  .swiper.desk {
    display: none;
  }

  .slots-mobile {
    margin: 30px 0;
    padding: 0 15px;
  }

  .slots-swiper {
    padding: 0 15px 40px 15px;
  }

  .slot-card {
    max-width: 260px;
  }

  .slot-card-image {
    height: 140px;
  }

  .slot-card-content {
    padding: 22px;
    gap: 6px;
  }

  .slot-card-title {
    font-size: 14px;
  }

  .slot-card-provider {
    font-size: 11px;
  }

  .slot-card-rtp {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .slot-card-content a {
    padding: 6px 10px;
    font-size: 11px;
  }

  .slot-card-badge {
    font-size: 9px;
    padding: 3px 6px;
    top: 6px;
    right: 6px;
  }

  /* Legacy mobile styles */
  .slot-card img {
    height: 140px;
  }

  .slots-mobile h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

@media (min-width: 629px) {
  .swiper.mob {
    display: none;
  }
}

@media (max-width: 480px) {
  .slots-mobile {
    margin: 20px 0;
    padding: 0 10px;
  }

  .slots-swiper {
    padding: 0 10px 30px 10px;
  }

  .slot-card {
    max-width: 240px;
  }

  .slot-card-image {
    height: 120px;
  }

  .slot-card-content {
    padding: 20px;
  }

  .slot-card-title {
    font-size: 13px;
  }

  .slots-mobile h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
}

.swiper-button-next::after,
.swiper-button-prev::after {
  color: #ffbe1f;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active.swiper-pagination-bullet-active-main {
  background: var(--bg-list);
}

.bonuse-img-box {
  display: flex;
}
