html, body {
  height: auto !important;
  overflow-x: hidden;
  overflow-y: overlay; 
  overscroll-behavior: none; 
  scroll-behavior: smooth;
}


/* === САЙДБАР ТОЛЬКО ДЛЯ ПК === */
@media (min-width: 1024px) {
  .bratki-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background: rgba(23, 27, 41, 0.8);
    backdrop-filter: blur(12px);
    border-right: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
    overflow: visible;
    animation: sidebarFadeIn 0.7s ease forwards;
    opacity: 0;
    transform: translateX(-40px);
  }

  @keyframes sidebarFadeIn {
    from {
      opacity: 0;
      transform: translateX(-40px);
      filter: blur(8px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
      filter: blur(0);
    }
  }

  .bratki-sidebar::before {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    width: 400px;
    height: 600px;
    background: url('/banners3/sport3.png') no-repeat center/contain;
    opacity: 0.15;
    filter: blur(8px) brightness(1.1);
    transform: translateX(-50%);
    animation: float 12s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
  }

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

  .bratki-sidebar__inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 24px 20px;
  }

  .bratki-sidebar__logo img {
    width: 140px;
    margin-bottom: 30px;
    opacity: 0.95;
    transition: opacity 0.3s;
  }

  .bratki-sidebar__logo img:hover {
    opacity: 1;
  }

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

  .bratki-sidebar__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.15s ease;
    cursor: pointer;
  }

  .bratki-sidebar__item img {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(0.6);
    opacity: 0.9;
    transition: filter 0.25s, opacity 0.25s;
  }

  .bratki-sidebar__item:hover {
    background: rgba(255,255,255,0.08);
    transform: translateX(4px);
  }

  .bratki-sidebar__item:hover img {
    filter: brightness(0) invert(1)
            drop-shadow(0 0 6px rgba(0,255,255,0.4));
    opacity: 1;
  }

  .bratki-sidebar__bottom {
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 16px;
  }

  .bratki-sidebar__online {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9ca3af;
    font-size: 14px;
  }

  .bratki-sidebar__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.5);
    animation: pulseDot 2s infinite;
  }

  @keyframes pulseDot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.6; }
  }

  .bratki-sidebar:hover {
    pointer-events: none;
  }

  .bratki-sidebar:hover * {
    pointer-events: auto;
  }
}

@media (max-width: 1023px) {
  .bratki-sidebar {
    display: none !important;
  }
}


/* === DROPDOWN === */
.bratki-sidebar__group {
  display: flex;
  flex-direction: column;
}

.bratki-dropdown {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  margin-left: 10px;
  border-left: 2px solid rgba(255,255,255,0.05);
  backdrop-filter: blur(4px);
}

.bratki-dropdown.open {
  max-height: 300px;
  opacity: 1;
}

.bratki-sidebar__subitem {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 8px;
  color: #aaa;
  font-size: 13px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.bratki-sidebar__subitem img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(0.6);
  opacity: 0.9;
  transition: filter 0.25s, opacity 0.25s;
}

.bratki-sidebar__subitem:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.bratki-sidebar__subitem:hover img {
  filter: brightness(0) invert(1) drop-shadow(0 0 6px rgba(0,255,255,0.4));
  opacity: 1;
}



.bratki-arrow {
  margin-left: auto;
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease, filter 0.3s ease;
  opacity: 0.7;
  color: #9ca3af;
  pointer-events: none; 
}

.bratki-dropdown-toggle:hover .bratki-arrow {
  opacity: 1;
  color: #fff;
  filter: drop-shadow(0 0 6px rgba(0,255,255,0.6));
}

.bratki-dropdown-toggle.active .bratki-arrow {
  transform: rotate(180deg);
  color: #00ffff;
  filter: drop-shadow(0 0 6px rgba(0,255,255,0.7));
}


.bratki-sidebar__contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.bratki-socials {
  display: flex;
  gap: 10px;
}

.bratki-socials__item {
  flex: 1;
  height: 42px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid rgba(255,255,255,0.07);
}

.bratki-socials__item img {
  width: 18px;
  height: 18px;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.bratki-socials__item:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-1px);
  border-color: rgba(0,255,255,0.4);
}

.bratki-socials__item:hover img {
  opacity: 1;
}

.bratki-support-row {
  display: flex;
  gap: 10px;
}

.bratki-lang {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.bratki-lang img {
  width: 22px;
  height: 22px;
  border-radius: 4px;
}

.bratki-lang:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(0,255,255,0.4);
  transform: translateY(-1px);
}

.bratki-support {
  flex: 1;
  height: 42px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.bratki-support img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

.bratki-support:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-1px);
  border-color: rgba(0,255,255,0.4);
}

/* === CONTAINER === */
.bratki-quicknav {
  display: flex;
  gap: 10px;
  padding: 6px;
  width: 100%;

  background: rgb(21 25 37 / 40%);
  border-radius: 18px;
}

/* === BUTTON BASE === */
.bratki-quicknav__btn {
  position: relative;
  flex: 1 1 0;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 700;
  font-size: 15px;
  color: #fff;
  text-decoration: none;

  border-radius: 14px;
  cursor: pointer;
  user-select: none;

  background: linear-gradient(180deg, rgb(27 32 48), rgb(27 32 48));

  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}

/* === INNER GLASS === */
.bratki-quicknav__btn::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 12px;

  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.10),
    rgba(255,255,255,0.025)
  );

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.22),
    inset 0 -1px 0 rgba(0,0,0,0.45);

  opacity: 0.45;
}

/* === ACTIVE (BRATKI COLORS) === */
.bratki-quicknav__btn.active {
  background: linear-gradient(180deg, #0b3f30, #1fbe87);

  border-color: rgba(120,255,255,0.25);
}

.bratki-quicknav__btn.active::before {
  opacity: 1;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.28),
    rgba(255,255,255,0.08)
  );
}

/* === LEFT LIGHT (SUBTLE) === */
.bratki-quicknav__btn.active::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;

  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.25),
    transparent 65%
  );

  opacity: 0.22;
}

/* === PRESS FEEL === */
.bratki-quicknav__btn:active {
  transform: scale(0.98);
}


/* === HOVER (неактивная) === */
.bratki-quicknav__btn:not(.active):hover {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.03)
  );

  border-color: rgba(120,255,255,0.18);
  transform: translateY(-1px);
}

.bratki-quicknav__btn:not(.active):hover::before {
  opacity: 0.7;
}

/* === HOVER (active) === */
.bratki-quicknav__btn.active:hover {
  background: linear-gradient(
    180deg,
    #3f8f95,
    #2f8791
  );
}

.bratki-quicknav__btn.active:hover::after {
  opacity: 0.32;
}


.bratki-sidebar__item.active {
  background: linear-gradient(180deg, rgb(0 255 200 / 0%) 0%, rgba(0, 255, 200, 0.08) 100%);
  border: 1px solid rgba(0,255,255,0.4);
  box-shadow: 0 0 10px rgba(0,255,255,0.25);
}



/* header */ 


.header__user-balance-wrapper {
  margin-right: 12px;
}

.balance-button {
  display: flex;
  align-items: center;
  border-radius: 12px;
  overflow: hidden;
  background-color: #1a1b28;
  border: 1px solid #2e2f42;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

.balance-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 10px rgba(255, 255, 255, 0.05);
}

.balance-amount {
  background-color: #1a1b28;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #fff;
  white-space: nowrap;
}

