@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-VariableFont_opsz\,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Italic-VariableFont_opsz\,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}


* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: #0b1022;
    color: #e9ecff;
}

:root {
    --bg: #0e1227;
    --bg2: #0b1022;
    --pill: #262a3e;
    --pillActive: #373b62;
    --text: #e9ecff;
    --muted: #a7aec9;
    --border: #515974;
    --borderSoft: rgba(255, 255, 255, .10);
    --green: #12c83a;
    --green2: #0fb534;
}

.no-scroll {
    overflow: hidden;
}

.topbar {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
    border-bottom: 1px solid var(--borderSoft);
}

.topbar__inner {
    height: 90px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 22px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
    flex: 0 0 auto;
}

.brand__logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #6b5cff 0%, #4c37ff 50%, #705bff 100%);
    box-shadow: 0 10px 22px rgba(0, 0, 0, .25);
    font-weight: 800;
    letter-spacing: .5px;
    position: relative;
    overflow: hidden;
}

.brand__logo::before,
.brand__logo::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .85);
    filter: blur(.2px);
    opacity: .9;
}

.brand__logo::before {
    top: 6px;
    left: 8px;
}

.brand__logo::after {
    top: 10px;
    left: 18px;
}

.brand__b {
    font-size: 22px;
    line-height: 1;
    transform: translateY(-1px);
}

.brand__seven {
    font-size: 22px;
    line-height: 1;
    transform: translateY(-1px);
    margin-left: 2px;
}

.brand__text {
    font-weight: 800;
    font-size: 22px;
    letter-spacing: .6px;
}

.brand img {
    height: 50px;
}

.tabs {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .06);
}

.tab {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: transparent;
    color: var(--muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: transform .12s ease, background .12s ease, color .12s ease;
}

.tab i {
    font-size: 15px;
    opacity: .95;
}

.tab:hover {
    transform: translateY(-1px);
    color: #fff;
}

.tab.is-active {
    background: var(--pillActive);
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .07);
}

.actions {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.icon-btn {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid transparent;
    background: transparent;
    color: rgba(255, 255, 255, .80);
    cursor: pointer;
    transition: background .12s ease, border-color .12s ease, transform .12s ease;
}

.icon-btn:hover {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .10);
    transform: translateY(-1px);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    user-select: none;
    transition: transform .12s ease, background .12s ease, border-color .12s ease, box-shadow .12s ease;
}

.btn-ghost {
    color: #fff;
    background: rgba(255, 255, 255, .06);
    border: 2px solid rgba(255, 255, 255, .18);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .09);
    border-color: rgba(255, 255, 255, .25);
    transform: translateY(-1px);
}

.btn-primary {
    color: #06120a;
    background: var(--green);
    border: 2px solid rgba(0, 0, 0, .15);
    box-shadow: 0 10px 18px rgba(18, 200, 58, .18);
}

.btn-primary:hover {
    background: var(--green2);
    transform: translateY(-1px);
}

.burger {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .06);
    color: #fff;
    cursor: pointer;
    display: none;
}

.burger:hover {
    background: rgba(255, 255, 255, .09);
}

.mnav {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 50;
}

.mnav__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    opacity: 0;
    transition: opacity .18s ease;
}

.mnav__panel {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: min(360px, 88vw);
    background: linear-gradient(180deg, #10163a 0%, #0b1022 100%);
    border-left: 1px solid rgba(255, 255, 255, .08);
    transform: translateX(110%);
    transition: transform .22s ease;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mnav.is-open {
    pointer-events: auto;
}

.mnav.is-open .mnav__overlay {
    opacity: 1;
}

.mnav.is-open .mnav__panel {
    transform: translateX(0);
}

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

.mnav__brand {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
}

.mnav__brandMark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 30px;
    border-radius: 10px;
    background: linear-gradient(135deg, #6b5cff 0%, #4c37ff 60%, #705bff 100%);
    font-weight: 900;
}

.mnav__brandText {
    font-weight: 900;
    letter-spacing: .6px;
    font-size: 18px;
}

.mnav__close {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .06);
    color: #fff;
    cursor: pointer;
}

.mnav__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mnav__link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 12px;
    border-radius: 14px;
    text-decoration: none;
    color: #dfe4ff;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    font-weight: 700;
}

