:root {
  --bg0: #070a18;
  --bg1: #0b0f24;
  --bg2: #121a3a;

  --text: #eaf0ff;
  --muted: rgba(234, 240, 255, 0.72);

  --violet: #8a5bff;
  --cyan: #39e6ff;
  --pink: #ff4fd8;

  --header-h: 72px;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
}

body {
  margin: 0;
  color: var(--text);
  background-color: var(--bg0);
  background-image:
    radial-gradient(1100px 520px at 50% -120px, rgba(138, 91, 255, 0.42), transparent 62%),
    radial-gradient(900px 520px at 12% -180px, rgba(57, 230, 255, 0.22), transparent 60%),
    radial-gradient(900px 520px at 92% 0%, rgba(255, 79, 216, 0.12), transparent 55%),
    linear-gradient(180deg, var(--bg2) 0%, var(--bg1) 55%, var(--bg0) 100%);
  background-repeat: no-repeat;
  background-size: cover;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  opacity: 0.085;
  mix-blend-mode: overlay;
}

.container {
  width: min(1200px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header,
.page,
.drawer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding-top: env(safe-area-inset-top);
  background: linear-gradient(180deg, rgba(20, 25, 60, 0.92), rgba(10, 12, 30, 0.40));
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    rgba(57, 230, 255, 0),
    rgba(57, 230, 255, 0.75),
    rgba(255, 79, 216, 0.55),
    rgba(57, 230, 255, 0)
  );
  opacity: 0.9;
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand,
.drawer-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--text);
  user-select: none;
}

.brand-logo {
  height: 34px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.35));
}

.drawer-brand .brand-logo {
  height: 38px;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.12s ease, box-shadow 0.12s ease;
}

.icon-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.35);
}

.burger {
  display: inline-grid;
}

.burger-lines {
  width: 18px;
  height: 12px;
  position: relative;
}

.burger-lines::before,
.burger-lines::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 2px;
  background: rgba(234, 240, 255, 0.92);
}

.burger-lines::before {
  top: 0;
  box-shadow: 0 5px 0 rgba(234, 240, 255, 0.92);
}

.burger-lines::after {
  bottom: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  text-decoration: none;
  color: var(--muted);
  font-weight: 750;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  transition: transform 0.12s ease, background 0.12s ease, color 0.12s ease;
}

.nav-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--text);
  font-weight: 850;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.06);
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
  white-space: nowrap;
}

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

.btn-primary {
  background: linear-gradient(135deg, rgba(138, 91, 255, 0.96), rgba(57, 230, 255, 0.70));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 16px 44px rgba(138, 91, 255, 0.22), 0 10px 26px rgba(57, 230, 255, 0.10);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
}

.btn-block {
  width: 100%;
  border-radius: 16px;
  padding: 12px 14px;
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 1200;
}

.drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  border: 0;
}

.drawer-panel {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: min(420px, 90vw);
  padding: 14px 14px 18px;
  background: rgba(14, 18, 44, 0.92);
  border-right: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(16px);
  transform: translateX(-112%);
  opacity: 0;
  transition: transform 0.20s ease, opacity 0.20s ease;
  outline: none;
}

.drawer.is-open .drawer-panel {
  transform: translateX(0);
  opacity: 1;
}

.drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 2px 12px;
}

.x {
  font-size: 18px;
  line-height: 1;
}

.drawer-user {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(138, 91, 255, 0.16), rgba(57, 230, 255, 0.07));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.user-title {
  font-weight: 900;
}

.user-sub {
  color: rgba(234, 240, 255, 0.68);
  font-size: 13px;
  margin-top: 2px;
}

.drawer-section {
  margin-top: 14px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.drawer-title {
  font-weight: 900;
  letter-spacing: 0.08em;
  color: rgba(234, 240, 255, 0.84);
  font-size: 12px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.drawer-nav {
  display: grid;
  gap: 8px;
}

.drawer-link {
  text-decoration: none;
  color: var(--text);
  font-weight: 850;
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.12s ease, background 0.12s ease;
}

.drawer-link:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-1px);
}

.drawer-link.is-active {
  background: linear-gradient(135deg, rgba(138, 91, 255, 0.22), rgba(57, 230, 255, 0.10));
  border-color: rgba(255, 255, 255, 0.10);
}

.drawer-actions {
  display: grid;
  gap: 10px;
}

.drawer-footer {
  margin-top: 14px;
  padding: 0 4px;
}

.muted {
  color: rgba(234, 240, 255, 0.65);
}

.page {
  padding: 26px 0 60px;
}

.promo-slider {
  padding-top: 16px;
  width: min(900px, 100%);
  margin-inline: auto;
}

.slider {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
  aspect-ratio: 16 / 6;
  min-height: 220px;
}