.balance-action {
  background-color: #1b2030;
  padding: 10px 16px;
  color: #fff;
  font-weight: bold;
  font-size: 15px;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .balance-button {
    flex-direction: column;
    align-items: stretch;
  }

  .balance-action {
    display: none;
  }

  .balance-action {
    border-top: 1px solid #2e2f42;
  }
 /* #dropdownUser {
    display: none !important;
  }*/
}

.rub-icon {
  width: 16px;
  height: 16px;
  fill: #ef4444;
  margin-left: 6px;
}



/* modal auth */ 





.overlayed {
    backdrop-filter: blur(18px) brightness(0.6);
    -webkit-backdrop-filter: blur(18px) brightness(0.6);
}

.jet-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    padding: 20px;
}
.popup.active.jet-overlay { display: flex !important; }

.jet-modal {
    width: 100%;
    max-width: 920px;
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    background: #10131a;
    animation: jetIn .35s ease;
}

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

.jet-modal-banner {
    width: 48%;
    background: #000;
}
.jet-modal-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jet-modal-panel {
    width: 52%;
    padding: 42px 40px;
    background: linear-gradient(180deg, #1a1d27 0%, #15171f 100%);
    position: relative;
}

.jet-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgb(25 195 138);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.jet-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 22px;
}

.jet-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}
.jet-tabs button {
    flex:1;
    padding: 12px 0;
    background: #242632;
    border-radius: 12px;
    color: #bbb;
    border: 1px solid transparent;
    cursor: pointer;
}
.jet-tabs button.active {
    background: #333848;
    border-color: rgba(255,255,255,0.15);
    color: #fff;
}

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

.jet-field {
    background: #1c1f2a;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
}
.jet-field input {
    width: 100%;
    height: 50px;
    padding: 0 14px;
    color: #fff;
    background: transparent;
    border: none;
    font-size: 16px;
}

.jet-btn-main {
    margin-top: 8px;
    height: 54px;
    border-radius: 14px;
    background: #BEFF2A;
    color: #111;
    font-weight: 600;
    font-size: 17px;
    border: none;
    cursor: pointer;
}

.jet-sep {
    text-align: center;
    color: #777;
    font-size: 12px;
    margin: 20px 0 14px;
}

.jet-socials-auth {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 22px;
}
.jet-socials-auth button {
    width: 48px;
    height: 48px;
    background: #1c1f2a;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jet-bottom {
    text-align: center;
    color: #999;
    font-size: 14px;
}
.jet-bottom a {
    color: #beff2a;
    cursor: pointer;
}

@media (max-width: 768px) {
    .jet-modal { flex-direction: column; max-width: 95%; }
    .jet-modal-banner { width: 100%; height: 240px; }
    .jet-modal-panel { width: 100%; padding: 28px 22px; }
}


.jet-socials-auth button img,
.jet-socials-auth button svg {
    width: 22px !important;
    height: 22px !important;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
}

.jet-socials-auth button svg {
    fill: #fff;
}

.jet-socials-auth button {
    width: 48px;
    height: 48px;
    background: #1c1f2a;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}


@media (max-width: 768px) {

      .jet-modal-banner {
        display: none !important;
    }

    .jet-modal {
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 0 !important;
        height: auto !important;
        margin: 0 !important;
    }

    .jet-modal-panel {
        padding: 32px 26px !important;
    }

    .jet-title {
        text-align: center;
        font-size: 26px;
    }

    .jet-tabs {
        margin-top: 10px;
    }

    .jet-btn-main {
        height: 56px;
        font-size: 18px;
    }
}



.vm--modal {
    background: none !important;
    box-shadow: none !important;
}

.vm--modal .auth__content {
    background: none !important;
}

#loginTab .modal__input {
    all: unset !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}


#loginTab > div {
    background: #1c1f2a;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    padding: 0;
    height: 50px;
    display: flex;
    align-items: center;
    margin-bottom: 4px;
}

#loginTab > div input {
    width: 100%;
    height: 50px;
    background: transparent;
    border: none;
    padding: 0 14px;
    font-size: 16px;
    color: #fff;
}


#recaptchaWrap {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 10px 0 20px !important;
    padding: 0 !important;
}

#recaptchaWrap .g-recaptcha {
    transform: scale(1) !important;
    transform-origin: center !important;
}



.jet-socials-auth button {
    transition: 0.15s ease;
}
.jet-socials-auth button:hover {
    background: #2a2f3b;
    transform: translateY(-2px);
}


.jet-btn-main {
    margin-top: 10px;
    margin-bottom: 20px !important;
}

.jet-bottom {
    margin-top: 10px !important;
    padding-bottom: 10px;
}

.jet-fields {
    gap: 16px !important;
    margin-bottom: 10px !important;
}