.mnav__link i {
    width: 18px;
    text-align: center;
    opacity: .95;
}

.mnav__link:hover {
    background: rgba(255, 255, 255, .09);
}

.mnav__link.is-active {
    background: rgba(55, 59, 98, .55);
    border-color: rgba(255, 255, 255, .10);
}

.mnav__cta {
    margin-top: 10px;
    display: grid;
    gap: 10px;
}

.w-full {
    width: 100%;
}

@media (max-width: 900px) {
    .topbar__inner {
        height: 72px;
        padding: 0 16px;
    }

    .tabs {
        display: none;
    }

    .btn-ghost,
    .btn-primary {
        display: none;
    }

    .burger {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .brand__text {
        font-size: 20px;
    }
}

@media (max-width: 420px) {
    .brand__logo {
        width: 58px;
        height: 34px;
    }

    .brand__text {
        font-size: 18px;
    }
}

.promos {
    padding: 18px 0 26px;
    background: linear-gradient(180deg, rgba(11, 16, 34, 0) 0%, rgba(11, 16, 34, .35) 100%);
}

.promos__inner {
    padding: 0 24px;
}

.promos__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.promo {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 18px 28px rgba(0, 0, 0, .25);
    min-height: 190px;

    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    background-color: #0b1022;
}

.promo__body {
    position: relative;
    height: 100%;
    padding: 18px;
    display: flex;
    align-items: stretch;
    z-index: 2;
}

.promo__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: .4px;
    color: #f2f5ff;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .14);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 3;
}

.promo__text {
    width: min(360px, 72%);
    padding-top: 56px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.promo__title {
    margin: 0;
    font-size: 34px;
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: .2px;
    color: #ffe86a;
    text-shadow: 0 10px 22px rgba(0, 0, 0, .28);
}

.promo__subtitle {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: #e9ecff;
    opacity: .95;
}

.promo__btn {
    margin-top: auto;
    width: fit-content;
    padding-left: 22px;
    padding-right: 22px;
}


.promo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}



.promo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .58) 0%, rgba(0, 0, 0, .20) 45%, rgba(0, 0, 0, 0) 72%);
    pointer-events: none;
    z-index: 1;
}
.promo__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}

.promo__body {
  position: relative;
  z-index: 2;
}

.promo--welcome::before {
  background:
    radial-gradient(700px 260px at 20% 30%, rgba(255, 232, 106, .18), transparent 60%),
    radial-gradient(520px 220px at 65% 60%, rgba(120, 90, 255, .18), transparent 62%);
}

.promo--cashback::before {
  background:
    radial-gradient(720px 280px at 18% 30%, rgba(18, 200, 58, .18), transparent 62%),
    radial-gradient(520px 220px at 68% 58%, rgba(255, 255, 255, .10), transparent 62%);
}

.promo--highroller::before {
  background:
    radial-gradient(720px 280px at 18% 30%, rgba(18, 200, 58, .16), transparent 62%),
    radial-gradient(520px 220px at 70% 55%, rgba(255, 232, 106, .10), transparent 62%);
}



@media (max-width: 1100px) {
    .promos__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .promos__inner {
        padding: 0 16px;
    }

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

    .promo {
        min-height: 210px;
        background-position: 75% center;
    }

    .promo__text {
        width: min(420px, 86%);
    }

    .promo__title {
        font-size: 32px;
    }
}

.games {
    padding: 40px 0 48px;
}

.games__inner {
    padding: 0 80px;

}

.games__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}

.games__title {
    margin: 0;
    font-size: 40px;
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -.3px;
    color: #f1f3ff;
}

