

  /*Zalcman*/

  .footer {
      display: none !important;
  }
  header.wrapper .language-switcher {
      position: relative !important;
      display: inline-flex !important;
      align-items: center !important;
  }
  .profile-sidebar__item {
      border-radius: .5rem;
      background-color: rgba(255, 255, 255, 0.90);
      transition: all .2s
  ease;
  }
.scroll-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    cursor: pointer;
    transition: opacity .3s
ease;
    z-index: 1000;
}
.app-button--primary {
    background-color: #000000;
    color: #fafafa;
    border: 1px solid #F13941;
}
.product-card {
    height: 295px;
    width: 210px;
    background-image: url(https://i.ibb.co/Cw3jpXR/Untitled.png);
    background-size: cover;
    background-position: center;
    border: none;
    margin: 10px;
    border-bottom: 5px solid #F13941;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    animation: smoothRedPulse 2s infinite;
}

@keyframes smoothRedPulse {
    0%, 100% {
        box-shadow:
            0 10px 30px rgba(241, 57, 65, 0.4),
            0 0 15px rgba(241, 57, 65, 0.2);
    }
    50% {
        box-shadow:
            0 15px 40px rgba(241, 57, 65, 0.6),
            0 0 25px rgba(241, 57, 65, 0.4);
    }
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, rgba(241, 57, 65, 0.1), transparent 30%),
        url(https://i.ibb.co/Cw3jpXR/Untitled.png) center/cover;
    transition: transform 1.5s ease-out;
    z-index: -1;
}

.product-card:hover::before {
    transform: scale(1.08) translateY(-5px);
}
  .navbar-expand-lg {
      background-image: url(https://i.ibb.co/HGfSc4m/image.png);
      border-radius: 3px;
      border: 1px solid #df1d1d;
      box-shadow:0 0 10px #080808;
      background-size: contain !important;
  }
  .navbar-brand {
      padding-left: 20px;
      font-weight: 700;
      white-space: nowrap;
      font-family: Arial, Helvetica, sans-serif;
      margin: auto 0;
  }
.product-card-footer {
    height: 25%;
    max-height: 25%;
    display: flex;
    justify-content: space-between;
    align-items: end;
    padding: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.90);
    box-sizing: border-box;
}
.profile-info {
    background-color: rgba(0, 0, 0, 0.9)!important;
    border-radius: 3px;
    border: 1px solid #2e2727;
    padding: 6px;
    overflow: hidden;
}
.profile-info__row .profile-info__row--striped {
    background-color: rgba(250, 250, 250, 0.9)!important;
    border-radius: 3px;
    border: 1px solid #3a3636;
    padding: 6px;
    overflow: hidden;
}
.profile-info__cell {
    width: 50%;
    padding: 14px;
    border: none;
    background-color: rgba(28, 28, 28, 1) !important;
    display: flex;
    align-items: center;
    color: #fff;
}

.profile-info{
    background-color: rgba(28, 28, 28, 1)!important;
    border-radius: 5px;
}
.search-input {
    width: 100%;
    padding: .5rem 1rem;
    border-radius: 5px;
    border: 1px solid #222121;
    background-color: rgba(0, 0, 0, 0.9)!important;
    color: #ffffff;
}
.app-button {
    padding: .5rem 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-family: inherit;
    background-color: #0e0d0d;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    flex: 1 1 calc(5% - 6px);
    min-height: 54px;
}
.product-card-badge-percentage{
    position: absolute;
    top: 15px;
    right: 12px;
    font-weight: 700;
    background-color: rgba(28, 28, 28, 1);
    color: #68eb09;
    border: 1px solid #68eb09;
    font-size: 14px;
    padding: 2px 6px;
    border-radius: 5px;
}
.product-card:hover .product-card-image-container img {
    transform: scale(1.09);
    transition: transform 1.5s ease;
}
.products-types-buttons {
    padding: .5rem 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-family: inherit;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    flex: 1 1 calc(5% - 6px);
    min-height: 54px;

    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}


.products-types-buttons:hover {
    box-shadow:
        0 6px 20px rgba(241, 57, 65, 0.35),
        0 0 15px rgba(241, 57, 65, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);

    transform: translateY(-3px) scale(1.02);

    border: 1px solid rgba(241, 57, 65, 0.3);
}

.products-types-buttons::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(241, 57, 65, 0.1),
        transparent
    );
    transition: transform 0.6s ease;
    z-index: 1;
}