.jet-modal-panel {
    background: linear-gradient(180deg, #1b2030d6 0%, #1b2030d6 100%) !important;
}


.jet-field {
    background: #171b24 !important;
    border: 1px solid rgba(255,255,255,0.03) !important;
    box-shadow: inset 0 0 0 1px rgba(65,255,211,0.04);
}
.jet-field input::placeholder {
    color: #7e869e;
}
.jet-field input:focus {
    outline: none !important;
}
.jet-field:focus-within {
    border-color: rgba(65,255,211,0.35) !important;
    box-shadow: 0 0 8px rgba(65,255,211,0.25) !important;
}


.jet-socials-auth button {
    background: #171b24 !important;
    border: 1px solid rgba(255,255,255,0.05) !important;
    box-shadow: 0 0 12px rgba(0,0,0,0.25);
}

.jet-socials-auth button:hover {
    background: #1e242f !important;
    border-color: rgba(65,255,211,0.35) !important;
    box-shadow: 0 0 10px rgba(65,255,211,0.25) !important;
    transform: translateY(-2px);
}


.jet-btn-main {
    background: linear-gradient(180deg, #1ec58a 0%, #18c18a 100%) !important;
    border: none !important;
    color: #0e1118 !important;
    font-weight: 700 !important;
    box-shadow: 0 0 12px rgba(190,255,42,0.35) !important;
    transition: 0.2s ease !important;
}

.jet-btn-main:hover {
    box-shadow: 0 0 18px rgba(190,255,42,0.55) !important;
    transform: translateY(-1px);
}

.jet-sep span {
    color: #6affd9 !important;
    font-weight: 500;
    letter-spacing: 1px;
}
.jet-sep {
    position: relative;
}
.jet-sep::before,
.jet-sep::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: linear-gradient(90deg, rgba(65,255,211,0.0), rgba(65,255,211,0.45));
}
.jet-sep::before { left: 0; }
.jet-sep::after { right: 0; }


.jet-bottom {
    color: #7e869e !important;
}
.jet-bottom a {
    color: #1ec58a !important;
    font-weight: 600;
}


.jet-modal {
    background: #1a1f2f !important;
}
.jet-modal-banner {
    background: #0e1118 !important;
}


.jet-modal {
    box-shadow:
        0 0 25px rgba(0,0,0,0.6),
        0 0 35px rgba(65,255,211,0.12);
}


.vm--modal {
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    inset: 0 !important;
    position: fixed !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
    background: transparent !important;


}

/* wallet */ 


/* === BRATKI WALLET MODAL (в стиле сайдбара BRATKI) === */

.bratkiwallet-overlay {
    position: fixed;
    inset: 0;
    display: none;
    justify-content: center;
    align-items: center;
    background: rgba(6,10,20,0.75);
    backdrop-filter: blur(10px);
    z-index: 9999;
}
.bratkiwallet-overlay.show .bratkiwallet-modal {
    transform: translateY(0);
    opacity: 1;
}

.bratkiwallet-modal {
    width: 100%;
    max-width: 780px;
    padding: 30px;
    background: radial-gradient(circle at top left, rgb(20 26 37 / 15%) 0%, rgba(12,16,24,0.95) 100%);
    border: 1px solid rgba(68,255,206,0.1);
    border-radius: 20px;
    box-shadow: 0 0 35px rgba(67,255,186,0.08);
    color: #d8f3ec;
    transform: translateY(30px);
    opacity: 0;
    transition: all .35s cubic-bezier(.16,1,.3,1);
    overflow-x: hidden;
}

/* ===== HEADER ===== */
.bratkiwallet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.bratkiwallet-tabs {
    display: flex;
    gap: 10px;
}
.bratkiwallet-tab {
    padding: 8px 18px;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(90,255,200,0.08);
    color: #b8d7cf;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: .2s;
    display: flex;
    align-items: center;
    gap: 8px;
}
.bratkiwallet-tab:hover {
    background: rgba(90,255,200,0.08);
    color: #e5fff7;
}
.bratkiwallet-tab.active {
    background: linear-gradient(145deg, #49fca5, #3cead1);
    color: #101418;
    font-weight: 600;
    box-shadow: 0 0 20px rgba(72,255,200,0.3);
    border-color: transparent;
}
.bratkiwallet-tab .tab-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
    opacity: 0.85;
}
.bratkiwallet-tab.active .tab-icon {
    opacity: 1;
    fill: #0e1613;
}

.bratkiwallet-close {
    background: none;
    border: none;
    font-size: 22px;
    color: #9cb6af;
    cursor: pointer;
    transition: .15s;
}
.bratkiwallet-close:hover { color: #fff; }

/* ===== CONTENT ===== */
.bratkiwallet-content {
    display: none;
    gap: 24px;
    opacity: 0;
    transition: opacity .25s;
}
.bratkiwallet-content.active { display: flex; }
.bratkiwallet-content.fade-in { opacity: 1; }

/* ===== METHODS ===== */
.bratkiwallet-methods {
    width: 42%;
    max-height: 380px;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.bratkiwallet-method {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 3px 12px;
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(72,255,200,0.08);
    cursor: pointer;
    transition: .2s;
}
.bratkiwallet-method:hover {
    background: rgba(72,255,200,0.07);
}
.bratkiwallet-method img {
    width: 34px;
    height: 34px;
    border-radius: 6px;
}
.bratkiwallet-method.active {
    background: linear-gradient(145deg, #1ee5ed5e, #1ecbed5e);
    color: #fff;
    border-color: transparent;
}

.bratkiwallet-method .method-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.bratkiwallet-method .method-name {
    font-size: 15px;
    font-weight: 600;
    color: #eafff9;
    letter-spacing: .2px;
    text-shadow: 0 0 6px rgba(72,255,200,0.25);
}

.bratkiwallet-method .method-min {
    font-size: 12.5px;
    color: #a2dcd0;
    margin-top: 3px;
    background: rgba(72,255,200,0.08);
    padding: 2px 8px;
    border-radius: 6px;
    border: 1px solid rgba(72,255,200,0.12);
    display: inline-block;
    width: max-content;
    white-space: nowrap;
    line-height: 1.1;
}

/* ===== FORM ===== */
.bratkiwallet-form {
    width: 58%;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.bratkiwallet-form label {
    font-size: 13px;
    color: #93b9b0;
    margin-left: 3px;
}
.bratkiwallet-form input {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(90,255,200,0.08);
    color: #e7fff8;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 15px;
    transition: .15s;
}
.bratkiwallet-form input:focus {
    outline: none;
    border-color: #5cffc0;
    background: rgba(72,255,200,0.08);
    box-shadow: 0 0 8px rgba(72,255,200,0.4);
}
.bratkiwallet-form input::placeholder {
    color: rgba(255,255,255,0.25);
}

.bratkiwallet-info {
    background: rgba(40,255,184,0.05);
    border: 1px solid rgba(72,255,200,0.08);
    border-radius: 10px;
    padding: 10px 14px;
    color: #9dfce2;
    font-size: 14px;
}

/* ===== BUTTONS ===== */
.bratkiwallet-btn {
    background: linear-gradient(145deg, #49fca5, #3cead1);
    border: none;
    border-radius: 10px;
    padding: 13px;
    font-size: 15px;
    font-weight: 600;
    color: #0b1411;
    cursor: pointer;
    transition: .2s;
    box-shadow: 0 0 12px rgba(72,255,200,0.4);
}
.bratkiwallet-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(72,255,200,0.6);
}
.bratkiwallet-btn.red {
    background: linear-gradient(145deg, #ff5858, #d92d4b);
    color: #fff;
    box-shadow: 0 0 15px rgba(255,80,100,0.35);
}
.bratkiwallet-btn.red:hover {
    box-shadow: 0 0 20px rgba(255,80,100,0.55);
}

/* ===== HISTORY ===== */
#bratkiwallet-history {
    flex-direction: column;
}
#bratkiwallet-history .bratkiwallet-history-top {
    margin-bottom: 15px;
}
#bratkiwallet-history .bratkiwallet-history-switch {
    display: flex;
    gap: 10px;
}
#bratkiwallet-history .history-btn {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(90,255,200,0.08);
    border-radius: 8px;
    padding: 7px 16px;
    font-size: 14px;
    color: #b5e5d8;
    cursor: pointer;
    transition: .2s;
}
#bratkiwallet-history .history-btn:hover {
    background: rgba(72,255,200,0.06);
}
#bratkiwallet-history .history-btn.active {
    background: linear-gradient(145deg, #49fca5, #3cead1);
    color: #0a1412;
    box-shadow: 0 0 10px rgba(72,255,200,0.4);
}

#bratkiwallet-history .bratkiwallet-history-wrapper {
    max-height: 350px;
    overflow-y: auto;
}
#bratkiwallet-history .bratkiwallet-history-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#bratkiwallet-history .bratkiwallet-history-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(20,26,36,0.9);
    border: 1px solid rgba(90,255,200,0.08);
    transition: .15s;
}
#bratkiwallet-history .bratkiwallet-history-item:hover {
    background: rgba(40,255,184,0.05);
}

#bratkiwallet-history .bratkiwallet-history-left {
    display: flex;
    align-items: center;
    gap: 10px;
}
#bratkiwallet-history .bratkiwallet-history-left img {
    width: 34px;
    height: 34px;
    border-radius: 8px;
}
#bratkiwallet-history .bratkiwallet-history-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
#bratkiwallet-history .bratkiwallet-history-sum {
    font-weight: 600;
    color: #e7fff8;
}
#bratkiwallet-history .bratkiwallet-history-date {
    font-size: 12px;
    color: rgba(231,255,248,0.5);
}
#bratkiwallet-history .bratkiwallet-history-status {
    min-width: 110px;
    text-align: right;
    font-size: 14px;
    font-weight: 700;
}
#bratkiwallet-history .bratkiwallet-history-status.success { color: #47ffb4; }
#bratkiwallet-history .bratkiwallet-history-status.wait { color: #ffe76d; }
#bratkiwallet-history .bratkiwallet-history-status.error { color: #ff6f6f; }

/* ===== READONLY ===== */
.bratkiwallet-readonly {
    background: rgba(72,255,200,0.05);
    border: 1px solid rgba(72,255,200,0.1);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 15px;
    color: #bdfdec;
    opacity: .85;
    box-shadow: inset 0 0 10px rgba(72,255,200,0.05);
    user-select: none;
    cursor: not-allowed;
    transition: .25s;
}
.bratkiwallet-readonly:hover {
    background: rgba(72,255,200,0.08);
    box-shadow: inset 0 0 12px rgba(72,255,200,0.1);
    color: #eafff7;
}