.games__actions {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.games__all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .18);
    color: #f1f3ff;
    text-decoration: none;
    font-weight: 800;
    font-size: 15px;
}

.games__count {
    width: 30px;
    height: 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .18);
    font-size: 13px;
}

.games__nav {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .06);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.games__nav i {
    font-size: 14px;
}

.games__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 26px 24px;
}

.gcard {
    display: flex;
    flex-direction: column;
}

.gcard__media {
    position: relative;
    display: block;
    width: 100%;
    padding-bottom: 100%;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 16px 26px rgba(0, 0, 0, .35);
}


.gcard__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.gcard__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .32) 100%);
    opacity: .9;
    pointer-events: none;
}


.gcard__label {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #28d446;
    color: #0b1022;
    font-weight: 900;
    font-size: 12px;
}


.gcard__cta {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    background: #24d34a;
    color: #fff;
    font-weight: 900;
    font-size: 14px;
}

.gcard__cta i {
    font-size: 13px;
}


.gcard__bottom {
    margin-top: 10px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.gcard__info {
    min-width: 0;
}

.gcard__name {
    font-size: 15px;
    font-weight: 900;
    color: #f1f3ff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gcard__vendor {
    margin-top: 4px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(241, 243, 255, .60);
}

.gcard__fav {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: transparent;
    color: rgba(241, 243, 255, .85);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}


@media (max-width: 1400px) {
    .games__inner {
        padding: 0 48px;
    }

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

@media (max-width: 1024px) {
    .games__inner {
        padding: 0 24px;
    }

    .games__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .games__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .games__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 500px) {
    .games__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .games__title {
        font-size: 32px;
    }
}

.games--current {
    padding-top: 24px;

}

.games--new {
    padding-top: 24px;
}

.providers {
    padding: 32px 0 40px;
}

.providers .games__head {
    margin-bottom: 22px;
}

.providers__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(210px, 1fr);
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.providers__track::-webkit-scrollbar {
    height: 8px;
}

.providers__track::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, .03);
    border-radius: 999px;
}

.providers__track::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, .12);
    border-radius: 999px;
}

.provider-card {
    height: 110px;
    border-radius: 26px;
    background:
        radial-gradient(140% 190% at 0% 0%, rgba(255, 255, 255, .06), rgba(10, 14, 38, 1));
    border: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 32px;
    text-decoration: none;
}

.provider-card img {
    max-width: 100%;
    height: 80px;
    object-fit: contain;
}

@media (max-width: 1100px) {
    .games__inner {
        padding: 0 48px;
    }
}

@media (max-width: 768px) {
    .games__inner {
        padding: 0 24px;
    }

    .providers__track {
        grid-auto-columns: minmax(190px, 1fr);
    }
}

.payments {
    padding: 26px 0 34px;
}

.payments__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(12px, 7vw, 120px);
}

.payments__item img {
    display: block;
    height: 40px;
}


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

@media (max-width: 768px) {
    .payments__list {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 18px;
    }
}
.footer{
  padding: 32px 0 0;
}