.products-types-buttons:hover::before {
    transform: translateX(200%);
}

.products-types-buttons:active {
    transform: translateY(-1px) scale(0.99);
    transition-duration: 0.1s;
    box-shadow:
        0 3px 15px rgba(241, 57, 65, 0.4),
        0 0 10px rgba(241, 57, 65, 0.3),
        inset 0 1px 2px rgba(0, 0, 0, 0.2);
}
.cursor-glow {
  position: fixed;
  width: 20px;
  height: 20px;
  background: radial-gradient(
    circle,
    rgba(255,60,60,0.35),
    transparent 60%
  );
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
}
.scroll-top-btn {
  border: 2px solid transparent;
  box-shadow: 0 8px 12px -6px rgba(241,57,65,0.8);
}
@keyframes radiation {
  0% { filter: hue-rotate(10deg); }
  100% { filter: hue-rotate(50deg); }
}

.scroll-top-btn {
  animation: radiation 6s infinite alternate;
}
.product-card:hover .product-card-price {
  text-shadow: 0 0 6px #f13941;
}
.product-card {
  backdrop-filter: blur(6px);
  background: rgba(20,20,20,0.6);
}
.product-card-price {
  transform: translateY(4px);
  transition: transform 0.25s ease;
}
.product-card:hover .product-card-price {
  transform: translateY(0);
}
.product-card .products-types-buttons {
  transition: all 0.6s ease 0.05s;
}
.modal {
    width: 85vw;
    max-width: 550px;
    position: relative;
    box-shadow: 0 4px 20px #0003;
    transition: inherit;
    border-radius: 5px;
    background: rgba(21, 21, 21, 1) !important;
    margin: 30px 0;
}

.modal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.amount-control-counter {
    display: flex;
    min-width: 120px;
    border: 1px solid #eaece8;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(28, 28, 28, 1);
    border-radius: .5rem;
    overflow: hidden;
}
.amount-control-total {
    min-width: 120px;
    border: 1px solid #d6dad3;
    background-color: rgba(28, 28, 28, 1);
    border-radius: .5rem;
    overflow: hidden;
}
.amount-control-counter-button {
    color: #fff !important

}
.amount-control-count {
    color: #fff !important
}
header.wrapper {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  width: 100% !important;
  max-width: none !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  z-index: auto !important;
  box-sizing: border-box !important;
}

header.wrapper * {
  box-shadow: none !important;
  outline: none !important;
}

header.wrapper .navbar {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  background: #1C1C1C !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 0 !important;
  padding: 18px 26px !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
}

header.wrapper {
  color: rgba(255, 255, 255, 0.90) !important;
  text-decoration: none !important;
}

header.wrapper .navbar-brand::after {
  display: none !important;
}

header.wrapper .navbar-links {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
}

header.wrapper .auth-btns {
  display: flex !important;
  align-items: center !important;
  gap: 28px !important;
}

header.wrapper .auth-btns a,
header.wrapper .auth-btns .balance-btn {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  padding: 4px 0 !important;
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.90) !important;
  text-decoration: none !important;
  background: transparent !important;
  border: 0 !important;
  white-space: nowrap !important;
  cursor: pointer !important;
}

header.wrapper .auth-btns a *,
header.wrapper .auth-btns .balance-btn * {
  border-bottom: 0 !important;
  text-decoration: none !important;
}

header.wrapper .auth-btns a::after,
header.wrapper .auth-btns .balance-btn::after {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  bottom: -6px !important;
  width: 100% !important;
  height: 2px !important;
  background: #F13941 !important;
  transform: translateX(-50%) scaleX(0) !important;
  transform-origin: center !important;
  opacity: 0 !important;
  transition: transform .15s ease, opacity .15s ease !important;
}