.d-none { display: none !important; }

/* ===== MOBILE ===== */
@media (max-width: 768px) {

    .bratkiwallet-modal {
        width: 92%;
        padding: 18px;
        border-radius: 16px;
        position: relative;
    }

    .bratkiwallet-close {
        position: absolute;
        top: 14px;
        right: 16px;
        font-size: 26px;
        color: #aeeedc;
        z-index: 10;
    }

    .bratkiwallet-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding-right: 40px;
    }
    .bratkiwallet-tabs {
        width: 100%;
        justify-content: space-between;
        gap: 6px;
    }
    .bratkiwallet-tab {
        flex: 1;
        text-align: center;
        font-size: 13px;
        padding: 8px 10px;
    }

    .bratkiwallet-content {
        flex-direction: column;
        gap: 18px;
    }
    .bratkiwallet-methods,
    .bratkiwallet-form {
        width: 100%;
    }

    .bratkiwallet-method {
        padding: 8px 10px;
        font-size: 14px;
        border-radius: 10px;
    }
    .bratkiwallet-method img {
        width: 28px;
        height: 28px;
    }

    .bratkiwallet-method .method-text {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        width: 100%;
    }
    .bratkiwallet-method .method-name {
        flex: 1;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
    .bratkiwallet-method .method-min {
        margin-top: 0;
        flex-shrink: 0;
    }

    .bratkiwallet-btn {
        width: 100%;
        padding: 12px;
        font-size: 14px;
    }

    .bratkiwallet-history-switch {
        justify-content: space-between;
    }

    .bratkiwallet-history-item {
        gap: 8px;
        padding: 10px 12px;
    }
    .bratkiwallet-history-left img {
        width: 28px;
        height: 28px;
    }
    .bratkiwallet-history-sum { font-size: 14px; }
    .bratkiwallet-history-date { font-size: 11.5px; }
    .bratkiwallet-history-status {
        min-width: 70px;
        font-size: 13px;
    }
}

/* ===== BODY LOCK ===== */
body.modal-open,
body.bratkiwallet-active {
    overflow: hidden !important;
    height: 100vh !important;
    touch-action: none;
}


/* sport betting */


.static-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #171b29;
  border-radius: 28px;
  padding: 40px 48px 40px 48px;
  margin: 0 auto 32px auto;
  max-width: 1600px;
  min-height: 270px;
}
.static-banner__content {
  flex: 1;
  min-width: 0;
}
.static-banner__title {
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 18px;
}
.banner-accent-yellow {
  color: #318285;
}
.banner-accent-purple {
  color: #bca1e3;
}
.static-banner__desc {
  color: #e6e6e6;
  font-size: 20px;
  margin-bottom: 28px;
}
.static-banner__buttons {
  display: flex;
  gap: 16px;
}
.banner-btn {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  border-radius: 12px;
  padding: 13px 30px;
  text-decoration: none;
  transition: background .15s;
  box-shadow: 0 2px 8px 0 #1b1b2b30;
  position: relative;
  outline: none;
}
.banner-btn--yellow {
  background: #328185;
  color: #ffffff;
}
.banner-btn--purple {
  background: #1f2535;
  color: #fff;
}
.static-banner__img {
  flex-shrink: 0;
  margin-left: 36px;
  display: flex;
  align-items: center;
  height: 220px;
}
.static-banner__img img {
  height: 100%;
  width: auto;
  border-radius: 20px;
  display: block;
  object-fit: contain;
  background: transparent;
}

/* Тултип */
.lova-tooltip {
  display: none;
  position: absolute;
  left: 50%;
  top: 105%;
  transform: translateX(-50%);
  background: #1bb18529;
  color: #fff;
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  box-shadow: 0 2px 16px 0 #09081b55;
  white-space: nowrap;
  z-index: 9;
  pointer-events: none;
  opacity: 0;
  transition: opacity .18s;
}

.banner-btn:focus .lova-tooltip,
.banner-btn:active .lova-tooltip {
  display: block;
  opacity: 1;
  animation: popin .18s cubic-bezier(.34,1.56,.64,1) backwards;
}

@keyframes popin {
  from { transform: translateX(-50%) scale(.8); opacity:0;}
  to   { transform: translateX(-50%) scale(1); opacity:1;}
}

@media (max-width: 1100px) {
  .static-banner {
    flex-direction: column;
    text-align: center;
    padding: 33px 34px;
  }
  .static-banner__img {
    margin: 20px auto 0 auto;
    height: 160px;
    display: none;
  }
  .static-banner__title {
    font-size: 28px;
  }
}

@media (max-width: 700px) {
  .lova-tooltip {
    left: 50%;
    top: 110%;
    min-width: 180px;
    max-width: 92vw;
    font-size: 16.5px;
    padding: 16px 12px;
    white-space: normal;
    line-height: 1.45;
    border-radius: 15px;
    box-shadow: 0 2px 16px 0 #262245bb;
  }
}



/* dice */



.dice {
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px 20px;
  background: linear-gradient(135deg, rgba(20,24,38,0.95) 0%, rgba(10,12,22,0.95) 100%);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
  margin-bottom: 40px; 
}


