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

:root {
  --color-header: #1b1c1d;
  --color-login: #e50539;
  --color-register: #28a909;
  --color-bg: #0e0e0e;
  --color-text: #e8e8e8;
  --color-text-secondary: #b8b8b8;
  --color-border: #2a2a2a;
  --color-card-bg: #1a1a1a;
  --font-primary: "Inter", sans-serif;
  --transition: all 0.3s ease;
}

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

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

.container-hero {
  max-width: 100%;
  margin: 0 auto;
}

.rx9k4m7p {
  background-color: var(--color-header);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.kp7m3x5n {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

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

.lx3m7k9p {
  display: flex;
  align-items: center;
}

.lx3m7k9p img {
  height: 40px;
  width: auto;
}

.online-counter {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--color-register);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.online-text {
  color: var(--color-text-secondary);
}

.online-count {
  color: var(--color-register);
}

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

.burger-menu span {
  width: 25px;
  height: 3px;
  background: var(--color-text);
  border-radius: 3px;
  transition: var(--transition);
}

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

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

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

.nx8k2m5p {
  display: flex;
  align-items: center;
  gap: 30px;
}

.wx5k9m3n {
  display: flex;
  list-style: none;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.wx5k9m3n li a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.wx5k9m3n li a:hover {
  color: var(--color-login);
}

.nav-icon {
  width: 18px;
  height: 18px;
}

.lang-selector {
  position: relative;
}

.lang-button {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: var(--transition);
}

.lang-button:hover {
  background: rgba(255, 255, 255, 0.1);
}

.lang-button img {
  border-radius: 2px;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  min-width: 200px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
}

.lang-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: var(--color-text);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

.lang-option:hover {
  background: rgba(255, 255, 255, 0.05);
}

.lang-option.active {
  background: rgba(229, 5, 57, 0.1);
  color: var(--color-login);
}

.lang-option img {
  border-radius: 2px;
}

.px9k2m7n {
  display: flex;
  gap: 12px;
}

.zm5k3p8n {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid transparent;
}

.rx4m7k2p {
  background: var(--color-login);
  color: white;
}

.rx4m7k2p:hover {
  background: #c7043a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(229, 5, 57, 0.4);
}

.kp8m2x5n {
  background: var(--color-register);
  color: white;
}

.kp8m2x5n:hover {
  background: #228907;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40, 169, 9, 0.4);
}

.bw7k3m9p {
  background: var(--color-bg);
  margin-bottom: 40px;
}

.hero-slider {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.6s ease;
  display: flex;
  align-items: center;
}

.hero-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(14, 14, 14, 0.9) 0%, rgba(14, 14, 14, 0.6) 100%);
}

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 40px 20px;
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #e8e8e8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--color-text-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.hero-btn-primary {
  background: var(--color-register);
  color: white;
}

.hero-btn-primary:hover {
  background: #228907;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(40, 169, 9, 0.5);
}

.hero-btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.hero-btn-secondary:hover {
  background: white;
  color: var(--color-bg);
  transform: translateY(-3px);
}

.hero-btn-bonus {
  background: linear-gradient(135deg, var(--color-login) 0%, var(--color-register) 100%);
  color: white;
  animation: btnGlow 2s infinite;
}

@keyframes btnGlow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(229, 5, 57, 0.5);
  }
  50% {
    box-shadow: 0 0 30px rgba(40, 169, 9, 0.7);
  }
}

.hero-features {
  display: flex;
  gap: 32px;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 600;
}

.hero-feature svg {
  color: var(--color-register);
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  z-index: 3;
  backdrop-filter: blur(10px);
}

.hero-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.hero-nav-prev {
  left: 20px;
}

.hero-nav-next {
  right: 20px;
}

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

.hero-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.hero-indicator.active {
  background: var(--color-register);
  width: 32px;
  border-radius: 6px;
}

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

.qx5m8k2n {
  padding: 60px 0;
}

.kx8m2p9d,
.n4p7q2rx,
.bv6k9p2n,
.qw5n8k3p,
.xm9k5p2n,
.dm7k3p9n,
.pm6k9n3x {
  background: var(--color-card-bg);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 32px;
  border: 1px solid var(--color-border);
  animation: fadeIn 0.6s ease;
}

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

