/* Atom Casino KZ - Affiliate Site Styles */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;900&display=swap');

:root {
  --color-header: #100b14;
  --color-login: #7f45df;
  --color-signup: #34e5d8;
  --color-bg: #1a0b2e;
  --color-text: #e8e8e8;
  --color-text-light: #b8b8b8;
  --font-main: 'Orbitron', monospace;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: hidden;
}

body.fixed {
  overflow: hidden;
}

.wp-container-1 { display: none; }
.wp-block-group__inner-container { display: none; }

a {
  color: var(--color-login);
  text-decoration: none;
  transition: all 0.3s ease;
}

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

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

/* Header Styles */
.header {
  background: linear-gradient(135deg, var(--color-header) 0%, #1a1420 100%);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.header-wrapper {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}

.logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

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

.header-nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

.header-nav ul li a {
  color: var(--color-text);
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s;
}

.header-nav ul li a:hover {
  color: var(--color-signup);
}

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

.online-counter {
  background: rgba(52, 229, 216, 0.1);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 12px;
  color: var(--color-signup);
  border: 1px solid rgba(52, 229, 216, 0.3);
}

.online-counter .pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--color-signup);
  border-radius: 50%;
  margin-right: 8px;
  animation: pulse 2s infinite;
}

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

.btn {
  padding: 12px 28px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
}

.btn-login {
  background: var(--color-login);
  color: #fff;
  border: 2px solid var(--color-login);
}

.btn-login:hover {
  background: transparent;
  color: var(--color-login);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(127, 69, 223, 0.4);
}

.btn-signup {
  background: var(--color-signup);
  color: #000;
  border: 2px solid var(--color-signup);
}

.btn-signup:hover {
  background: transparent;
  color: var(--color-signup);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(52, 229, 216, 0.4);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.burger span {
  width: 30px;
  height: 3px;
  background: var(--color-signup);
  transition: all 0.3s;
  border-radius: 2px;
}

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

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

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

/* Hero Section */
.hero {
  position: relative;
  padding: 80px 0;
  overflow: hidden;

}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/banner-atom.jpg') center/cover no-repeat;
  opacity: 0.15;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 20px;
  background: linear-gradient(45deg, var(--color-login), var(--color-signup));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 1s ease;
}

.hero p {
  font-size: 20px;
  color: var(--color-text-light);
  margin-bottom: 30px;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero .btn {
  font-size: 18px;
  padding: 15px 40px;
  animation: fadeInUp 1s ease 0.4s both;
}

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

/* Breadcrumbs */
.breadcrumbs {
  padding: 20px 0;
  font-size: 14px;
}

.breadcrumbs ul {
  display: flex;
  list-style: none;
  gap: 10px;
  flex-wrap: wrap;
}

.breadcrumbs ul li::after {
  content: '/';
  margin-left: 10px;
  color: var(--color-text-light);
}

.breadcrumbs ul li:last-child::after {
  content: '';
}

/* Content Blocks */
.content-section {
  padding: 60px 0;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--color-signup);
}

.block {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.block:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(127, 69, 223, 0.3);
}

/* Pros and Cons */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.pros, .cons {
  background: rgba(255, 255, 255, 0.03);
  padding: 30px;
  border-radius: 15px;
}

.pros {
  border-left: 4px solid #00ff88;
}

.cons {
  border-left: 4px solid #ff3366;
}

.pros h3, .cons h3 {
  margin-bottom: 20px;
  font-size: 24px;
}

.pros ul, .cons ul {
  list-style: none;
}

.pros ul li::before {
  content: '✓';
  color: #00ff88;
  font-weight: bold;
  margin-right: 10px;
}

.cons ul li::before {
  content: '✗';
  color: #ff3366;
  font-weight: bold;
  margin-right: 10px;
}

.pros ul li, .cons ul li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Jackpots */
.jackpots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.jackpot-card {
  background: linear-gradient(135deg, #2a1b3d 0%, #1a0b2e 100%);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  border: 2px solid rgba(127, 69, 223, 0.3);
  position: relative;
  overflow: hidden;
}

.jackpot-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(127, 69, 223, 0.3), transparent 30deg);
  animation: rotate 4s linear infinite;
}

@keyframes rotate {
  100% { transform: rotate(360deg); }
}

.jackpot-card-inner {
  position: relative;
  z-index: 1;
}

.jackpot-amount {
  font-size: 32px;
  font-weight: 900;
  color: var(--color-signup);
  margin: 15px 0;
}

/* Tournaments */
.tournaments-wrapper {
  position: relative;
}