.dice__drum {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  position: relative;
  background: linear-gradient(145deg, #3d7ce0, #1a1f31); 
  border-radius: 20px;
  padding: 20px;
  overflow: hidden;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.4);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.dice__drum--win {
  background: linear-gradient(145deg, #4CAF50, #1a3d2e); 
}

.dice__drum--lose {
  background: linear-gradient(145deg, #F44336, #3b1a1a); 
}




.dice__shine {
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 80%);
  transform: skewX(-20deg);
  animation: none;
  pointer-events: none;
}
.dice__drum.win .dice__shine {
  animation: shine 1.5s forwards;
}
@keyframes shine {
  0% { left: -75%; }
  100% { left: 125%; }
}

.dice__timer {
  display: flex;
  gap: 5px; 
  justify-content: center;
}

.dice__slider {
  background: #1a1f31;
  border-radius: 10px;
  overflow: hidden;
  width: 60px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
}

.dice__slider-inner {
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease-out;
}

.dice__slider-item {
  height: 90px; 
  width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 36px;
  font-weight: bold;
  color: #fff;
}

.dice__slider-item[style*="opacity: 0;"] {
  pointer-events: none;
  height: 90px;
  opacity: 0;
}


/* Кнопки */
.dice__buttons {
  display: flex;
  gap: 10px;
  width: 100%;
}
.dice__button {
  flex: 1;
  padding: 14px 0;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background: #1a1f31;
  border-radius: 12px;
  text-align: center;
  cursor: pointer;
  transition: background 0.3s;
}
.dice__button--less:hover {
  background: #1ebe3c;
}
.dice__button--more:hover {
  background: #3d7ce0;
}

.dice__fields {
  width: 100%;
  max-width: 320px; 
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dice__field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.dice__field label {
  color: #b0b7d6;
  font-size: 14px;
}

.dice__field input {
  background: #1a1f31;
  border: none;
  padding: 10px;
  border-radius: 10px;
  font-size: 16px;
  color: #fff;
}


@media (max-width: 480px) {
  .dice {
    padding: 20px 10px;
  }
  .dice__slider {
    width: 50px;
    height: 75px;
  }
  .dice__slider-item {
    font-size: 28px;
    height: 75px;
    width: 50px;
  }
}





.dice__check {
  min-height: 50px;
  text-align: center;
  margin-top: 20px;
}

.dice__check a {
  display: inline-block;
  background: linear-gradient(135deg, #1e50ff 0%, #7c79ff 100%);
  padding: 12px 30px;
  border-radius: 14px;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0px 4px 12px rgba(126, 121, 255, 0.4);
  transition: background 0.3s ease, transform 0.2s ease;
}

.dice__check a:hover {
  background: linear-gradient(135deg, #7c79ff 0%, #1e50ff 100%);
  transform: scale(1.05);
}


.dice__bet-buttons {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 1px;
}

.dice__bet-buttons button {
  flex: 1;
  padding: 8px 0;
  background: linear-gradient(135deg, #1b2030 0%, #1b2030 100%);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.dice__bet-buttons button:hover {
  background: linear-gradient(135deg, #7c79ff 0%, #1e50ff 100%);
  transform: scale(1.05);
}


.dice__percent-buttons {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 1px;
}

.dice__percent-buttons button {
  flex: 1;
  padding: 8px 0;
  background: linear-gradient(135deg, #1b2030 0%, #1b2030 100%);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.dice__percent-buttons button:hover {
  background: linear-gradient(135deg, #7c79ff 0%, #1e50ff 100%);
  transform: scale(1.05);
}


.dice__timer::before {
  content: ",";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  pointer-events: none;
  user-select: none;
}


.dice__timer::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 40px;
  background: rgba(255,255,255,0.5);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
  transition: background 0.3s ease;
}


@keyframes diceWinPulse {
  0% { box-shadow: 0 0 10px #4CAF50, inset 0 0 20px #4CAF50; }
  50% { box-shadow: 0 0 20px #4CAF50, inset 0 0 30px #4CAF50; }
  100% { box-shadow: 0 0 10px #4CAF50, inset 0 0 20px #4CAF50; }
}

@keyframes diceLoseShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  50% { transform: translateX(5px); }
  75% { transform: translateX(-5px); }
}

.dice__drum {
  transition: all 0.3s ease;
}

.dice__drum--win {
  background: linear-gradient(145deg, #4CAF50, #1a3d2e);
  animation: diceWinPulse 1s infinite;
}

.dice__drum--lose {
  background: linear-gradient(145deg, #F44336, #3b1a1a);
  animation: diceLoseShake 0.5s;
}


.dice__slider-item span.is-win {
  color: #4CAF50;
  text-shadow: 0 0 8px #4CAF50, 0 0 12px #4CAF50;
  font-weight: 900;
}

.dice__slider-item span.is-lose {
  color: #F44336;
  text-shadow: 0 0 8px #F44336, 0 0 12px #F44336;
  font-weight: 900;
}


.dice__fixed-numbers {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 10px;
  z-index: 2;
  pointer-events: none;
}

.dice__fixed-number {
  font-size: 48px;
  color: white;
  font-weight: 800;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.dice__fixed-number.is-win {
  color: #4CAF50;
  text-shadow: 0 0 10px #4CAF50, 0 0 15px #4CAF50;
}

.dice__fixed-number.is-lose {
  color: #F44336;
  text-shadow: 0 0 10px #F44336, 0 0 15px #F44336;
}

/* test */

.dice__timer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.08) 0%, rgba(15,18,27,0.95) 60%);
  z-index: 1;
  pointer-events: none;
}

.dice__slider-item {
  filter: blur(2px);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.dice__slider-item.active {
  filter: none;
  opacity: 1;
  color: #ffffff;
  text-shadow: 0 0 8px #7c79ff, 0 0 12px #7c79ff;
  transform: scale(1.1);
  transition: all 0.3s ease;
}



@keyframes diceWinFlash {
  0%, 100% {
    box-shadow: 0 0 20px 5px rgba(124, 121, 255, 0.7);
  }
  50% {
    box-shadow: 0 0 40px 20px rgba(124, 121, 255, 1);
  }
}

.dice__drum.dice__drum--win {
  animation: diceWinFlash 0.6s ease-out;
}

.dice__slider-item.active {
  filter: none;
  opacity: 1;
  color: #ffffff;
  text-shadow: 0 0 8px #7c79ff, 0 0 12px #7c79ff, 0 0 16px #7c79ff;
  transform: scale(1.15);
  animation: diceNumberPulse 1s infinite alternate;
}

@keyframes diceNumberPulse {
  0% {
    text-shadow: 0 0 8px #7c79ff, 0 0 12px #7c79ff;
    transform: scale(1.1);
  }
  100% {
    text-shadow: 0 0 12px #7c79ff, 0 0 16px #7c79ff;
    transform: scale(1.15);
  }
}



/* lobby tour */ 


.v33-tournaments-page {
    padding: 40px 10vw 60px 5vw;
}
.v33-tournaments-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 40px;
}
.v33-tournaments-icon {
    width: 54px; height: 54px;
    background: rgb(101 180 187 / 36%);
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 30px #65b4bb7a;
}
.v33-tournaments-header h1 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.v33-tournaments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.v33-tournament-card {
    background: linear-gradient(150deg, rgb(25 29 44) 60%, rgb(24 29 44) 100%);
    border-radius: 24px;
    box-shadow: 0 6px 36px 0 #0ff2fa1a, 0 0px 1.5px #fff2;
    padding: 38px 28px 32px 28px;
    text-align: center;
    display: flex; flex-direction: column; align-items: center;
    position: relative;
    transition: transform 0.13s cubic-bezier(.42,0,.58,1), box-shadow 0.16s;
}
.v33-t-card-icon {
    background: linear-gradient(145deg, #2c324f52 60%, #26294b 100%);
    width: 60px; height: 60px;
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    box-shadow: 0 2px 14px #00fff743;
    margin-bottom: 18px;
}
.v33-t-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 7px;
    letter-spacing: 0.01em;
}
.v33-t-card-desc {
    font-size: 1rem;
    color: #b3b5d7;
    margin-bottom: 22px;
}
.v33-t-card-timer {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 28px;
}
.v33-t-card-timer div {
    background: rgba(23,24,39,0.92);
    border-radius: 11px;
    padding: 12px 8px 6px 8px;
    min-width: 40px;
    box-shadow: 0 1.5px 5px #0ff2fa20;
    font-weight: 700;
    font-size: 1.11rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
}
.v33-t-card-timer span {
    font-size: 1.19rem;
    letter-spacing: 0.01em;
}
.v33-t-card-timer small {
    color: #8c8db3;
    font-size: 0.82rem;
    margin-top: 3px;
}

.v33-t-card-btn {
    border: none;
    border-radius: 14px;
    margin-top: 6px;
    padding: 13px 0 10px 0;
    font-size: 1.28rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    width: 80%;
    cursor: pointer;
    transition: background 0.16s, box-shadow 0.14s, color 0.11s;
}
.v33-t-card-btn.v33-active {
    background: linear-gradient(94deg, #9bccdb 60%, #9bccdb 100%);
    color: #10102b;
    box-shadow: 0 1.5px 12px #ffd60034;
}
.v33-t-card-btn.v33-active:hover {
    background: linear-gradient(92deg, #ffe34f 60%, #f4c64c 100%);
}
.v33-t-card-btn.v33-inactive {
    background: linear-gradient(90deg, #65b4bb24 50%, #060b1f38 100%);
    color: #ffffff;
    cursor: not-allowed;
}

.v33-tournament-card.v33-active {
    border: 1.5px solid #0ff2fa65;
    box-shadow: 0 0 24px #00fff799, 0 2px 6px #0ff2fa1a;
}

@media (max-width: 900px) {
    .v33-tournaments-page {
        padding: 32px 4vw 44px 4vw;
    }
    .v33-tournaments-header h1 {
        font-size: 1.36rem;
    }
    .v33-tournament-card {
        padding: 28px 13px 22px 13px;
    }
}
@media (max-width: 600px) {
    .v33-tournaments-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .v33-tournament-card {
        min-width: 0;
    }
}



/* footer */ 


.footer-bottom .legal-info {
  font-size: 10px;
  line-height: 1.0;
  color: #aaaaaaa3;
  margin-top: 10px;
}

.mobile-footer-space {
  display: none;
}

@media (max-width: 767px) {
  .mobile-footer-space {
    display: block;
    height: 80px; 
    width: 100%;
  }
}

#online-number.updated {
    color: #4cffba;
    transition: color .3s;
}


/* lives swiper */



.popular-lives-wrapper {
  margin: 24px 0;
  padding: 16px 12px 20px;
  border-radius: 18px;
  background: linear-gradient(90deg, rgb(26 31 47), rgb(24 28 42), rgb(23 28 42));
  box-shadow: inset 0 0 20px rgb(25 29 44), 0 0 8px rgba(255, 255, 255, 0.02);
}

.popular-lives-swiper .swiper-slide {
  position: relative;
  width: 100px;
  margin-right: 12px; 
  flex-shrink: 0;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  background-color: #1c1f2a;
  transition: box-shadow 0.3s ease;
}

.popular-lives-swiper .swiper-slide::before {
  content: "";
  display: block;
  padding-top: 140%; 
}

.popular-lives-swiper .swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1;
}

.popular-lives-swiper .swiper-slide span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  color: white;
  font-size: 12px;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.5);
  padding: 6px;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  z-index: 2;
  pointer-events: none;
}

.popular-lives-swiper .swiper-slide:hover img {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
}

/* partner swiper ref */


.referral-bonus-swiper {
  overflow: visible !important;
}

.referral-bonus-swiper .swiper-wrapper {
  overflow: visible !important;
}

.referral-bonus-swiper {
  margin-bottom: 40px; 
  margin-top: 60px;
  overflow: visible !important;
}



.referral-bonus-swiper .swiper-slide {
  width: auto; 
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .referral-bonus-swiper .swiper-slide {
    width: calc((100% - 2 * 3px) / 3); 
    max-width: 460px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .referral-bonus-swiper .swiper-slide {
    width: calc((100% - 1 * 3px) / 2);
  }
}

@media (max-width: 767px) {
  .referral-bonus-swiper .swiper-slide {
    width: 85%; 
  }
}


/* super faq */



.super-faq {
  max-width: 800px;
  margin: 80px auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0 16px;
}

.super-faq__item {
  background: linear-gradient(180deg, #1b2030, #151925);
  border-radius: 14px;
  padding: 18px 20px;
  overflow: hidden; 
  position: relative;
  max-height: none;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  box-shadow: 0 0 0 transparent;
  cursor: pointer;
}

.super-faq__item--opened {
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.07);
}

.super-faq__item-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.super-faq__icon {
  background: linear-gradient(145deg, #243e44, #2da0a2);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: white;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 0 10px rgba(126, 94, 255, 0.4);
  flex-shrink: 0;
}

.super-faq__question {
  flex: 1;
  font-size: 16px;
  color: white;
  line-height: 1.4;
  word-break: break-word;
}

.super-faq__toggle {
  width: 20px;
  height: 20px;
  color: #9ca3af;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.super-plus-icon {
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  width: 16px;
  height: 16px;
}

.super-faq__item-body {
  opacity: 0;
  height: 0;
  overflow: hidden;
  margin-top: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #cbd0e4;
  transition: opacity 0.3s ease;
}

.super-faq__item--opened .super-faq__item-body {
  max-height: 800px; 
  opacity: 1;
  height: auto;
  margin-top: 14px;
}

.super-faq__item p {
  margin: 0;
}

/* 🔁 Mobile */
@media (max-width: 768px) {
  .super-faq {
    padding: 0 12px;
  }

  .super-faq__item {
    padding: 14px 16px;
    max-height: 64px;
  }

  .super-faq__item-heading {
    align-items: flex-start;
    gap: 10px;
  }

  .super-faq__question {
    font-size: 15px;
  }

  .super-faq__icon {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }
}


/* legacy modal */ 




.popup .popup__title {
    position: static !important;
}

.popup:not(.vm--modal) {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    
    z-index: 99999 !important;

    width: auto !important;
    max-width: 95% !important;

    background: #151925 !important;
    border-radius: 18px !important;

    display: block !important;
    opacity: 0 !important;
    visibility: hidden !important;

    transition: opacity .25s ease, transform .25s ease;
    transform-origin: center;
}

.popup:not(.vm--modal).active {
    opacity: 1 !important;
    visibility: visible !important;
    /*transform: translate(-50%, -50%) scale(1) !important;*/
}

.popup:not(.vm--modal).active {
    animation: legacyFadeIn .25s ease;
}

@keyframes legacyFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.94);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}


/* Safari SVG flash fix for ALL sidebar icons */
.bratki-sidebar__item img,
.bratki-sidebar__subitem img,
.bratki-sidebar__group img {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
    transform: translateZ(0);
    filter: none !important;
}

.bratki-sidebar__item:hover img,
.bratki-sidebar__subitem:hover img {
    filter: none !important;
}


.theme--dark .mobile-navbar {
  background: #111827;
  border-radius: 16px;
  padding: 20px 16px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  width: 90%;
  margin: 0 auto;
}

.theme--dark .mobile-navbar li { list-style: none; }
.theme--dark .mobile-navbar a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  margin-bottom: 10px;
  color: white;
  font-size: 16px;
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.2s ease;
}

.theme--dark .mobile-navbar a:hover {
  background: rgba(255,255,255,0.05);
}

.close-menu-btn {
  position: fixed;
  top: 18px;
  right: 20px;
  z-index: 9999;
  background: rgba(17,24,39,0.8);
  border: none;
  border-radius: 10px;
  padding: 8px;
  cursor: pointer;
  backdrop-filter: blur(6px);
}

.close-menu-btn .icon {
  width: 24px;
  height: 24px;
  stroke: white;
}


.tg-captcha-wrapper {
    margin: 18px 0 22px;
    display: flex;
    justify-content: center;
}

.popup--tg .g-recaptcha {
    transform: scale(0.92); 
    transform-origin: center;
}

.tg-check-btn {
    margin-top: 8px;
}

.tg-check-btn.disabled {
    opacity: 0.6;
    pointer-events: none;
}

@media (max-width: 420px) {
    .popup--tg .g-recaptcha {
        transform: scale(0.82);
    }
}


.game-filter-bar {
  background: rgba(255,255,255,0.03);
  border-radius: 20px;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  margin-top: 20px;
  overflow: hidden;
}

.game-search {
  display: flex;
  gap: 10px;
  align-items: center;
}

.game-search input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: none;
  border-radius: 14px;
  padding: 10px 16px;
  color: #fff;
  font-size: 15px;
  outline: none;
  transition: all .2s ease;
}

.game-search input::placeholder {
  color: rgba(255,255,255,0.5);
}

.game-search input:focus {
  background: rgba(255,255,255,0.1);
}

.providers-btn {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: pointer;
}

.providers-btn:hover {
  background: rgba(27,181,134,0.25);
  color: #1bb586;
}

.game-categories {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.game-categories::-webkit-scrollbar {
  display: none;
}

.cat {
  flex: 0 0 auto;
  background: rgba(255,255,255,0.04);
  border: none;
  border-radius: 16px;
  padding: 10px 18px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.cat img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0.8);
  transition: all 0.2s ease;
}

.cat:hover img {
  filter: brightness(1.2) drop-shadow(0 0 6px rgba(27,181,134,0.4));
}

.cat:hover {
  background: rgba(27,181,134,0.12);
  color: #1bb586;
}

.cat.active {
  background: linear-gradient(90deg, #204546 0%, #29444c 100%);
  color: #fff;
}

.cat.active img {
  filter: brightness(1.5) drop-shadow(0 0 8px rgba(164,89,255,0.5));
}


@media (max-width: 768px) {
  .game-filter-bar {
    padding: 10px 12px;
    border-radius: 16px;
    gap: 10px;
  }

  .game-search input {
    font-size: 14px;
    padding: 8px 12px;
  }

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

  .game-categories {
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }

  .cat {
    padding: 8px 14px;
    font-size: 14px;
    border-radius: 14px;
    flex-shrink: 0; 
  }

  .cat img {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .game-search {
    flex-direction: column;
    align-items: stretch;
  }

  .providers-btn {
    width: 100%;
  }

  .game-categories {
    justify-content: flex-start;
  }
}





@media (max-width: 700px) {
  .mobile-promo-blocks {
    display: flex;
    gap: 10px;
    margin: 1px 0 0 0;
    padding: 0 8px;
    margin-bottom: 10px;
  }
  .mobile-promo-block {
    flex: 1 1 0;
    background: transparent; 
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: box-shadow 0.2s;
    box-shadow: none; 
  }
  .mobile-promo-block img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    pointer-events: none;
    user-select: none;
  }
  .mobile-promo-block:active {
    filter: brightness(0.96);
  }
}
@media (min-width: 701px) {
  .mobile-promo-blocks {
    display: none !important;
  }
}




.mode-selector-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 13px;
}

@media (max-width: 992px) {
  .mode-selector-section {
    grid-template-columns: 1fr;
    display: none;
  }

}

.mode-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease-out;
}

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

.mode-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 170px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #10131d;
  padding: 20px;
}

.mode-card__header,
.mode-card__footer {
  position: relative;
  z-index: 2;
}

.mode-card__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
}

.mode-card__description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

.mode-card__footer {
  margin-top: auto;
}

.mode-card__button {
  display: inline-flex;
  align-items: center;
  font-size: 0.9375rem;
  font-weight: 500;
  color: white;
  background-color: rgba(255, 255, 255, 0.15);
  padding: 10px 20px;
  border-radius: 30px;
  backdrop-filter: blur(4px);
  transition: all 0.2s ease;
}

.mode-card__button:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.mode-card__arrow {
  margin-left: 0.5rem;
  font-size: 1.2em;
  transition: transform 0.2s ease;
}

.mode-card-link:hover .mode-card__arrow {
  transform: translateX(4px);
}

.mode-card__background-icon {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.mode-card__background-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
  transition: transform 0.5s ease;
  transform-origin: center center;
}

.mode-card-link:hover .mode-card__background-icon img {
  transform: scale(1.37);
}

/* banners x3 */ 
.games__item-bg {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 25px;
}

.games__item-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  border-radius: 25px;
}


/* welcome page */ 



.games__item .front {
  opacity: 1;
  z-index: 1;
  transition: opacity 3s;
}

.games__item .back {
  opacity: 0;
  z-index: 0;
  transition: opacity 3s;
}

.games__item:hover .front {
  opacity: 0;
  transition-delay: 0.1s;
}

.games__item:hover .back {
  opacity: 1;
  transition-delay: 0s;
}

.games__item:not(:hover) .front {
  opacity: 1;
  transition-delay: 0s; 
}

.games__item:not(:hover) .back {
  opacity: 0;
  transition-delay: 0.1s;
}

.games__item:hover::after {
  opacity: 1;
}

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

.games__item {
  position: relative;
  height: 160px;
  border-radius: 25px;
  -webkit-transition: .15s ease-in-out;
  transition: .15s ease-in-out;
  padding: 44px 53px;
  overflow: hidden;
}

.games__item .games__item-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  right: 0;
  transition: scale .3s cubic-bezier(0, -0.05, 0.3, 1),translate .3s cubic-bezier(0, -0.05, 0.3, 1);
}

.games__item:before {
  -webkit-filter: blur(10rem);
  filter: blur(10rem);
}

.games__item::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: .4s opacity;
}

.games__item--slots{
  background: rgb(21 25 37);
}

.games__item--lives{
  background: rgb(228, 53, 56);
}


.games__item-text {
  position: relative;
  z-index: 3;
  pointer-events: none;
}

.games__item-text span {
  font-size: 32px;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  text-shadow: 0px 4px 0px rgba(0, 0, 0, 0.14);
}

.games__item-text p {
  position: relative;
  font-size: 13px;
  color: #fff;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.15);
  padding: 8px 12px 8px 18px;
  align-self: flex-start;
  margin-top: 6px;
}

.games__item-text p::before {
  content: '';
  position: absolute;
  background: rgb(0, 255, 133);
  left: 9px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 3px;
  border-radius: 50%;
}


.games__item.games__item--coin .coinflip__wrapper .coinflip__front {
  -webkit-animation: front-rotation 2s ease infinite;
  animation: front-rotation 2s ease infinite;
}

@-webkit-keyframes front-rotation {
  from {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
  }
  to {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
}

@keyframes front-rotation {
  from {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
  }
  to {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
}

.games__item.games__item--slots {
        height: 160px;
    }

.games .games__item-bg--lives {
  position: absolute;
  right: -0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url(../new/lives_new.png);
  background-size: cover;
  z-index: 2;
}


@media only screen and (max-width: 725px) {
    .games {
    -ms-grid-columns: (1fr)[1] !important;
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .games .games__item{
    height: 100px !important;
    padding: 27px 0 0 30px !important;
    border-radius: 17px;
  }
}

.games__item-bg img {
  animation: floatBanner 5s ease-in-out infinite;
  will-change: transform;
}

@keyframes floatBanner {
  0%   { transform: scale(1) translateY(0); }
  50%  { transform: scale(1.03) translateY(-3px); }
  100% { transform: scale(1) translateY(0); }
}

.bonus-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
  animation: pulseGlow 3s ease-in-out infinite;
  z-index: 1;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.05); }
}

.casino-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle at center, rgba(0,255,136,0.08), transparent 70%);
  pointer-events: none;
  z-index: 2;
  animation: casinoPulse 3s ease-in-out infinite;
}