h1,
h2,
h3,
h4 {
  color: var(--color-text);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

h1 {
  font-size: 42px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

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

ul,
ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

li {
  margin-bottom: 10px;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

strong {
  color: var(--color-text);
  font-weight: 600;
}

.wr9k3m5t {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: var(--color-bg);
  border-radius: 8px;
  overflow: hidden;
}

.wr9k3m5t tr {
  border-bottom: 1px solid var(--color-border);
}

.wr9k3m5t tr:last-child {
  border-bottom: none;
}

.wr9k3m5t td {
  padding: 16px 20px;
  text-align: left;
}

.wr9k3m5t td:first-child {
  color: var(--color-text-secondary);
  width: 40%;
}

.wr9k3m5t td:last-child {
  color: var(--color-text);
  font-weight: 500;
}

.zm3r7k5q {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 24px 0;
}

.lp9m4x2w {
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--color-border);
  transition: var(--transition);
}

.lp9m4x2w:hover {
  transform: scale(1.05);
  border-color: var(--color-login);
  box-shadow: 0 8px 24px rgba(229, 5, 57, 0.3);
}

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

.mx7k2n9r {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin: 32px 0;
}

.dl8k4n2p {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vx9m3p7k {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border-radius: 12px;
  text-decoration: none;
  border: 2px solid var(--color-border);
  transition: var(--transition);
  font-weight: 600;
}

.kq2n8r5t {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-color: transparent;
}

.kq2n8r5t:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
}

.bx5k9m2p {
  background: var(--color-register);
  color: white;
  border-color: transparent;
}

.bx5k9m2p:hover {
  background: #228907;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(40, 169, 9, 0.4);
}

.rk7m2p9n {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.nm8k5p3r {
  display: block;
  font-size: 12px;
  opacity: 0.9;
}

.pk9m2x7n {
  display: block;
  font-size: 16px;
}

.wx4n7m5k {
  background: rgba(255, 255, 255, 0.03);
  padding: 24px;
  border-radius: 12px;
  margin-top: 24px;
}

.wx4n7m5k h4 {
  font-size: 18px;
  margin-bottom: 16px;
}

.yt5m8k3p {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  margin: 24px 0;
}

.yt5m8k3p iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.gm4k8p5n {
  position: relative;
  height: 600px;
  border-radius: 12px;
  overflow: hidden;
  margin: 24px 0;
  border: 2px solid var(--color-border);
}

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

.tx7k2m9p {
  text-align: center;
  margin-top: 24px;
}

.btn5m9k3p {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 48px;
  background: var(--color-register);
  color: white;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  border-radius: 10px;
  transition: var(--transition);
}

.btn5m9k3p:hover {
  background: #228907;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(40, 169, 9, 0.5);
}

.author-section {
  background: var(--color-card-bg);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 32px;
  border: 1px solid var(--color-border);
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.author-section img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-login);
}

.author-info h3 {
  margin-bottom: 8px;
}

.author-info p {
  margin-bottom: 16px;
}

.author-info a {
  color: var(--color-login);
  text-decoration: none;
  font-weight: 600;
}

.qm8k5n3p {
  background: var(--color-header);
  padding: 60px 0 20px;
  margin-top: 60px;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-border);
}

.footer-section h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--color-text);
}

.footer-logo {
  display: inline-block;
  margin-bottom: 16px;
}

.footer-logo img {
  height: 35px;
}

.footer-description {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  color: var(--color-text);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--color-login);
  transform: translateY(-3px);
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--color-login);
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.payment-methods img {
  width: 100%;
  height: auto;
  background: rgba(255, 255, 255, 0.9);
  padding: 8px;
  border-radius: 6px;
}

.footer-middle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid var(--color-border);
}

.licenses {
  display: flex;
  gap: 20px;
  align-items: center;
}

.licenses img {
  height: 60px;
  opacity: 0.8;
  transition: var(--transition);
}

.licenses img:hover {
  opacity: 1;
}

.provider-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.provider-logo span {
  font-size: 12px;
  color: var(--color-text-secondary);
}

.provider-logo img {
  height: 30px;
}

.footer-bottom {
  padding-top: 30px;
  text-align: center;
}

.copyright {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-bottom: 12px;
}

.disclaimer {
  font-size: 13px;
  color: var(--color-text-secondary);
  margin-bottom: 16px;
  line-height: 1.6;
}

.disclaimer a {
  color: var(--color-login);
  text-decoration: none;
}

.footer-legal {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}

.footer-legal a {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--color-login);
}

.fixed-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background: linear-gradient(135deg, var(--color-login) 0%, var(--color-register) 100%);
  border-radius: 50px;
  padding: 16px 24px;
  box-shadow: 0 8px 32px rgba(229, 5, 57, 0.4);
  animation: slideInRight 0.6s ease, float 3s ease-in-out infinite;
}