.tournaments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.tournament-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid rgba(127, 69, 223, 0.2);
}

.tournament-timer {
  background: rgba(127, 69, 223, 0.2);
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-signup);
  margin: 15px 0;
}

.tournament-prize {
  font-size: 28px;
  font-weight: 900;
  color: #ffd700;
  text-align: center;
  margin-top: 15px;
}

/* Bonuses */
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.bonus-card {
  background: linear-gradient(135deg, rgba(127, 69, 223, 0.2), rgba(52, 229, 216, 0.2));
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s;
}

.bonus-card:hover {
  transform: scale(1.05);
}

.bonus-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.bonus-amount {
  font-size: 36px;
  font-weight: 900;
  color: var(--color-signup);
  margin: 20px 0;
}

/* Wheel of Fortune */
.wheel-container {
  text-align: center;
  padding: 50px 0;
}

.wheel {
  width: 400px;
  height: 400px;
  margin: 0 auto 30px;
  position: relative;
  border-radius: 50%;
  border: 10px solid var(--color-login);
  overflow: hidden;
}

.wheel-segment {
  position: absolute;
  width: 50%;
  height: 50%;
  transform-origin: 100% 100%;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.wheel-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--color-signup);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 24px;
  color: #000;
  z-index: 10;
  cursor: pointer;
}

.wheel-pointer {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 30px solid #ffd700;
  z-index: 11;
}

.wheel-result {
  display: none;
  background: rgba(52, 229, 216, 0.2);
  padding: 30px;
  border-radius: 15px;
  margin-top: 30px;
}

.wheel-result.show {
  display: block;
  animation: fadeInUp 0.5s ease;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.review-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-login), var(--color-signup));
}

.review-name {
  font-weight: 700;
  font-size: 18px;
}

.review-stars {
  color: #ffd700;
  font-size: 18px;
}

.review-text {
  line-height: 1.6;
  color: var(--color-text-light);
}

/* Review Form */
.review-form {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px;
  border-radius: 15px;
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--color-text);
  font-family: var(--font-main);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--color-signup);
  color: #000;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
}

.form-submit:hover {
  background: var(--color-login);
  color: #fff;
  transform: translateY(-2px);
}

.form-message {
  display: none;
  margin-top: 20px;
  padding: 15px;
  background: rgba(0, 255, 136, 0.2);
  border-radius: 8px;
  text-align: center;
}

.form-message.show {
  display: block;
  animation: fadeInUp 0.5s ease;
}

/* Footer */
.footer {
  background: var(--color-header);
  padding: 50px 0 20px;
  margin-top: 80px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

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

.footer-section ul {
  list-style: none;
}

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

.payment-methods,
.game-providers {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.payment-logo,
.provider-logo {
  width: 60px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  text-align: center;
}

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

/* Sticky Widget */
.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--color-login), var(--color-signup));
  padding: 15px;
  z-index: 999;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.5s ease;
}



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

