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

body {
  font-family: "Inter", sans-serif;
  background-color: #0e0e0e;
  color: #e0e0e0;
  line-height: 1.6;
  overflow-x: hidden;
}

.m4k8j2x.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.p9x2n5k.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.r5d9k3x.header {
  background: linear-gradient(180deg, #1b1c1d 0%, #151617 100%);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.a6k2m9p.header-left {
  flex-shrink: 0;
}

.logo-link {
  display: block;
}

.logo-img {
  display: block;
  height: 40px;
  width: auto;
}

.d8x4n2k.nav-menu {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #e0e0e0;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #e50539;
}

.nav-icon {
  flex-shrink: 0;
}

.h3m8k5n.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.j9x3k7m.online-counter {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: #b0b0b0;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 12px;
  border-radius: 20px;
}

.language-selector select {
  background: rgba(255, 255, 255, 0.1);
  color: #e0e0e0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 10px;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
}

.header-buttons {
  display: flex;
  gap: 10px;
}

.btn-demo,
.btn-play {
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-demo {
  background: rgba(255, 255, 255, 0.1);
  color: #e0e0e0;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-demo:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.btn-play {
  background: linear-gradient(135deg, #28a909 0%, #1e7d07 100%);
  color: #ffffff;
  border: none;
}

.btn-play:hover {
  background: linear-gradient(135deg, #2bc40a 0%, #28a909 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(40, 169, 9, 0.3);
}

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

.burger-btn span {
  width: 25px;
  height: 3px;
  background: #e0e0e0;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.y4n8k2d.hero-section {
  position: relative;
  height: 500px;
  overflow: hidden;
  margin-bottom: 30px;
}

.hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  width: 90%;
  max-width: 800px;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-text {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 25px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.hero-btn {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, #e50539 0%, #b30429 100%);
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: linear-gradient(135deg, #ff0642 0%, #e50539 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(229, 5, 57, 0.4);
}

.hero-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dot.active {
  background: #e50539;
  width: 30px;
  border-radius: 6px;
}

.f3k7n9x.breadcrumbs {
  padding: 15px 0;
  font-size: 14px;
  color: #b0b0b0;
}

.breadcrumbs a {
  color: #e50539;
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.separator {
  margin: 0 8px;
}

.current {
  color: #e0e0e0;
}

.q7h3d9m.main-content {
  flex: 1;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  text-align: center;
}

.v8k2d5n.pros-cons-section {
  margin: 40px 0;
  padding: 30px;
  background: linear-gradient(135deg, #1a1b1c 0%, #25262a 100%);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.pros-cons-grid {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.pros-block,
.cons-block {
  flex: 1;
  padding: 25px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
}

.pros-block {
  border: 2px solid rgba(40, 169, 9, 0.3);
}

.cons-block {
  border: 2px solid rgba(229, 5, 57, 0.3);
}

.block-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  margin-bottom: 20px;
}

.pros-title {
  color: #28a909;
}

.cons-title {
  color: #e50539;
}

.pros-list,
.cons-list {
  list-style: none;
  padding-left: 0;
}

.pros-list li,
.cons-list li {
  padding: 10px 0;
  padding-left: 25px;
  position: relative;
}

.pros-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a909;
  font-weight: 700;
}

.cons-list li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #e50539;
  font-weight: 700;
}

.b7x9k4m.jackpots-section {
  margin: 40px 0;
  padding: 30px;
  background: linear-gradient(135deg, #1a1b1c 0%, #25262a 100%);
  border-radius: 15px;
}

.jackpots-grid {
  display: flex;
  gap: 25px;
  margin-top: 30px;
}

.jackpot-card {
  flex: 1;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.jackpot-card.bronze {
  background: linear-gradient(135deg, #cd7f32 0%, #8b5a2b 100%);
}

.jackpot-card.silver {
  background: linear-gradient(135deg, #c0c0c0 0%, #808080 100%);
}

.jackpot-card.gold {
  background: linear-gradient(135deg, #ffd700 0%, #daa520 100%);
}

.jackpot-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.jackpot-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
}

.jackpot-amount {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}

.jackpot-winners h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.9);
}

.winners-list {
  text-align: left;
  padding-left: 20px;
}

.winners-list li {
  padding: 5px 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.x5n9k7d.winners-section {
  margin: 40px 0;
  padding: 30px;
  background: linear-gradient(135deg, #1a1b1c 0%, #25262a 100%);
  border-radius: 15px;
}

.winners-table-wrap {
  overflow-x: auto;
  margin-top: 30px;
}

.winners-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  overflow: hidden;
}

.winners-table thead {
  background: rgba(229, 5, 57, 0.2);
}

.winners-table th {
  padding: 15px;
  text-align: left;
  font-weight: 600;
  color: #ffffff;
  border-bottom: 2px solid rgba(229, 5, 57, 0.5);
}

.winners-table td {
  padding: 12px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.winners-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.05);
}

.p4k8m2x.mobile-section {
  margin: 40px 0;
  padding: 30px;
  background: linear-gradient(135deg, #1a1b1c 0%, #25262a 100%);
  border-radius: 15px;
}

.mobile-content {
  display: flex;
  gap: 40px;
  margin-top: 30px;
  align-items: center;
}

.mobile-info {
  flex: 1;
}

.app-info-table {
  width: 100%;
  border-collapse: collapse;
}

.app-info-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.app-info-table td {
  padding: 12px 15px;
}

.app-info-table td:first-child {
  color: #b0b0b0;
  width: 40%;
}

.mobile-download {
  flex: 1;
}

.mobile-download h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #ffffff;
}

.download-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.download-btn.appstore {
  background: #000000;
  color: #ffffff;
}

.download-btn.playmarket {
  background: #01875f;
  color: #ffffff;
}

.download-btn.apk {
  background: #3ddc84;
  color: #000000;
}

.download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.z9k4n2x.demo-section {
  margin: 40px 0;
  padding: 30px;
  background: linear-gradient(135deg, #1a1b1c 0%, #25262a 100%);
  border-radius: 15px;
}

.demo-container {
  margin-top: 30px;
}

.demo-iframe-wrap {
  width: 100%;
  height: 600px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.demo-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.demo-cta {
  text-align: center;
}

.demo-cta p {
  font-size: 18px;
  margin-bottom: 15px;
}

.btn-play-money {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, #28a909 0%, #1e7d07 100%);
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-play-money:hover {
  background: linear-gradient(135deg, #2bc40a 0%, #28a909 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(40, 169, 9, 0.4);
}

.w8n4k2p.content-block {
  margin: 40px 0;
  padding: 30px;
  background: linear-gradient(135deg, #1a1b1c 0%, #25262a 100%);
  border-radius: 15px;
}

.w8n4k2p h1 {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
}

.w8n4k2p h2 {
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
  margin-top: 30px;
  margin-bottom: 20px;
}

.w8n4k2p h3 {
  font-size: 22px;
  font-weight: 600;
  color: #e0e0e0;
  margin-top: 25px;
  margin-bottom: 15px;
}

.w8n4k2p p {
  margin-bottom: 15px;
  line-height: 1.7;
}

.w8n4k2p ul,
.w8n4k2p ol {
  margin: 15px 0;
  padding-left: 30px;
}

.w8n4k2p li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.w8n4k2p table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  overflow: hidden;
}

.w8n4k2p th {
  background: rgba(229, 5, 57, 0.2);
  padding: 12px 15px;
  text-align: left;
  font-weight: 600;
  color: #ffffff;
}

.w8n4k2p td {
  padding: 10px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.w8n4k2p strong {
  color: #e50539;
  font-weight: 600;
}

.w8n4k2p a {
  color: #e50539;
  text-decoration: underline;
}

.w8n4k2p a:hover {
  color: #ff0642;
}

.k3x9d2m.intro-section {
  background: rgba(40, 169, 9, 0.1);
  padding: 20px;
  border-left: 4px solid #28a909;
  border-radius: 8px;
  margin: 20px 0;
}

.h7f2k9p.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.n8d3x1q.feature-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.n8d3x1q.feature-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
}

.icon-wrap {
  margin-bottom: 15px;
}

.feature-icon {
  font-size: 48px;
}

.n8d3x1q h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #ffffff;
}

.n8d3x1q p {
  font-size: 14px;
  color: #b0b0b0;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
  border-radius: 8px;
  margin: 15px 0;
  border-left: 3px solid #e50539;
}

.faq-item h3 {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 10px;
}

.faq-item p {
  color: #b0b0b0;
  line-height: 1.6;
}

.l6k9n3d.author-section {
  margin: 40px 0;
  padding: 30px;
  background: linear-gradient(135deg, #1a1b1c 0%, #25262a 100%);
  border-radius: 15px;
}

.author-card {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-top: 30px;
}

.author-photo img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(229, 5, 57, 0.3);
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.author-bio {
  line-height: 1.7;
  color: #b0b0b0;
  margin-bottom: 15px;
}

.author-social {
  display: flex;
  gap: 15px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(0, 119, 181, 0.2);
  color: #0077b5;
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(0, 119, 181, 0.3);
  transform: translateY(-2px);
}

.c8k3n7m.footer {
  background: linear-gradient(180deg, #1b1c1d 0%, #0f1011 100%);
  padding: 40px 0 20px;
  margin-top: 60px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-top {
  display: flex;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-col {
  flex: 1;
}

.footer-col h4 {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 15px;
}

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

.footer-desc {
  color: #b0b0b0;
  font-size: 14px;
  line-height: 1.6;
}

.footer-menu {
  list-style: none;
  padding: 0;
}

.footer-menu li {
  margin-bottom: 10px;
}

.footer-menu a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-menu a:hover {
  color: #e50539;
}

.footer-payments,
.footer-licenses,
.footer-provider {
  margin: 30px 0;
  text-align: center;
}

.footer-payments h4,
.footer-licenses h4 {
  color: #ffffff;
  margin-bottom: 15px;
}

.payment-logos,
.license-logos {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-provider p {
  color: #b0b0b0;
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
}

.copyright,
.legal,
.disclaimer {
  color: #808080;
  font-size: 13px;
  margin: 10px 0;
  line-height: 1.5;
}

.n2k7x9m.fixed-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #28a909 0%, #1e7d07 100%);
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 15px;
  animation: slideIn 0.5s ease;
}

@keyframes slideIn {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.widget-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.widget-icon {
  font-size: 32px;
}

.widget-text {
  display: flex;
  flex-direction: column;
}

.widget-text strong {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
}

.widget-text span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
}

.widget-btn {
  padding: 10px 20px;
  background: #ffffff;
  color: #28a909;
  text-decoration: none;
  font-weight: 700;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.widget-btn:hover {
  background: #f0f0f0;
  transform: scale(1.05);
}

.widget-close {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .d8x4n2k.nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    background: #1b1c1d;
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    transition: left 0.3s ease;
  }

  .d8x4n2k.nav-menu.active {
    left: 0;
  }

  .burger-btn {
    display: flex;
  }

  .burger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .burger-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .burger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-text {
    font-size: 16px;
  }

  .pros-cons-grid {
    flex-direction: column;
  }

  .jackpots-grid {
    flex-direction: column;
  }

  .mobile-content {
    flex-direction: column;
  }

  .author-card {
    flex-direction: column;
    text-align: center;
  }

  .footer-top {
    flex-direction: column;
  }

  .n2k7x9m.fixed-widget {
    bottom: 10px;
    right: 10px;
    left: 10px;
    padding: 12px 15px;
  }

  .widget-text strong {
    font-size: 14px;
  }

  .widget-text span {
    font-size: 12px;
  }

  .widget-btn {
    padding: 8px 15px;
    font-size: 14px;
  }
}

.g5m2k8x {
  animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.x3n9k2d {
  background: rgba(255, 255, 255, 0.02);
  padding: 10px;
  border-radius: 5px;
}

.r8m4n1k {
  display: none;
}

.y2k7x5m {
  visibility: hidden;
  position: absolute;
  top: -9999px;
}
/* ===============================
   ABOUT SECTION (container about)
   =============================== */
.about{
  --surface: color-mix(in oklab, var(--color-nav, #1b1c1d) 82%, transparent);
  --surface-2: color-mix(in oklab, var(--color-bg, #0e0e0e) 88%, transparent);
  --muted: color-mix(in oklab, var(--color-text, #e0e0e0) 55%, transparent);

  background: var(--surface);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: clamp(18px, 4vw, 36px);
  margin: clamp(18px, 4vw, 40px) auto;
  box-shadow: 0 10px 28px rgba(0,0,0,.35);
}

/* заголовки та абзаци */
.about h1{
  font-size: clamp(26px, 4.6vw, 40px);
  line-height: 1.2;
  margin: 0 0 14px;
  color: var(--color-text);
}
.about h2{
  font-size: clamp(20px, 3.4vw, 28px);
  margin: 28px 0 14px;
  color: var(--color-text);
}
.about h3{
  font-size: clamp(18px, 2.8vw, 22px);
  margin: 22px 0 10px;
  color: var(--color-text);
}
.about p{
  margin: 0 0 14px;
  color: var(--color-text);
  opacity: .95;
}

/* посилання */
.about a{
  color: var(--color-red, #e50539);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.about a:hover{
  color: color-mix(in oklab, var(--color-red, #e50539) 85%, #fff 15%);
}

/* списки */
.about ul, .about ol{
  margin: 12px 0 14px 1.2em;
}
.about li{ margin: 6px 0; }

/* таблиця всередині .about */
.about table{
  width: 100%;
  border-collapse: collapse;
  background: var(--surface-2);
  color: var(--color-text);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  overflow: hidden;
}
.about td, .about th{
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.about tr:last-child td{ border-bottom: none; }
.about th{
  text-align: left;
  font-weight: 600;
  background: color-mix(in oklab, var(--color-red, #e50539) 18%, transparent);
  color: var(--color-text);
}
.about tbody tr:nth-child(odd){
  background: color-mix(in oklab, var(--color-bg, #0e0e0e) 86%, transparent);
}

/* зображення/логотипи в рядку */
.about p > img{
  display: inline-block;
  vertical-align: middle;
  max-height: 28px;       /* щоб логотипи були охайні */
  margin-right: 10px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.35));
}
.about p > img:last-child{ margin-right: 0; }

/* виділений блок (примітки/попередження) */
.about .note,
.about blockquote{
  margin: 18px 0;
  padding: 14px 16px;
  background: color-mix(in oklab, var(--color-bg) 80%, transparent);
  border: 1px solid rgba(255,255,255,.12);
  border-left: 4px solid var(--color-red, #e50539);
  border-radius: 10px;
  color: var(--color-text);
}

/* дрібні корисняшки */
.about .muted{ color: var(--muted); }
.about .badge{
  display:inline-block; padding:4px 8px; border-radius:999px;
  background: color-mix(in oklab, var(--color-red,#e50539) 25%, transparent);
  color: var(--color-text); font-size:12px; line-height:1;
}

/* адаптація */
@media (max-width: 768px){
  .about{ padding: 16px; border-radius: 14px; }
  .about table{ display:block; white-space:nowrap; overflow-x:auto; }
  .about td, .about th{ padding: 10px 12px; }
}

/* якірні переходи під липким хедером */
.about [id]{ scroll-margin-top: 76px; }