@keyframes casinoPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.2;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.4;
  }
}

.casino-lightning {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 50px;
  height: 80px;
  background: url('/new/lightning.svg') no-repeat center center;
  background-size: contain;
  opacity: 0;
  animation: lightningFlash 4s infinite ease-in-out;
  z-index: 3;
  pointer-events: none;
}

@keyframes lightningFlash {
  0%, 100% { opacity: 0; transform: scale(0.95) rotate(-5deg); }
  45%     { opacity: 0; }
  50%     { opacity: 1; transform: scale(1) rotate(0); }
  55%     { opacity: 0; transform: scale(1.1) rotate(5deg); }
}

.games__item-bg {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.games__item-video-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  border-radius: 25px;
}

.games__item-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;           
  object-position: center;     
  display: block;
  filter: brightness(0.9);    
  pointer-events: none;       
}

.game-pill {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  padding: 8px 14px;
  border-radius: 999px;
  gap: 10px;
  color: #fff;
  z-index: 2;
  transition: transform 0.25s ease;
}

.game-pill:hover {
  transform: scale(1.05);
}

.game-pill__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.game-pill__text {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  line-height: 1.2;
}

.game-pill__title {
  font-weight: 600;
}

.game-pill__provider {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.game-pill__arrow {
  margin-left: 10px;
  font-size: 18px;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .games__item-desktop-only {
    display: none;
  }
}

.games__item-bg1 {
  position: relative;
  background-image: url('/banners/banner1.png');
  background-size: cover;
  background-position: center center; 
  background-repeat: no-repeat;
  border-radius: 25px;       
  overflow: hidden;
}



/* adaptive */ 


@media (max-width: 767px) {
  .home_live_wins {
    display: none !important;
  }
}


/* modal wallet banks */


/* === BANK SELECT === */
#withdraw_bank {
    background: rgba(255,255,255,0.03) url('data:image/svg+xml;utf8,<svg fill="%23a8e5d3" height="22" width="22" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 12px center;
    background-size: 14px;
    border: 1px solid rgba(72,255,200,0.12);
    border-radius: 12px;
    padding: 12px 38px 12px 14px;
    font-size: 15px;
    color: #c9fff0;
    transition: .2s;
    appearance: none;
    cursor: pointer;
}
#withdraw_bank:hover {
    border-color: rgba(72,255,200,0.25);
    background-color: rgba(72,255,200,0.05);
}
#withdraw_bank:focus {
    outline: none;
    border-color: #47ffc5;
    background-color: rgba(72,255,200,0.08);
    box-shadow: 0 0 10px rgba(72,255,200,0.4);
    color: #e7fff8;
}