.footer__inner{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.footer__brand{
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer__logo img{
  display: block;
  height: 46px;
}

.footer__lang{
  min-width: 150px;
  height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: none;
  background: #12172c;
  color: #f2f4ff;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
}

.footer__lang i{
  font-size: 12px;
}

.footer__nav{
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px 40px;
}

.footer__col{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__col a{
  font-size: 14px;
  font-weight: 500;
  color: rgba(242,244,255,.82);
  text-decoration: none;
}
.footer__col a:hover{ color: #ffffff; }

.footer__divider{
  margin-top: 26px;
  border-top: 1px solid rgba(255,255,255,.08);
}


.footer__bottom{
  padding: 22px 80px 32px;
}

.footer__notice{
  margin: 0 0 18px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(242,244,255,.65);
  max-width: 820px;
}

.footer__bottom-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer__copy{
  margin: 0;
  font-size: 13px;
  color: rgba(242,244,255,.80);
}

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

.footer__badges img{
  height: 32px;
  width: auto;
}


@media (max-width: 960px){
  .footer__inner{
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__nav{
    width: 100%;
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .footer__bottom{
    padding: 22px 24px 28px;
  }

  .footer__bottom-row{
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px){
  .footer__nav{
    grid-template-columns: 1fr;
    row-gap: 18px;
  }

  .footer__notice{
    max-width: 100%;
  }

  .footer__badges{
    align-self: flex-start;
  }
}.faq{
  padding: 40px 0 56px;
}

.faq__title{
  margin: 0 0 24px;
  font-size: 32px;
  font-weight: 900;
  color: #f1f3ff;
}

.faq__list{
  border-radius: 24px;
  background: #0e1225;
  border: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
}

.faq__item + .faq__item{
  border-top: 1px solid rgba(255,255,255,.06);
}

.faq__question{
  width: 100%;
  padding: 18px 22px;
  background: transparent;
  border: none;
  color: #f1f3ff;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}

.faq__question span{
  text-align: left;
}

.faq__question i{
  font-size: 14px;
  transition: transform .2s ease;
}

.faq__item.is-open .faq__question i{
  transform: rotate(180deg);
}

.faq__answer{
  padding: 0 22px 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}

.faq__answer p{
  margin: 0 0 18px;
  padding-bottom: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(241,243,255,.82);
}

@media (max-width: 768px){
  .faq__title{
    font-size: 26px;
  }
  .faq__question{
    padding: 16px 16px;
  }
  .faq__answer{
    padding: 0 16px 0;
  }
}
.seo {
    background-color: #050816;
    color: #f9fafb;
    padding: 56px 0;
}

.seo h1 {
    font-size: 2.4rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

.seo h2 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.75rem;
    color: #e2e8f0;
}

.seo p {
    max-width: 1200px;
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #cbd5f5;
}

table{
  width: 100%;
  min-width: 640px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.95rem;
  color: #e5e7eb;

  border: 1px solid rgba(148, 163, 184, 0.45);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(10, 16, 32, 0.96);
  box-shadow: 0 26px 60px rgba(3, 7, 18, 0.75);
}

table thead th{
  padding: 0.85rem 1.1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  background: linear-gradient(
    90deg,
    rgba(56, 189, 248, 0.28),
    rgba(129, 140, 248, 0.18)
  );
  border-bottom: 1px solid rgba(148, 163, 184, 0.7);
  white-space: nowrap;
}

table thead th:first-child{ border-top-left-radius: 14px; }
table thead th:last-child{  border-top-right-radius: 14px; }

table tbody tr{
  transition: background 0.15s ease, transform 0.12s ease;
}

table tbody td{
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid rgba(30, 64, 175, 0.7);
  background: rgba(15, 23, 42, 0.92);
  vertical-align: top;
}

table tbody tr:nth-child(even) td{
  background: rgba(15, 23, 42, 0.96);
}

table tbody tr:hover td{
  background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.18), transparent 55%);
  transform: translateY(-1px);
}

table tbody tr:last-child td:first-child{ border-bottom-left-radius: 14px; }
table tbody tr:last-child td:last-child{  border-bottom-right-radius: 14px; }

/* Адаптив 1: на малих екранах — скрол таблиці без div */
@media (max-width: 768px){
  table{
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    min-width: 0;                 /* дозволяє вписатись */
    white-space: nowrap;          /* щоб колонки не ламались */
    font-size: 0.9rem;
  }

  table thead th,
  table tbody td{
    padding: 0.7rem 0.9rem;
  }

  table::-webkit-scrollbar{ height: 6px; }
  table::-webkit-scrollbar-track{ background: transparent; }
  table::-webkit-scrollbar-thumb{
    background: rgba(148, 163, 184, 0.65);
    border-radius: 999px;
  }
}