.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  display: block;
  text-decoration: none;
  opacity: 0;
  transform: scale(1.01);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.55s ease;
}

.slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

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

.slide-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 320px at 35% 20%, rgba(138, 91, 255, 0.28), transparent 55%),
    radial-gradient(820px 320px at 85% 20%, rgba(57, 230, 255, 0.16), transparent 55%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.10) 55%, rgba(0, 0, 0, 0.35));
}

.dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(10, 12, 30, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(12px);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: rgba(234, 240, 255, 0.35);
  position: relative;
  transition: width 0.25s ease, background 0.25s ease, transform 0.15s ease;
}

.dot:hover {
  transform: translateY(-1px);
}

.dot.is-active {
  width: 28px;
  background: linear-gradient(90deg, rgba(138, 91, 255, 0.95), rgba(57, 230, 255, 0.75));
}

.dot.is-active::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(57, 230, 255, 0.25), transparent 60%);
  animation: dotPulse 1.2s ease-in-out infinite;
}

.dot.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  opacity: 0.18;
}

@keyframes dotPulse {
  0% {
    transform: scale(0.9);
    opacity: 0.55;
  }
  60% {
    transform: scale(1.15);
    opacity: 0.18;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.55;
  }
}

.games-section {
  margin-top: 22px;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.section-ic {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.game-card {
  min-width: 0;
}

.game-thumb {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.14s ease, box-shadow 0.14s ease, border-color 0.14s ease;
}

.game-thumb img {
  width: 100%;
  height: 128px;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 9;
  transform: scale(1.01);
}

.game-thumb:hover,
.game-thumb:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
}

.game-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 0.18s ease;
  background:
    radial-gradient(700px 260px at 50% 25%, rgba(57, 230, 255, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.35));
}

.game-overlay-inner {
  text-align: center;
  padding: 14px;
}

.game-name {
  font-weight: 900;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: rgba(234, 240, 255, 0.95);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.game-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  transition: transform 0.12s ease, background 0.12s ease;
  white-space: nowrap;
}

.pill:hover {
  transform: translateY(-1px);
}

.pill-primary {
  color: var(--text);
  background: linear-gradient(135deg, rgba(138, 91, 255, 0.92), rgba(57, 230, 255, 0.68));
  box-shadow: 0 16px 42px rgba(138, 91, 255, 0.18);
}

.pill-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.game-thumb:hover .game-overlay,
.game-thumb:focus-visible .game-overlay {
  opacity: 1;
}

@media (max-width: 1100px) {
  .games-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 920px) {
  .nav {
    display: none;
  }

  .slider {
    aspect-ratio: 16 / 7;
  }

  .games-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 640px) {
  .games-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .game-card {
    flex: 0 0 auto;
    width: min(72vw, 280px);
    scroll-snap-align: start;
  }

  .game-thumb img {
    aspect-ratio: 16 / 10;
    height: 100%;
  }

  .games-grid::-webkit-scrollbar {
    height: 8px;
  }

  .games-grid::-webkit-scrollbar-track {
    background: transparent;
  }

  .games-grid::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.14);
    border-radius: 999px;
  }
}

@media (max-width: 520px) {
  :root {
    --header-h: 66px;
  }

  .container {
    width: calc(100% - 24px);
  }

  .brand-logo {
    height: 30px;
  }

  .drawer-brand .brand-logo {
    height: 34px;
  }

  .btn {
    padding: 10px 12px;
    font-size: 13px;
  }

  .drawer-panel {
    width: min(360px, 92vw);
  }

  .slider {
    aspect-ratio: 16 / 9;
    border-radius: 22px;
    min-height: auto;
  }

  .dots {
    bottom: 10px;
    gap: 8px;
    padding: 8px 10px;
  }

  .dot {
    width: 9px;
    height: 9px;
  }

  .dot.is-active {
    width: 24px;
  }
}

:focus-visible {
  outline: 2px solid rgba(57, 230, 255, 0.75);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .dot.is-active::before {
    animation: none !important;
  }
}

.site-footer{
  margin-top: 44px;
  padding: 26px 0 18px;
  background:
    radial-gradient(1000px 420px at 30% 0%, rgba(138,91,255,0.22), transparent 60%),
    radial-gradient(900px 420px at 85% 10%, rgba(57,230,255,0.12), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
  border-top: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(14px);
}

.footer-top{
  padding-bottom: 18px;
}

.footer-grid{
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 22px;
  align-items: start;
}

.footer-logo img{
  height: 34px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 12px 26px rgba(0,0,0,0.40));
}

.footer-text{
  margin: 14px 0 14px;
  color: rgba(234,240,255,0.78);
  line-height: 1.4;
  max-width: 28ch;
}