#withdraw_bank option[disabled] {
    color: rgba(255,255,255,0.25);
}

#withdraw_bank option {
    background: #121922;
    color: #dffff2;
    padding: 10px;
}

#withdraw_bank option:hover {
    background: #29ffb1;
    color: #06100b;
}

#label_bank {
    color: #93b9b0 !important;
    font-size: 13px;
}





/********************
    MOBILE ONLY
********************/
.bratki-mobile-bonus {
    display: none;
}

@media (max-width: 768px) {

    .bratki-mobile-bonus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: linear-gradient(150deg, #191e2e 0%, #1b2030 100%);
        border: 1px solid rgba(255,255,255,0.12);
        border-radius: 20px;
        padding: 18px;
        margin: 14px 1px;
        height: 140px;
        text-decoration: none;
        color: #fff;
        cursor: pointer;
        transition: .2s ease;
        position: relative;
        overflow: visible;
        box-shadow: 0 0 25px rgba(0,0,0,0.45);
    }

    .bratki-mobile-bonus:active {
        transform: scale(.97);
    }

    .bratki-bonus-content {
        z-index: 2;
        display: flex;
        flex-direction: column;
        gap: 8px;
        max-width: 60%;
    }

    .bratki-bonus-title {
        font-weight: 700;
        font-size: 15px;
        background: rgb(25 182 134 / 63%);
        padding: 5px 12px;
        border-radius: 10px;
        width: fit-content;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .bratki-badge {
        background: linear-gradient(45deg, #ff2448, #ff7744);
        padding: 2px 6px;
        border-radius: 6px;
        text-transform: uppercase;
        font-weight: 800;
        font-size: 10px;
        letter-spacing: 0.3px;
        animation: pulse 1.2s infinite;
    }

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

    .bratki-bonus-desc {
        font-size: 14px;
        color: #e7ebf4;
        font-weight: 500;
        line-height: 1.28;
    }

    .bratki-bonus-available {
        font-size: 13px;
        display: flex;
        align-items: center;
        gap: 6px;
        color: #ffffff;
        margin-top: auto;
    }

    .dot {
        width: 11px;
        height: 11px;
        background: #00ea7a;
        border-radius: 50%;
        box-shadow: 0 0 6px #00ea7a;
    }

    .bratki-bonus-image {
        position: absolute;
        right: 10px;
        bottom: -8px;
        width: 105px;
        height: auto;
        pointer-events: none;
        opacity: 1;
    }

    .bratki-bonus-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
        filter: drop-shadow(0 12px 18px rgba(0,0,0,0.6));
    }
}



.header__socials-group {
    display: flex;
    align-items: center;
    background: #1b203091;
    border: 1px solid #2e2f42c7;
    border-radius: 14px;
    padding: 1px;
    margin-right: 20px;
}

/* КНОПКИ */
.social-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 10px;
    cursor: pointer;               /* 👈 всегда рука */
    transition: background 0.2s ease;
    position: relative;
    z-index: 1;
}