.sticky-widget-text {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.sticky-widget .btn {
  background: #fff;
  color: var(--color-login);
  padding: 12px 35px;
}

.sticky-widget .btn:hover {
  background: var(--color-header);
  color: var(--color-signup);
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

table th,
table td {
  padding: 15px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

table th {
  background: rgba(127, 69, 223, 0.2);
  font-weight: 700;
}

table tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

/* Content Styles */
.content-wrapper h1,
.content-wrapper h2,
.content-wrapper h3,
.content-wrapper h4 {
  margin: 30px 0 15px;
  color: var(--color-signup);
}

.content-wrapper p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.content-wrapper ul,
.content-wrapper ol {
  margin: 15px 0 15px 30px;
}

.content-wrapper ul li,
.content-wrapper ol li {
  margin-bottom: 10px;
  line-height: 1.7;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .header-wrapper {
    grid-template-columns: auto 1fr auto;
  }

  .header-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background: var(--color-header);
    flex-direction: column;
    padding: 80px 20px 20px;
    transition: left 0.3s ease;
    z-index: 999;
  }

  .header-nav.active {
    left: 0;
  }

  .header-nav ul {
    flex-direction: column;
    gap: 20px;
  }

  .burger {
    display: flex;
  }

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

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

  .pros-cons {
    grid-template-columns: 1fr;
  }

  .tournaments-grid,
  .bonuses-grid {
    grid-template-columns: 1fr;
    overflow-x: auto;
  }

  .wheel {
    width: 300px;
    height: 300px;
  }

  .sticky-widget-content {
    flex-direction: column;
    text-align: center;
  }

  .section-title {
    font-size: 28px;
  }
}

/* Elementor Compatibility Classes */
.elementor-element { opacity: 1; }
.elementor-widget-container { display: block; }
.wp-block-columns { display: grid; }

/* Yoast SEO Meta */
.yoast-schema-graph { display: none; }
/* =========================
   PRO HEADER (override)
   вставити в кінець CSS
========================= */

:root{
    --hdr-h: 72px;
    --hdr-radius: 16px;
    --hdr-border: rgba(255,255,255,.10);
    --hdr-glass: rgba(16, 11, 20, .72);
}

/* header: glass + sticky */
.header{
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;

    background: var(--hdr-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-bottom: 1px solid var(--hdr-border);
    box-shadow: 0 10px 30px rgba(0,0,0,.45);
}

/* layout */
.header-wrapper{
    min-height: var(--hdr-h);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
}

/* logo */
.logo img{
    height: 52px;
    width: auto;
    display: block;
    border-radius: 12px;
    transition: transform .18s ease;
}
.logo img:hover{ transform: scale(1.03); }

/* nav desktop */
.header-nav{
    display: flex;
    justify-content: center;
}
.header-nav ul{
    display: flex;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.header-nav a{
    display: inline-flex;
    align-items: center;
    height: 40px;
    padding: 0 12px;
    border-radius: 12px;

    color: rgba(232,232,232,.92);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .2px;
    text-decoration: none;

    transition: background .2s ease, color .2s ease, transform .2s ease;
}
.header-nav a:hover{
    color: #fff;
    background: rgba(255,255,255,.06);
    transform: translateY(-1px);
}

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

/* online badge */
.online-counter{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 40px;
    padding: 0 12px;
    border-radius: 999px;

    background: rgba(52,229,216,.08);
    border: 1px solid rgba(52,229,216,.18);
    color: rgba(52,229,216,.95);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}
.online-counter .pulse{
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-signup);
    box-shadow: 0 0 0 0 rgba(52,229,216,.45);
    animation: pulse2 1.8s infinite;
}
@keyframes pulse2{
    0%{ box-shadow: 0 0 0 0 rgba(52,229,216,.45); }
    70%{ box-shadow: 0 0 0 10px rgba(52,229,216,0); }
    100%{ box-shadow: 0 0 0 0 rgba(52,229,216,0); }
}
.online-counter .online-count{
    color: #fff;
    font-weight: 900;
}

/* buttons */
.header .btn{
    height: 40px;
    padding: 0 16px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .5px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform .12s ease, filter .2s ease, background .2s ease;
}

.btn-login{
    background: linear-gradient(90deg, var(--color-login), #5f2fd0);
    color: #fff;
}
.btn-signup{
    background: linear-gradient(90deg, var(--color-signup), #22c3ff);
    color: #081018;
}

.header .btn:hover{
    filter: brightness(1.06);
    transform: translateY(-1px);
}

/* burger */
.burger{
    width: 44px;
    height: 40px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.06);
    display: none;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-direction: column;
    cursor: pointer;
}
.burger span{
    width: 18px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .2s ease, opacity .2s ease;
}
.burger.active span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2){ opacity: 0; }
.burger.active span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* overlay for mobile menu */
.header::after{
    content:"";
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
    z-index: 998;
}
.header.menu-open::after{
    opacity: 1;
    pointer-events: auto;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 900px){
    .header-wrapper{
        grid-template-columns: auto 1fr auto;
        gap: 12px;
    }

    /* сховати desktop nav */
    .header-nav{
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: min(86vw, 360px);
        padding: 90px 16px 16px;

        background: rgba(16, 11, 20, .92);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-right: 1px solid rgba(255,255,255,.10);

        transform: translateX(-105%);
        transition: transform .22s ease;
        z-index: 999; /* над overlay */
        justify-content: flex-start;
    }

    .header-nav.active{
        transform: translateX(0);
    }

    .header-nav ul{
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }

    .header-nav a{
        width: 100%;
        height: 44px;
        padding: 0 14px;
        background: rgba(255,255,255,.06);
        border: 1px solid rgba(255,255,255,.08);
    }

    /* показати бургер */
    .burger{
        display: flex;
    }

    /* онлайн на моб: можна лишити або сховати */
    .online-counter{
        display: none; /* якщо хочеш показувати — прибери цю строку */
    }
}

/* small phones */
@media (max-width: 420px){
    .logo img{ height: 46px; }

    .header-actions{
        gap: 8px;
    }

    .header .btn{
        height: 38px;
        padding: 0 12px;
        font-size: 12px;
        border-radius: 13px;
    }

    .btn-signup{ padding: 0 12px; }
}
/* =========================
   LIVE PAGE (PRO)
   вставити в кінець CSS
========================= */

/* container live */
.container.live{
    max-width: 1100px;
    margin: 0 auto;
    padding: 28px 20px 70px;
}

/* легкий “фон-карточка” для контенту */
.container.live{
    background:
            radial-gradient(900px 320px at 15% 0%, rgba(127,69,223,.14), transparent 60%),
            radial-gradient(900px 320px at 90% 10%, rgba(52,229,216,.10), transparent 55%);
    border-radius: 22px;
}

/* базова типографіка */
.container.live p{
    color: rgba(232,232,232,.92);
    font-size: 16px;
    line-height: 1.9;
    margin: 0 0 16px;
}

.container.live strong{
    color: #fff;
    font-weight: 800;
}

/* заголовки */
.container.live h2{
    margin: 28px 0 12px;
    font-size: clamp(18px, 2.2vw, 26px);
    line-height: 1.25;
    font-weight: 900;
    letter-spacing: .2px;
    color: #fff;

    display: flex;
    align-items: center;
    gap: 10px;
}

.container.live h2::before{
    content:"";
    width: 10px;
    height: 10px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--color-login), var(--color-signup));
    box-shadow: 0 0 0 4px rgba(127,69,223,.12);
}

/* посилання */
.container.live a{
    color: var(--color-signup);
    text-decoration: none;
    font-weight: 700;
    transition: filter .2s ease, color .2s ease;
}
.container.live a:hover{
    color: #fff;
    filter: brightness(1.1);
    text-decoration: underline;
}

/* списки */
.container.live ul,
.container.live ol{
    margin: 14px 0 18px;
    padding-left: 18px;
}

.container.live li{
    margin: 8px 0;
    color: rgba(232,232,232,.90);
    line-height: 1.75;
}

/* красивий ul */
.container.live ul{
    list-style: none;
    padding-left: 0;
}
.container.live ul li{
    position: relative;
    padding-left: 28px;
}
.container.live ul li::before{
    content:"";
    position: absolute;
    left: 0;
    top: .55em;
    width: 10px;
    height: 10px;
    border-radius: 3px;
    background: rgba(52,229,216,.85);
    box-shadow: 0 0 0 4px rgba(52,229,216,.12);
}

/* блоки/розділи як “секції” */
.container.live > h2{
    padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,.08);
}
.container.live > h2:first-of-type{
    border-top: 0;
    padding-top: 0;
}