.social-btn{
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
  transition: transform .12s ease, background .12s ease;
}

.social-btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.07);
}

.social-btn svg{
  width: 22px;
  height: 22px;
  fill: rgba(57,230,255,0.95);
}

.footer-title{
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(234,240,255,0.86);
  margin-bottom: 12px;
}

.footer-links{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-link{
  color: rgba(234,240,255,0.78);
  text-decoration: none;
  font-weight: 650;
  transition: color .12s ease, transform .12s ease;
}

.footer-link:hover{
  color: rgba(234,240,255,1);
  transform: translateX(2px);
}

.bot-card{
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  text-decoration: none;
  color: var(--text);
  background:
    radial-gradient(520px 220px at 20% 20%, rgba(57,230,255,0.18), transparent 60%),
    linear-gradient(135deg, rgba(138,91,255,0.16), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 24px 70px rgba(0,0,0,0.40);
  transition: transform .12s ease, background .12s ease;
  min-height: 74px;
}

.bot-card:hover{
  transform: translateY(-1px);
  background:
    radial-gradient(520px 220px at 20% 20%, rgba(57,230,255,0.22), transparent 60%),
    linear-gradient(135deg, rgba(138,91,255,0.20), rgba(255,255,255,0.06));
}

.bot-avatar{
  width: 54px;
  height: 54px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  flex: 0 0 auto;
}

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

.bot-text{
  display: grid;
  gap: 2px;
  min-width: 0;
}

.bot-line{
  font-weight: 800;
  line-height: 1.1;
  color: rgba(234,240,255,0.92);
}

.bot-strong{
  letter-spacing: .04em;
}

.bot-send{
  margin-left: auto;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  flex: 0 0 auto;
}

.bot-send svg{
  width: 20px;
  height: 20px;
  fill: rgba(234,240,255,0.9);
}

.footer-bottom{
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-copy{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
  color: rgba(234,240,255,0.82);
  font-weight: 700;
}

.footer-legal{
  margin-top: 14px;
}

.footer-legal p{
  margin: 0;
  color: rgba(234,240,255,0.60);
  font-size: 12px;
  line-height: 1.5;
}

@media (max-width: 980px){
  .footer-grid{
    grid-template-columns: 1fr 1fr;
  }
  .bot-card{
    grid-column: 1 / -1;
  }
  .footer-copy{
    justify-content: flex-start;
  }
}

@media (max-width: 560px){
  .footer-grid{
    grid-template-columns: 1fr;
  }
  .footer-text{
    max-width: none;
  }
  .bot-card{
    padding: 14px;
  }
}

.content-article{
  margin-top: 22px;
  padding: 18px 18px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.10);
  background:
    radial-gradient(900px 360px at 25% 0%, rgba(138,91,255,0.18), transparent 60%),
    radial-gradient(900px 360px at 90% 15%, rgba(57,230,255,0.12), transparent 62%),
    rgba(255,255,255,0.04);
  box-shadow: 0 30px 90px rgba(0,0,0,0.35);
  backdrop-filter: blur(14px);
    overflow: hidden;
}

.content-article h1{
  margin: 0 0 12px;
  font-size: clamp(20px, 2.6vw, 32px);
  letter-spacing: -0.02em;
}

.content-article h2{
  margin: 18px 0 10px;
  font-size: clamp(16px, 2vw, 22px);
  letter-spacing: -0.01em;
}

.content-article h3{
  margin: 14px 0 10px;
  font-size: 13px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(234,240,255,0.90);
}

.content-article p{
  margin: 10px 0;
  line-height: 1.7;
  color: rgba(234,240,255,0.78);
}

.content-article strong{
  color: rgba(234,240,255,0.96);
  font-weight: 900;
}

.content-article em{
  color: rgba(234,240,255,0.90);
}

.content-article ul,
.content-article ol{
  margin: 10px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: rgba(234,240,255,0.78);
}

.content-article li{
  line-height: 1.6;
}

.content-article table{
  display: block;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 12px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
          overflow-x: auto;
        -webkit-overflow-scrolling: touch;
}

.content-article th,
.content-article td{
  padding: 12px 12px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(234,240,255,0.82);
}

.content-article thead th{
  width: 1%;
  font-weight: 900;
  color: rgba(234,240,255,0.92);
  background: rgba(255,255,255,0.04);
}

.content-article tbody tr:hover{
  background: rgba(255,255,255,0.03);
}

.content-article tbody tr:last-child td{
  border-bottom: 0;
}

.content-article img{
  max-width: 100%;
  height: auto;
  display: block;
  margin: 12px 0;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 22px 60px rgba(0,0,0,0.40);
}

@media (max-width: 520px){
  .content-article{
    padding: 16px 14px;
    border-radius: 18px;
  }
}