header.wrapper .auth-btns a:hover,
header.wrapper .auth-btns .balance-btn:hover {
  color: rgba(255, 255, 255, 0.95) !important;
}

header.wrapper .auth-btns a:hover::after,
header.wrapper .auth-btns .balance-btn:hover::after {
  transform: translateX(-50%) scaleX(1) !important;
  opacity: 1 !important;
}

#app > div > footer,
#app > div > footer * {
  color: #666666 !important;
}

#app > div > footer a {
  color: #F13941 !important;
  text-decoration: none;
}

#app > div > footer a:hover {
  color: #F13941 !important;
}

#app > div > header > div.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 18px;
}

#app > div > header > div.modal-overlay > div {
  width: min(980px, 92vw);
  max-width: 980px;
  background: #151515 !important;
  color: rgba(255, 255, 255, 0.86) !important;
  border-radius: 12px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45) !important;
  border: none !important;
  outline: none !important;
  position: relative;
  overflow: hidden;
}

#app > div > header > div.modal-overlay > div > div.modal-content {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

#app > div > header > div.modal-overlay > div > div.modal-content > div {
  background: #151515 !important;
  color: rgba(255, 255, 255, 0.86) !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  border-radius: 12px;
  position: relative;
  padding: 26px 34px 92px;
}

#app > div > header > div.modal-overlay > div > div.modal-content > div::after {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 78px;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
}

#app > div > header > div.modal-overlay > div h2,
#app > div > header > div.modal-overlay > div .modal-title {
  margin: 0 0 18px;
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 24px;
  color: rgba(255, 255, 255, 0.92) !important;
}

#app > div > header > div.modal-overlay > div label,
#app > div > header > div.modal-overlay > div .recharge-panel-label,
#app > div > header > div.modal-overlay > div > div.modal-content > div
  > div:nth-child(3) > div > div:nth-child(2) > div.recharge-panel-label,
#app > div > header > div.modal-overlay > div > div.modal-content > div
  > div:nth-child(3) > div > div:nth-child(3) > div.recharge-panel-label,
#app > div > header > div.modal-overlay > div > div.modal-content > div
  > div.recharge-panel-section.-mt-4 > div {
  color: #B4B4B4 !important;
  font-size: 14px;
}

#app > div > header > div.modal-overlay > div .required,
#app > div > header > div.modal-overlay > div .req {
  color: #F13941 !important;
}

#app > div > header > div.modal-overlay > div div.recharge-panel-input {
  background: #0F0F0F !important;
  border: 1px solid #1C1C1C !important;
  border-radius: 10px !important;
  outline: none !important;
  box-shadow: none !important;
  transition: border-color .12s ease;
}

#app > div > header > div.modal-overlay > div div.recharge-panel-input:focus-within,
#app > div > header > div.modal-overlay > div > div.modal-content > div
  > div:nth-child(3) > div > div:nth-child(1) > div.recharge-panel-input:focus-within {
  border-color: #F13941 !important;
}

#app > div > header > div.modal-overlay > div div.recharge-panel-input input,
#app > div > header > div.modal-overlay > div div.recharge-panel-input textarea,
#app > div > header > div.modal-overlay > div div.recharge-panel-input select {
  width: 100%;
  background: transparent !important;
  color: #B4B4B4 !important;
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  font-size: 14px !important;
}

#app > div > header > div.modal-overlay > div div.recharge-panel-input input::placeholder,
#app > div > header > div.modal-overlay > div div.recharge-panel-input textarea::placeholder {
  color: rgba(180, 180, 180, 0.35) !important;
}

#app > div > header > div.modal-overlay > div div.recharge-panel-input input[type="number"] {
  appearance: textfield !important;
  -moz-appearance: textfield !important;
}

#app > div > header > div.modal-overlay > div div.recharge-panel-input input[type="number"]::-webkit-outer-spin-button,
#app > div > header > div.modal-overlay > div div.recharge-panel-input input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
}