/* таблиці (адаптив + норм вид) */
.container.live table{
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 18px 0 22px;
    overflow: hidden;
    border-radius: 16px;

    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 12px 26px rgba(0,0,0,.25);
}

.container.live th,
.container.live td{
    padding: 14px 14px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,.06);
    font-size: 14px;
}

.container.live th{
    color: #fff;
    font-weight: 900;
    background: rgba(127,69,223,.16);
}

.container.live tr:last-child td{
    border-bottom: 0;
}

.container.live tr:hover td{
    background: rgba(255,255,255,.02);
}

/* FAQ параграфи (де strong “Вопрос/Ответ”) */
.container.live p strong{
    display: inline-block;
    margin-right: 6px;
    color: var(--color-signup);
}

/* “виноска/примітка” (якщо раптом додаси blockquote) */
.container.live blockquote{
    margin: 18px 0;
    padding: 16px 16px 16px 18px;
    border-left: 4px solid var(--color-login);
    background: rgba(127,69,223,.10);
    border-radius: 14px;
    color: rgba(232,232,232,.92);
}

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

@media (max-width: 900px){
    .container.live{
        padding: 22px 16px 62px;
        border-radius: 18px;
    }

    .container.live p{
        font-size: 15px;
        line-height: 1.85;
    }

    .container.live h2{
        margin: 22px 0 10px;
    }

    /* таблиця скролиться по горизонталі, якщо не влазить */
    .container.live table{
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .container.live table::-webkit-scrollbar{
        height: 10px;
    }
    .container.live table::-webkit-scrollbar-thumb{
        background: rgba(255,255,255,.14);
        border-radius: 999px;
    }
}

@media (max-width: 520px){
    .container.live{
        padding: 18px 12px 56px;
    }

    .container.live p{
        font-size: 14.5px;
    }

    .container.live h2::before{
        width: 9px;
        height: 9px;
    }

    .container.live li{
        font-size: 14.5px;
    }

    /* трошки компактніше таблиця */
    .container.live th,
    .container.live td{
        padding: 12px 12px;
        font-size: 13px;
        white-space: nowrap;
    }
}