.social-item img {
    width: 20px;
    height: 20px;
    pointer-events: none;          /* 👈 курсор не прыгает */
}

.social-item span {
    font-size: 15px;
    color: #fff;
    font-weight: 500;
    white-space: nowrap;
    pointer-events: none;
}

/* ЧЁТКИЙ HOVER — не задевает разделитель */
.social-item:hover {
    background: #2328416e;
}

/* РАЗДЕЛИТЕЛЬ */
.social-divider {
    width: 1px;
    height: 26px;
    background: #2e2f42;
    margin: 0 5px;
    pointer-events: none;          /* 👈 КЛЮЧЕВО: не ловит ховер */
}

/* ❌ На телефоне не показываем */
@media (max-width: 768px) {
    .header__socials-group {
        display: none !important;
    }
}





/* === ТОЛЬКО МОБИЛКА === */
.home__banners-grid {
    display: none;
}

/* Мобилки */
@media (max-width: 992px) {
    .home__banners-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: .75rem;
        grid-column: span 2 / span 2;
    }
}

/* Высота баннеров */
@media (max-width: 1280px) {
    .home__banners-grid .home__banner {
        min-height: 8rem;
    }
}

/* === БАННЕР === */
.home__banner {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    padding: 1rem;
}

@media (min-width: 993px) {
    .home__banner {
        padding: 1.5rem;
    }
}

/* === ГРАДИЕНТЫ === */
.home__banner.home__banner-sport {
    background-image: linear-gradient(
        180deg,
        rgba(27, 32, 48, 0.95) 0%,
        rgba(21, 25, 37, 0.95) 55%,
        rgba(15, 19, 30, 1) 100%
    );
}

.home__banner.home__banner-lives {
    background-image: linear-gradient(
        180deg,
        rgba(40, 18, 30, 0.95) 0%,
        rgba(27, 32, 48, 0.95) 55%,
        rgba(21, 25, 37, 1) 100%
    );
}

/* === ВНУТРЕННОСТЬ === */
.home__banner-inner {
    position: relative;
    z-index: 1;
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.25rem;
}

.home__banner-seo {
    display: flex;
    flex-direction: column;
    gap: .375rem;
    color: #fff;
}

/* === ТЕКСТ === */
.home__banner-title {
    font-size: 1.25rem;
    line-height: 1.75rem;
    text-transform: uppercase;
    font-style: italic;
    font-weight: 800;
    letter-spacing: .04em;
    text-shadow: 0 2px 8px rgba(0,0,0,.35);
}

.home__banner-desc {
    font-weight: 600;
    line-height: 1.2;
    color: rgba(255,255,255,.9);
    text-shadow: 0 1px 6px rgba(0,0,0,.3);
}

/* === ФОН === */
.home__banner-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    transition: transform .15s cubic-bezier(.4,0,.2,1);
}

/* Hover */
.home a.home__banner:hover .home__banner-background {
    transform: scale(1.05);
}


.home__banner {
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.03),
        0 8px 24px rgba(0,0,0,0.6);

                margin: 1px 1px;

}