#app > div > header > div.modal-overlay > div div.recharge-panel-input input:-webkit-autofill,
#app > div > header > div.modal-overlay > div div.recharge-panel-input textarea:-webkit-autofill {
  -webkit-text-fill-color: #B4B4B4 !important;
  box-shadow: 0 0 0px 1000px #0F0F0F inset !important;
  border: 0 !important;
}

#app > div > header > div.modal-overlay > div > div.modal-content > div
  > div:nth-child(3) > div > div:nth-child(2)
  > div.recharge-panel-input.readonly.transition-all.duration-300 input,
#app > div > header > div.modal-overlay > div > div.modal-content > div
  > div:nth-child(3) > div > div:nth-child(2)
  > div.recharge-panel-input.readonly.transition-all.duration-300 textarea,
#app > div > header > div.modal-overlay > div > div.modal-content > div
  > div:nth-child(3) > div > div:nth-child(2)
  > div.recharge-panel-input.readonly.transition-all.duration-300 select,
#app > div > header > div.modal-overlay > div > div.modal-content > div
  > div:nth-child(3) > div > div:nth-child(2)
  > div.recharge-panel-input.readonly.transition-all.duration-300 {
  color: #46D957 !important;
}

#app > div > header > div.modal-overlay > div > div.modal-footer-buttons {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

#app > div > header > div.modal-overlay > div > div.modal-footer-buttons > button {
  height: 48px !important;
  flex: 1 1 0;
  width: auto !important;
  border-radius: 10px !important;
  border: 1px solid transparent !important;
  background: #1C1C1C !important;
  color: #B4B4B4 !important;
  outline: none !important;
  box-shadow: none !important;
  cursor: pointer;
  transition: background .12s ease, color .12s ease;
}

#app > div > header > div.modal-overlay > div > div.modal-footer-buttons > button > p {
  margin: 0 !important;
  color: #B4B4B4 !important;
}

#app > div > header > div.modal-overlay > div > div.modal-footer-buttons > button:hover {
  background: #F13941 !important;
  color: #FFFFFF !important;
}

#app > div > header > div.modal-overlay > div > div.modal-footer-buttons > button:hover > p,
#app > div > header > div.modal-overlay > div > div.modal-footer-buttons
  > button.modal-primary-button:hover > p,
#app > div > header > div.modal-overlay > div > div.modal-footer-buttons
  > button.modal-close-button:hover > p {
  color: #FFFFFF !important;
}

#app > div > header > div.modal-overlay > div > div.modal-footer-buttons
  > button.modal-close-button > p,
#app > div > header > div.modal-overlay > div > div.modal-footer-buttons
  > button.modal-primary-button > p {
  color: #B4B4B4 !important;
}

@media (max-width: 820px) {
  #app > div > header > div.modal-overlay > div > div.modal-content > div {
    padding: 22px 18px 110px;
  }

  #app > div > header > div.modal-overlay > div > div.modal-footer-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  #app > div > header > div.modal-overlay > div > div.modal-footer-buttons > button {
    width: 100% !important;
  }
}
.modal:has(.roulette-modal),
.modal:has(.roulette-wrapper),
.modal:has(.roulette-window),
.modal:has(.roulette-item) {
    width: 95vw !important;
    max-width: 1000px !important;
    min-height: 500px !important;
    max-height: 90vh !important;
}

@media (max-width: 768px) {
    .modal:has(.roulette-modal),
    .modal:has(.roulette-wrapper),
    .modal:has(.roulette-window),
    .modal:has(.roulette-item) {
        width: 98vw !important;
        max-width: none !important;
        height: 95vh !important;
        margin: 10px 0 !important;
    }
}
.roulette-prizes-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-align: left;
}
.roulette-wrapper {
    position: relative;
    overflow: hidden;
    margin-top: 16px;
    border-radius: 8px;
    border: 1px solid rgba(50, 50, 50, 1);
    height: 165px;
    background: rgba(28, 28, 28, 1)
}
.roulette-item {
    width: 90px;
    min-width: 50px;
    height: 115px;
    background: rgba(21, 21, 21, 1);
    border-radius: 6px;
    text-align: center;
    white-space: normal;
    word-break: normal;
    padding: 6px;
    flex-shrink: 0;
}
.product-modal-description {
    position: relative !important;
    padding-top: 10px !important;
    margin-top: 15px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: visible !important; 
}