@keyframes slideInRight {
  from {
    transform: translateX(400px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

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

.widget-icon {
  font-size: 32px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

.widget-text {
  color: white;
}

.widget-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.widget-subtitle {
  font-size: 12px;
  opacity: 0.9;
}

.widget-button {
  background: white;
  color: var(--color-login);
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition);
}

.widget-button:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.3);
}

.widget-close {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--color-bg);
  border: none;
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.widget-close:hover {
  background: var(--color-login);
  transform: rotate(90deg);
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 42px;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }

  .mx7k2n9r {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .burger-menu {
    display: flex;
  }

  .nx8k2m5p {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background: var(--color-header);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 20px;
    transform: translateX(-100%);
    transition: var(--transition);
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }

  .nx8k2m5p.active {
    transform: translateX(0);
  }

  .wx5k9m3n {
    flex-direction: column;
    width: 100%;
    gap: 16px;
  }

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

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

  .hero-slider {
    height: 500px;
  }

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

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

  .hero-buttons {
    flex-direction: column;
  }

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

  .hero-features {
    flex-direction: column;
    gap: 16px;
  }

  .zm3r7k5q {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-middle {
    flex-direction: column;
    gap: 24px;
  }

  .licenses {
    flex-wrap: wrap;
    justify-content: center;
  }

  .provider-logo {
    align-items: center;
  }

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

  .kx8m2p9d,
  .n4p7q2rx,
  .bv6k9p2n,
  .qw5n8k3p,
  .xm9k5p2n,
  .dm7k3p9n,
  .pm6k9n3x {
    padding: 24px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  .gm4k8p5n {
    height: 400px;
  }

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

  .widget-content {
    gap: 12px;
  }

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

  .widget-title {
    font-size: 14px;
  }

  .widget-subtitle {
    font-size: 11px;
  }

  .widget-button {
    padding: 8px 16px;
    font-size: 13px;
  }

  .online-counter {
    display: none;
  }

  .wr9k3m5t {
    display: block;
    overflow-x: auto;
  }
}

@media (max-width: 480px) {
  .hero-nav {
    width: 40px;
    height: 40px;
  }

  .hero-nav-prev {
    left: 10px;
  }

  .hero-nav-next {
    right: 10px;
  }

  .payment-methods {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ==========================
   ABOUT PAGE CONTENT (.about)
   ========================== */

.about.container {
    background: #1b1c1d;
    border: 1px solid #2a2a2a;
    border-radius: 18px;
    padding: 50px 40px;
    margin: 0 auto 50px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

/* Контент */
.about.container {
    max-width: 1000px;
    color: #e8e8e8;
    line-height: 1.85;
    font-size: 16px;
}

/* Заголовки */
.about.container h1,
.about.container h2,
.about.container h3 {
    color: #ffffff;
    margin: 28px 0 14px;
    line-height: 1.25;
}

.about.container h2 {
    font-size: 30px;
    font-weight: 800;
    border-left: 4px solid #28a909;
    padding-left: 14px;
}

.about.container h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 22px;
    color: #e50539;
}

/* Текст */
.about.container p {
    margin: 0 0 16px;
    color: #b8b8b8;
    font-size: 16px;
}

/* Посилання */
.about.container a {
    color: #e50539;
    text-decoration: none;
    border-bottom: 1px solid rgba(229, 5, 57, 0.35);
    transition: 0.25s ease;
    font-weight: 600;
}

.about.container a:hover {
    color: #28a909;
    border-bottom-color: rgba(40, 169, 9, 0.7);
}

/* Списки */
.about.container ul,
.about.container ol {
    margin: 18px 0 18px 22px;
    padding: 0;
    color: #b8b8b8;
}

.about.container li {
    margin-bottom: 10px;
    line-height: 1.65;
}

/* Робимо красиві маркери */
.about.container ul li::marker {
    color: #28a909;
}

/* Виділення ключового */
.about.container strong {
    color: #ffffff;
    font-weight: 700;
}

/* Логотипи всередині тексту */
.about.container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Якщо img стоїть inline (як у тебе) */
.about.container p img {
    display: inline-block;
    vertical-align: middle;
}

/* Таблиці (якщо будуть) */
.about.container table {
    width: 100%;
    margin: 22px 0;
    border-collapse: collapse;
    background: rgba(14, 14, 14, 0.55);
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    overflow: hidden;
}

.about.container td,
.about.container th {
    padding: 14px 16px;
    border-bottom: 1px solid #2a2a2a;
    border-right: 1px solid #2a2a2a;
    text-align: left;
    color: #b8b8b8;
    font-size: 15px;
}

.about.container td:last-child,
.about.container th:last-child {
    border-right: none;
}

.about.container tr:last-child td {
    border-bottom: none;
}

.about.container td:first-child {
    width: 40%;
    font-weight: 700;
    color: #e8e8e8;
}

/* Блоки-розділювачі (опціонально) */
.about.container h2 + p {
    margin-top: 10px;
}

/* ==========================
   MOBILE ADAPTATION
   ========================== */

@media (max-width: 992px) {
    .about.container {
        padding: 40px 28px;
    }

    .about.container h2 {
        font-size: 26px;
    }

    .about.container h3 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .about.container {
        padding: 26px 18px;
        border-radius: 16px;
    }

    .about.container p {
        font-size: 15px;
    }

    .about.container h2 {
        font-size: 22px;
        padding-left: 12px;
    }

    .about.container h3 {
        font-size: 18px;
    }

    /* Таблиця — горизонтальний скрол */
    .about.container table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .about.container td,
    .about.container th {
        font-size: 14px;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .about.container {
        padding: 20px 14px;
    }

    .about.container p {
        font-size: 14px;
    }

    .about.container h2 {
        font-size: 20px;
    }
}