.product-modal-description::before {
    content: '';
    position: absolute;
    top: 0;
    left: -20px; /* Выступает влево */
    right: -20px; /* Выступает вправо */
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    width: calc(100% + 40px); 
}
.amount-control-total .number-part {
    color: white;
    font-weight: bold;
    order: 0 !important;
}
.amount-control-total {
    font-size: 15px !important;
    background: rgba(21, 21, 21, 1) !important;
    border: none;
    background-color: rgba(21, 21, 21, 1) !important;
}
.modal-close-button-text {
    color: #ffffff;
    font-size: 17px;
    font-weight: 400;
    opacity: .9;
}
.roulette-prize-card {
    background: rgba(16, 16, 16, 1);
    border-radius: 5px;
    padding: 8px 1px;
}
.navbar-brand {
    color: #1C1C1C !important;
    text-decoration: none !important;
}
.roulette-item-name {
    font-size: 12px;
    color: rgba(183, 183, 183, 1);
    margin-top: 4px;
    white-space: normal;
    word-break: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.2;
    word-spacing: -0.1em;
    padding-top: 5px;
    max-height: calc(1.2em * 3);
    box-sizing: border-box;
}
.roulette-prize-name {
    color: rgba(183, 183, 183, 1);
    font-size: 12px;
    white-space: normal;
    word-break: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.2;
    word-spacing: -0.1em;
    padding-top: 0px;
    max-height: calc(1.2em * 2);
    box-sizing: border-box;
}
.profile-sidebar__header {
    text-align: center;
    background-color: rgba(28, 28, 28, 1)!important;
    color: #ffffff;
    border : 1px solid #757373;
    padding-top: 15px;
    padding-bottom: 15px;
    border-radius: 5px;
    margin-bottom: 5px;
}
.profile-sidebar__item {
    border-radius: 5px;
    background-color: rgba(28, 28, 28, 1)!important;
    color: #ffffff;
    border : 1px solid #757373;
}
.profile-sidebar__footer {
    text-align: center;
    color: var(--error-color);
    border: 2px solid var(--error-color);
    border-radius: 5px;
    margin-top: 5px;
}
.profile-sidebar__footer:hover {
    background-color: var(--error-color);
    color: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.modal-primary-button-text {
    color: var(--main-white-color);
    font-size: 16px;
    font-weight: 500;
}
.banner-content {
    color: transparent !important;
}
.bunner-title {
    color: transparent !important;
}

.banner-elem {
    width: 312.5px;
    height: 100px;
    background-position: initial;
    margin-bottom: 8px;
    border-radius: 8px;
    text-align: center;
    transition: transform .3s ease;
    cursor: pointer;
}

@media (max-width: 768px) {
    .navbar-links {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        background-color: transparent !important;
        overflow: hidden;
        padding: 0;
    }
}

/* мобилки карточки*/
@media (max-width: 480px) {
    .product-card {
        transform: translateX(60px) !important;
    }
}

/* мобилки карточки */
@media (max-width: 320px) {
    .product-card {
        transform: translateX(30px) !important;
    }
}
.navbar-links {
    background: transparent !important;
}
/* мобилки баннеры*/
@media (max-width: 480px) {
    .banner-elem {
        transform: translateX(20px) !important;
    }
}

/* мобилки баннеры */
@media (max-width: 320px) {
    .banner-elem {
        transform: translateX(10px) !important;
    }
}
.left-column h2.text-xl.font-semibold.mb-4 {
    color: white !important;
}
.mt-4 button {
    color: #ffffff !important;
        opacity: .9 !important;
}
.table th {
    background-color: rgba(28, 28, 28, 1) !important;
    color: #ffffff !important;
}
