﻿/* Consolidated page-level styles (re-generated from backup) */

/* ===== blog1bce_v9.css ===== */
.blog-main-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.first-article-wrapper {
    margin-bottom: 40px;
}

.article-wrapper-animation {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-wrapper-animation:hover {
    transform: translateY(-5px);
}

.first-article-image {
    max-width: 100%;
    border-radius: 40px;
}

.first-article-description-wrapper {
    margin-top: 20px;
}

.first-article-title {
    color: #e79710;
}

.first-article-summary {
    color: #8b949e;
    line-height: 20px;
}

.first-article-subject {
    color: #8b949e;
    line-height: 25px;
}

.first-article-subject p {
    color: #8b949e;
}

.first-article-subject b {
    color: #ffffff;
    font-weight: 600;
}

.first-article-subject a {
    color: #e79710;
    font-weight: 600;
}

.first-article-subject ul {
    list-style: circle;
    padding: 0 0 0 40px;
}

.articles-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.article-wrapper {
    max-width: 300px;
}

.article-image {
    max-width: 100%;
    border-radius: 20px;
}

.article-title {
    color: #e79710;
    margin-top: 10px;
    font-size: 18px;
    display: -webkit-box;
    overflow: hidden !important;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

.article-summary {
    color: #8b949e;
    line-height: 20px;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden !important;
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
    line-clamp: 4;
}

@media screen and (max-width: 767px) {
    .first-article-wrapper {
        margin: 0 15px 30px;
    }

    .first-article-title {
        font-size: 18px;
    }

    .articles-wrapper {
        gap: 30px;
    }

    .article-wrapper {
        max-width: 100%;
        margin: 0 15px;
    }
}

/* ===== buy_btn_section_v2026_v9.css ===== */
.buy-btn-section {
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.btn {
    text-decoration: none;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    overflow: hidden;
    height: 60px;
    background-size: 300% 300%;
    backdrop-filter: blur(1rem);
    border-radius: 5rem;
    transition: 0.5s;
    animation: gradient_301 5s ease infinite;
    border: double 2px transparent;
    background-image: linear-gradient(#161a25, #161a25),
    linear-gradient(
            137.48deg,
            #f0c419 10%,
            #e5b014 45%,
            #7d6111 67%,
            #c79915 87%
    );
    background-origin: border-box;
    background-clip: content-box, border-box;
}

.container-stars {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: 0.5s;
    backdrop-filter: blur(1rem);
    border-radius: 5rem;
}

strong {
    z-index: 2;
    font-size: 18px;
    letter-spacing: 5px;
    color: #ffffff;
    text-shadow: 0 0 4px white;
}

.glow {
    position: absolute;
    display: flex;
    width: 12rem;
}

.circle-container {
    position: relative;
    width: 100%;
    height: 100%;
    animation: orbit 5s linear infinite;
}

.circle {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    filter: blur(2rem);
}

.circle:nth-of-type(1) {
    background: rgba(245, 67, 79, 0.636);
    animation: orbit 8s linear infinite;
}

.circle:nth-of-type(2) {
    background: rgba(99, 30, 41, 0.704);
    animation: orbit 10s linear infinite;
}

.btn:hover .container-stars {
    z-index: 1;
    background-color: #161a25;
}

.btn:hover {
    transform: scale(1.1);
}

.btn:active {
    border: double 4px #631e29;
    background-origin: border-box;
    background-clip: content-box, border-box;
    animation: none;
}

.btn:active .circle {
    background: #631e29;
}

@keyframes orbit {
    from {
        transform: rotate(0deg) translateX(100px) rotate(0deg);
    }
    to {
        transform: rotate(360deg) translateX(100px) rotate(-360deg);
    }
}

.stars {
    position: relative;
    background: transparent;
    width: 200rem;
    height: 200rem;
}

.stars::after {
    content: "";
    position: absolute;
    top: -10rem;
    left: -100rem;
    width: 100%;
    height: 100%;
    animation: animStarRotate 90s linear infinite;
}

.stars::after {
    background-image: radial-gradient(#ffffff 1px, transparent 1%);
    background-size: 50px 50px;
}

.stars::before {
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    width: 170%;
    height: 500%;
    animation: animStar 60s linear infinite;
}

.stars::before {
    background-image: radial-gradient(#ffffff 1px, transparent 1%);
    background-size: 50px 50px;
    opacity: 0.5;
}

@keyframes animStar {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-135rem);
    }
}

@keyframes animStarRotate {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0);
    }
}

@keyframes gradient_301 {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes pulse_3011 {
    0% {
        transform: scale(0.75);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(0.75);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

/* ===== buy_btn_section_v9.css ===== */
.buy-btn-section {
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.btn {
    text-decoration: none;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    overflow: hidden;
    height: 60px;
    background-size: 300% 300%;
    backdrop-filter: blur(1rem);
    border-radius: 5rem;
    transition: 0.5s;
    animation: gradient_301 5s ease infinite;
    border: double 2px transparent;
    background-image: linear-gradient(#161a25, #161a25),
    linear-gradient(
            137.48deg,
            #f0c419 10%,
            #e5b014 45%,
            #7d6111 67%,
            #c79915 87%
    );
    background-origin: border-box;
    background-clip: content-box, border-box;
}

.container-stars {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: 0.5s;
    backdrop-filter: blur(1rem);
    border-radius: 5rem;
}

strong {
    z-index: 2;
    font-size: 18px;
    letter-spacing: 5px;
    color: #ffffff;
    text-shadow: 0 0 4px white;
}

.glow {
    position: absolute;
    display: flex;
    width: 12rem;
}

.circle-container {
    position: relative;
    width: 100%;
    height: 100%;
    animation: orbit 5s linear infinite;
}

.circle {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    filter: blur(2rem);
}

.circle:nth-of-type(1) {
    background: rgba(245, 67, 79, 0.636);
    animation: orbit 8s linear infinite;
}

.circle:nth-of-type(2) {
    background: rgba(99, 30, 41, 0.704);
    animation: orbit 10s linear infinite;
}

.btn:hover .container-stars {
    z-index: 1;
    background-color: #161a25;
}

.btn:hover {
    transform: scale(1.1);
}

.btn:active {
    border: double 4px #631e29;
    background-origin: border-box;
    background-clip: content-box, border-box;
    animation: none;
}

.btn:active .circle {
    background: #631e29;
}

@keyframes orbit {
    from {
        transform: rotate(0deg) translateX(100px) rotate(0deg);
    }
    to {
        transform: rotate(360deg) translateX(100px) rotate(-360deg);
    }
}

.stars {
    position: relative;
    background: transparent;
    width: 200rem;
    height: 200rem;
}

.stars::after {
    content: "";
    position: absolute;
    top: -10rem;
    left: -100rem;
    width: 100%;
    height: 100%;
    animation: animStarRotate 90s linear infinite;
}

.stars::after {
    background-image: radial-gradient(#ffffff 1px, transparent 1%);
    background-size: 50px 50px;
}

.stars::before {
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    width: 170%;
    height: 500%;
    animation: animStar 60s linear infinite;
}

.stars::before {
    background-image: radial-gradient(#ffffff 1px, transparent 1%);
    background-size: 50px 50px;
    opacity: 0.5;
}

@keyframes animStar {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-135rem);
    }
}

@keyframes animStarRotate {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0);
    }
}

@keyframes gradient_301 {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes pulse_3011 {
    0% {
        transform: scale(0.75);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(0.75);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

/* ===== buy_section_v2026_v9.css ===== */
.buy-section {
    align-items: center;
    padding: 20px;
    position: relative;
}

.buy-section h1 {
    text-align: center;
    margin-bottom: 30px;
}

.sub-text {
    width: 100%;
}

#form_wrapper {
    display: flex;
    justify-content: center;
}

.payment-form {
    margin: 0 auto;
    width: 100%;
    max-width: 400px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-direction: column;
    z-index: 10;
}

.recipient-toolbar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: -4px;
}

.recipient-toolbar-title {
    color: #f6f4eb;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
}

.buy-for-myself-btn {
    border: 1px solid #ecb117;
    background: rgba(236, 177, 23, 0.12);
    color: #ecb117;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.buy-for-myself-btn:hover {
    background: rgba(236, 177, 23, 0.22);
    border-color: #f0c419;
    color: #f0c419;
}

.buy-for-myself-btn:active {
    transform: translateY(1px);
}

.wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
}

.btn-buy {
     background-color: #f0c419;
     border: none;
     color: #0d1117;
     font-weight: bold;
     padding: 12px;
     border-radius: 8px;
     width: 100%;
     margin-top: 10px;
     cursor: pointer;
     transition: background-color 0.3s;
 }

.btn-buy:hover {
    background-color: #e5b014;
}

.btn-buy[disabled] {
    color: #2c2f37;
    background-color: #ffd436;
    opacity: 1;
    cursor: auto;
}

.btn-buy.disabled, .btn-buy[disabled], fieldset[disabled] .btn-buy {
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.65;
    filter: alpha(opacity = 65);
    -webkit-box-shadow: none;
    box-shadow: none;
}

.terms-section {
    font-size: 0.9rem;
    color: #8b949e;
    margin-top: 15px;
}

.terms-section a {
    color: #f0c419;
    text-decoration: none;
}

.terms-section a:hover {
    text-decoration: underline;
}





.tm-field {
    position: relative;
    margin: auto;
    width: 100%;
}

.icon-search:before {
    width: 19px;
    height: 23px;
    background-image: url('/img/search.svg');
    margin: 13px 15px 13px 19px;
    position: absolute;
    pointer-events: none;
    content: '';
    display: inline-block;
    vertical-align: top;
    background-position: 0 center;
    background-repeat: no-repeat;
    background-size: contain;
    color: #d2d2d2;
}

.icon-stars:before {
    position: absolute;
    margin: 11px 12px 12px;
    pointer-events: none;
    width: 24px;
    height: 26px;
    background-image: url('/img/star.svg');
    content: '';
    display: inline-block;
    vertical-align: top;
    background-position: 0 center;
    background-repeat: no-repeat;
    background-size: contain;
}

.tm-search-loading, .tm-search-clear {
    position: absolute;
    top: 0;
    right: 0;
    padding: 14px;
    cursor: pointer;
    transition: visibility 0.2s ease, opacity 0.2s ease;
}

.tm-search-loading {
    visibility: hidden;
    opacity: 0;
}

.tm-input:placeholder-shown ~ .tm-search-clear, .tm-search-input:placeholder-shown ~ .tm-search-clear {
    visibility: hidden;
    opacity: 0;
}

.tm-search-field.found .tm-search-input {
    opacity: 1;
    font-weight: bold;
    cursor: auto;
    pointer-events: none;
}

.tm-stars-price .tm-value.icon-ton:before,
.tm-form-radio-label .tm-value.icon-ton:before {
    width: 15px;
    height: 19px;
    margin-left: -1px;
    margin-right: 4px;
}

.tm-stars-price {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-flex;
    font-size: 15px;
    line-height: 20px;
    padding: 15px 7px;
    margin-right: 42px;
    font-weight: bold;
    transition: visibility 0.2s ease, opacity 0.2s ease;
    color: #fff;
}

.tm-form-radio-label .tm-quantity {
    width: 60px;
    font-weight: normal;
    color: #8c9aa9;
}
.tm-form-radio-label .tm-quantity ~ .tm-value {
    width: 80px;
}

.options-expanded .tm-form-radio-item-wrap.tm-more-options,
.options-collapsed .tm-form-radio-item-wrap.tm-second-option {
    visibility: hidden;
    height: 0;
}

.loading .tm-search-loading {
    visibility: visible;
    opacity: 1;
}
.loading .tm-search-clear,
.loading .tm-search-rlabel {
    visibility: hidden;
    opacity: 0;
}

.tm-search-clear {
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    padding: 12px;
    transition: visibility 0.2s ease, opacity 0.2s ease;
}

.tm-search-error-icon {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    margin: 11px 12px 11px 13px;
    width: 27px;
    height: 26px;
}

.icon-search-clear:before {
    content: '';
    display: inline-block;
    vertical-align: top;
    background-position: 0 center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 22px;
    height: 25px;
    background-image: url(data:image/svg+xml,%3Csvg%20height%3D%2222%22%20viewBox%3D%220%200%2022%2022%22%20width%3D%2222%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m5%2017%2012-12m-12%200%2012%2012%22%20stroke%3D%22%238494a3%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%222%22%20x1%3D%225%22%20x2%3D%2217%22%20y1%3D%225%22%20y2%3D%2217%22%2F%3E%3C%2Fsvg%3E);
}

.error .tm-search-error-icon {
    display: inline-block;
}

.js-stars-search-field.error .tm-search-input,
.js-stars-search-field.error input[name="query"] {
    border: 1px solid #ff5863 !important;
    box-shadow: 0 0 0 1px rgba(255, 88, 99, 0.28);
}

.found .tm-search-field-photo {
    display: inline-block;
}

.tm-search-field-photo {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    margin: 7px 7px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    overflow: hidden;
}

.tm-search-field-photo img {
    width: 100%;
    vertical-align: middle;
    border: 0;
}

.play .circle-progress {
    animation: rotate-circle linear 1.5s infinite,
    resize-circle linear 360s infinite;
}

.circle-progress-wrap {
    transform-origin: 50%;
    vertical-align: top;
}

.circle-progress {
    stroke: #8494a3;
    stroke-width: 2px;
    stroke-linecap: round;
    fill: transparent;
    transform: rotateZ(-90deg);
    transform-origin: 50%;
    stroke-dasharray: 62px;
    r: 10px;
}

.tm-search-field-error {
    font-size: 12px;
    line-height: 15px;
    height: 15px;
    margin-top: -13px;
    margin-left: 20px;
    color: #ff5863;
}

@-webkit-keyframes rotate-circle {
    from { transform: rotateZ(-90deg); }
    to   { transform: rotateZ(270deg); }
}
@keyframes rotate-circle {
    from { transform: rotateZ(-90deg); }
    to   { transform: rotateZ(270deg); }
}
@-webkit-keyframes resize-circle {
    from { stroke-dashoffset: 62px; }
    to   { stroke-dashoffset: 6262px; }
}
@keyframes resize-circle {
    from { stroke-dashoffset: 62px; }
    to   { stroke-dashoffset: 6262px; }
}

.icon-search-error:before {
    content: '';
    width: 27px;
    height: 27px;
    display: inline-block;
    vertical-align: top;
    background-position: 0 center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('data:image/svg+xml,%3Csvg%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20width%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Ccircle%20cx%3D%2210%22%20cy%3D%2210%22%20fill%3D%22%23fff%22%20r%3D%229%22%2F%3E%3Cpath%20d%3D%22m10%200c5.52%200%2010%204.48%2010%2010s-4.48%2010-10%2010-10-4.48-10-10%204.48-10%2010-10zm0%2012.75c-.69%200-1.25.56-1.25%201.25s.56%201.25%201.25%201.25%201.25-.56%201.25-1.25-.56-1.25-1.25-1.25zm0-7.75c-.55%200-1%20.45-1%201v5c0%20.55.45%201%201%201s1-.45%201-1v-5c0-.55-.45-1-1-1z%22%20fill%3D%22%23ff5863%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E');
}




.tm-form-radio-item-wrap {
    padding: 0 3px;
    margin: 0 -3px;
    height: 62px;
    transition: all 0.2s ease;
    overflow: hidden;
}

.options-expanded .tm-form-radio-item-wrap.tm-more-options, .options-collapsed .tm-form-radio-item-wrap.tm-second-option {
    visibility: hidden;
    height: 0;
}

.tm-form-radio-item, .tm-form-radio-item-more {
    display: block;
    position: relative;
    padding: 4px 0;
    margin-bottom: 0;
    cursor: pointer;
}

.tm-form-radio-item input.radio {
    position: absolute;
    left: -5000px;
}

.tm-field input {
    font-family: "Inter", sans-serif;
    background-color: #20272c;
    color: #d2d2d2;
    border: none;
    border-radius: 0.5em;
    text-align: left;
    outline: none;
    height: 50px;
    padding: 12px 42px 12px 48px;
    font-size: 16px;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
}

input::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
}

.tm-form-radio-item input.radio:checked ~ .tm-form-radio-label {
    box-shadow: 0 0 0 2px #f0c419;
}

.tm-form-radio-label {
    font-size: 15px;
    padding: 14px 19px;
    border-radius: 8px;
    background: #242e38;
    box-shadow: 0 0 0 0px #f0c419;
    transition: box-shadow 0.2s ease;
    color: #fff;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.tm-form-radio-item input.radio:checked ~ .tm-form-radio-label:before {
    box-shadow: inset 0 0 0 2px #242e38;
    border-color: #f0c419;
}

.tm-form-radio-item input.radio ~ .tm-form-radio-label:before {
    display: inline-block;
    flex-shrink: 0;
    flex-grow: 0;
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #8494a3;
    background-color: #f0c419;
    box-shadow: inset 0 0 0 20px #242e38;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    margin-right: 14px;
}

.tm-form-radio-label .tm-radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tm-form-radio-label svg {
    color: #242e38;
}

.tm-form-radio-label .tm-radio-desc {
    font-weight: normal;
    text-align: right;
    color: #8c9aa9;
    width: 70px;
    margin-left: auto;
}

.tm-form-radio-item-more .tm-form-radio-label {
    display: block;
    text-align: center;
    color: #f0c419;
}

.tm-form-radio-label {
    font-size: 15px;
    padding: 14px 19px;
    border-radius: 8px;
    background: #242e38;
    box-shadow: 0 0 0 0px #f0c419;
    transition: box-shadow 0.2s ease;
    color: #fff;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.rocket-duck-sticker {
    position: absolute;
    bottom: 0;
    left: 0;
    display: none;
    animation: none;
}

div:where(.swal2-container) div:where(.swal2-popup) {
    background: linear-gradient(45deg, #000000, #0f0f0f);
    border-radius: 30px;
}

div:where(.swal2-container) h2:where(.swal2-title) {
    color: #ecae12;
}

.paygates {
    display: flex;
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.paygate {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 136px; /*172px;*/
    background: #181818;
    border-radius: 10px;
    padding: 10px;
    border: 1px solid #3e3e3e;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
}

.paygate:hover {
    border-color: #868686;
    background: #272727;
}

.paygate-not-allowed {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 136px;
    background: #181818;
    border-radius: 10px;
    padding: 10px;
    border: 1px solid #3e3e3e;
    cursor: not-allowed;
    text-decoration: none;
    color: #fff;
    position: relative;
}

.paygate-not-allowed span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.method_logo {
    height: 60px;
}

.method_logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.method_logo-not-allowed {
    height: 60px;
    filter: blur(5px);
}

.method_name-not-allowed {
    filter: blur(5px);
}

.payment-methods-wrapper {
    position: relative;
}

.payment-methods {
    position: absolute;
    bottom: -20px;
    right: 0;
}

.payment-method {
    background: #fff;
    border-radius: 50%;
    padding: 2px;
}

@keyframes moveArc {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(calc(50vw - 25px), calc(-50vh + 25px));
    }
    100% {
        transform: translate(calc(100vw - 0px), calc(-100vh + 50px));
    }
}

.myself {
    display: none;
    bottom: -15px;
    color: #f0c419;
    cursor: pointer;
    font-size: 13px;
    position: absolute;
    right: 10px;
}

.old-price {
    text-decoration: line-through;
    color: #8c9aa9;
    margin-right: 5px;
}

@media screen and (max-width: 768px) {
    .recipient-toolbar {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
    }

    .recipient-toolbar-title {
        font-size: 14px;
    }

    .buy-for-myself-btn {
        width: auto;
        text-align: center;
        padding: 5px 10px;
        font-size: 12px;
    }
}

/* ===== buy_section_v9.css ===== */
.buy-section {
    align-items: center;
    padding: 20px;
    position: relative;
}

.buy-section h1 {
    text-align: center;
    margin-bottom: 30px;
}

.sub-text {
    width: 100%;
}

#form_wrapper {
    display: flex;
    justify-content: center;
}

.payment-form {
    margin: 0 auto;
    width: 100%;
    max-width: 400px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-direction: column;
    z-index: 10;
}

.wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
}

.btn-buy {
     background-color: #f0c419;
     border: none;
     color: #0d1117;
     font-weight: bold;
     padding: 12px;
     border-radius: 8px;
     width: 100%;
     margin-top: 10px;
     cursor: pointer;
     transition: background-color 0.3s;
 }

.btn-buy:hover {
    background-color: #e5b014;
}

.btn-buy[disabled] {
    color: #2c2f37;
    background-color: #ffd436;
    opacity: 1;
    cursor: auto;
}

.btn-buy.disabled, .btn-buy[disabled], fieldset[disabled] .btn-buy {
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.65;
    filter: alpha(opacity = 65);
    -webkit-box-shadow: none;
    box-shadow: none;
}

.terms-section {
    font-size: 0.9rem;
    color: #8b949e;
    margin-top: 15px;
}

.terms-section a {
    color: #f0c419;
    text-decoration: none;
}

.terms-section a:hover {
    text-decoration: underline;
}





.tm-field {
    position: relative;
    margin: auto;
    width: 100%;
}

.icon-search:before {
    width: 19px;
    height: 23px;
    background-image: url('/img/search.svg');
    margin: 13px 15px 13px 19px;
    position: absolute;
    pointer-events: none;
    content: '';
    display: inline-block;
    vertical-align: top;
    background-position: 0 center;
    background-repeat: no-repeat;
    background-size: contain;
    color: #d2d2d2;
}

.icon-stars:before {
    position: absolute;
    margin: 11px 12px 12px;
    pointer-events: none;
    width: 24px;
    height: 26px;
    background-image: url('/img/star.svg');
    content: '';
    display: inline-block;
    vertical-align: top;
    background-position: 0 center;
    background-repeat: no-repeat;
    background-size: contain;
}

.tm-search-loading, .tm-search-clear {
    position: absolute;
    top: 0;
    right: 0;
    padding: 14px;
    cursor: pointer;
    transition: visibility 0.2s ease, opacity 0.2s ease;
}

.tm-search-loading {
    visibility: hidden;
    opacity: 0;
}

.tm-input:placeholder-shown ~ .tm-search-clear, .tm-search-input:placeholder-shown ~ .tm-search-clear {
    visibility: hidden;
    opacity: 0;
}

.tm-search-field.found .tm-search-input {
    opacity: 1;
    font-weight: bold;
    cursor: auto;
    pointer-events: none;
}

.tm-stars-price .tm-value.icon-ton:before,
.tm-form-radio-label .tm-value.icon-ton:before {
    width: 15px;
    height: 19px;
    margin-left: -1px;
    margin-right: 4px;
}

.tm-stars-price {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-flex;
    font-size: 15px;
    line-height: 20px;
    padding: 15px 7px;
    margin-right: 42px;
    font-weight: bold;
    transition: visibility 0.2s ease, opacity 0.2s ease;
    color: #fff;
}

.tm-form-radio-label .tm-quantity {
    width: 60px;
    font-weight: normal;
    color: #8c9aa9;
}
.tm-form-radio-label .tm-quantity ~ .tm-value {
    width: 80px;
}

.options-expanded .tm-form-radio-item-wrap.tm-more-options,
.options-collapsed .tm-form-radio-item-wrap.tm-second-option {
    visibility: hidden;
    height: 0;
}

.loading .tm-search-loading {
    visibility: visible;
    opacity: 1;
}
.loading .tm-search-clear,
.loading .tm-search-rlabel {
    visibility: hidden;
    opacity: 0;
}

.tm-search-clear {
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    padding: 12px;
    transition: visibility 0.2s ease, opacity 0.2s ease;
}

.tm-search-error-icon {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    margin: 11px 12px 11px 13px;
    width: 27px;
    height: 26px;
}

.icon-search-clear:before {
    content: '';
    display: inline-block;
    vertical-align: top;
    background-position: 0 center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 22px;
    height: 25px;
    background-image: url(data:image/svg+xml,%3Csvg%20height%3D%2222%22%20viewBox%3D%220%200%2022%2022%22%20width%3D%2222%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m5%2017%2012-12m-12%200%2012%2012%22%20stroke%3D%22%238494a3%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%222%22%20x1%3D%225%22%20x2%3D%2217%22%20y1%3D%225%22%20y2%3D%2217%22%2F%3E%3C%2Fsvg%3E);
}

.error .tm-search-error-icon {
    display: inline-block;
}

.found .tm-search-field-photo {
    display: inline-block;
}

.tm-search-field-photo {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    margin: 7px 7px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    overflow: hidden;
}

.tm-search-field-photo img {
    width: 100%;
    vertical-align: middle;
    border: 0;
}

.play .circle-progress {
    animation: rotate-circle linear 1.5s infinite,
    resize-circle linear 360s infinite;
}

.circle-progress-wrap {
    transform-origin: 50%;
    vertical-align: top;
}

.circle-progress {
    stroke: #8494a3;
    stroke-width: 2px;
    stroke-linecap: round;
    fill: transparent;
    transform: rotateZ(-90deg);
    transform-origin: 50%;
    stroke-dasharray: 62px;
    r: 10px;
}

.tm-search-field-error {
    font-size: 12px;
    line-height: 15px;
    height: 15px;
    margin-top: -13px;
    margin-left: 20px;
    color: #ff5863;
}

@-webkit-keyframes rotate-circle {
    from { transform: rotateZ(-90deg); }
    to   { transform: rotateZ(270deg); }
}
@keyframes rotate-circle {
    from { transform: rotateZ(-90deg); }
    to   { transform: rotateZ(270deg); }
}
@-webkit-keyframes resize-circle {
    from { stroke-dashoffset: 62px; }
    to   { stroke-dashoffset: 6262px; }
}
@keyframes resize-circle {
    from { stroke-dashoffset: 62px; }
    to   { stroke-dashoffset: 6262px; }
}

.icon-search-error:before {
    content: '';
    width: 27px;
    height: 27px;
    display: inline-block;
    vertical-align: top;
    background-position: 0 center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('data:image/svg+xml,%3Csvg%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20width%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Ccircle%20cx%3D%2210%22%20cy%3D%2210%22%20fill%3D%22%23fff%22%20r%3D%229%22%2F%3E%3Cpath%20d%3D%22m10%200c5.52%200%2010%204.48%2010%2010s-4.48%2010-10%2010-10-4.48-10-10%204.48-10%2010-10zm0%2012.75c-.69%200-1.25.56-1.25%201.25s.56%201.25%201.25%201.25%201.25-.56%201.25-1.25-.56-1.25-1.25-1.25zm0-7.75c-.55%200-1%20.45-1%201v5c0%20.55.45%201%201%201s1-.45%201-1v-5c0-.55-.45-1-1-1z%22%20fill%3D%22%23ff5863%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E');
}




.tm-form-radio-item-wrap {
    padding: 0 3px;
    margin: 0 -3px;
    height: 62px;
    transition: all 0.2s ease;
    overflow: hidden;
}

.options-expanded .tm-form-radio-item-wrap.tm-more-options, .options-collapsed .tm-form-radio-item-wrap.tm-second-option {
    visibility: hidden;
    height: 0;
}

.tm-form-radio-item, .tm-form-radio-item-more {
    display: block;
    position: relative;
    padding: 4px 0;
    margin-bottom: 0;
    cursor: pointer;
}

.tm-form-radio-item input.radio {
    position: absolute;
    left: -5000px;
}

.tm-field input {
    font-family: "Inter", sans-serif;
    background-color: #20272c;
    color: #d2d2d2;
    border: none;
    border-radius: 0.5em;
    text-align: left;
    outline: none;
    height: 50px;
    padding: 12px 42px 12px 48px;
    font-size: 16px;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
}

input::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
}

.tm-form-radio-item input.radio:checked ~ .tm-form-radio-label {
    box-shadow: 0 0 0 2px #f0c419;
}

.tm-form-radio-label {
    font-size: 15px;
    padding: 14px 19px;
    border-radius: 8px;
    background: #242e38;
    box-shadow: 0 0 0 0px #f0c419;
    transition: box-shadow 0.2s ease;
    color: #fff;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.tm-form-radio-item input.radio:checked ~ .tm-form-radio-label:before {
    box-shadow: inset 0 0 0 2px #242e38;
    border-color: #f0c419;
}

.tm-form-radio-item input.radio ~ .tm-form-radio-label:before {
    display: inline-block;
    flex-shrink: 0;
    flex-grow: 0;
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #8494a3;
    background-color: #f0c419;
    box-shadow: inset 0 0 0 20px #242e38;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    margin-right: 14px;
}

.tm-form-radio-label .tm-radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tm-form-radio-label svg {
    color: #242e38;
}

.tm-form-radio-label .tm-radio-desc {
    font-weight: normal;
    text-align: right;
    color: #8c9aa9;
    width: 70px;
    margin-left: auto;
}

.tm-form-radio-item-more .tm-form-radio-label {
    display: block;
    text-align: center;
    color: #f0c419;
}

.tm-form-radio-label {
    font-size: 15px;
    padding: 14px 19px;
    border-radius: 8px;
    background: #242e38;
    box-shadow: 0 0 0 0px #f0c419;
    transition: box-shadow 0.2s ease;
    color: #fff;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.rocket-duck-sticker {
    position: absolute;
    bottom: 0;
    left: 0;
    display: none;
    animation: none;
}

div:where(.swal2-container) div:where(.swal2-popup) {
    background: linear-gradient(45deg, #000000, #0f0f0f);
    border-radius: 30px;
}

div:where(.swal2-container) h2:where(.swal2-title) {
    color: #ecae12;
}

.paygates {
    display: flex;
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.paygate {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 136px; /*172px;*/
    background: #181818;
    border-radius: 10px;
    padding: 10px;
    border: 1px solid #3e3e3e;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
}

.paygate:hover {
    border-color: #868686;
    background: #272727;
}

.paygate-not-allowed {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 136px;
    background: #181818;
    border-radius: 10px;
    padding: 10px;
    border: 1px solid #3e3e3e;
    cursor: not-allowed;
    text-decoration: none;
    color: #fff;
    position: relative;
}

.paygate-not-allowed span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.method_logo {
    height: 60px;
}

.method_logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.method_logo-not-allowed {
    height: 60px;
    filter: blur(5px);
}

.method_name-not-allowed {
    filter: blur(5px);
}

.payment-methods-wrapper {
    position: relative;
}

.payment-methods {
    position: absolute;
    bottom: -20px;
    right: 0;
}

.payment-method {
    background: #fff;
    border-radius: 50%;
    padding: 2px;
}

@keyframes moveArc {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(calc(50vw - 25px), calc(-50vh + 25px));
    }
    100% {
        transform: translate(calc(100vw - 0px), calc(-100vh + 50px));
    }
}

.myself {
    display: none;
    bottom: -15px;
    color: #f0c419;
    cursor: pointer;
    font-size: 13px;
    position: absolute;
    right: 10px;
}

.old-price {
    text-decoration: line-through;
    color: #8c9aa9;
    margin-right: 5px;
}

/* ===== buy_section7b30_v9.css ===== */
.buy-section {
    align-items: center;
    padding: 20px;
    position: relative;
}

.buy-section h1 {
    text-align: center;
    margin-bottom: 30px;
}

.sub-text {
    width: 100%;
}

#form_wrapper {
    display: flex;
    justify-content: center;
}

.payment-form {
    margin: 0 auto;
    width: 100%;
    max-width: 400px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-direction: column;
    z-index: 10;
}

.recipient-toolbar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: -4px;
}

.recipient-toolbar-title {
    color: #f6f4eb;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
}

.recipient-toolbar-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.recipient-personal-account-btn,
.buy-for-myself-btn {
    border: 1px solid #ecb117;
    background: rgba(236, 177, 23, 0.12);
    color: #ecb117;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.recipient-personal-account-btn:hover,
.buy-for-myself-btn:hover {
    background: rgba(236, 177, 23, 0.2);
    border-color: #f0c419;
    color: #f0c419;
}

.buy-for-myself-btn:active {
    transform: translateY(1px);
}

.wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
}

.btn-buy {
     background-color: #f0c419;
     border: none;
     color: #0d1117;
     font-weight: bold;
     padding: 12px;
     border-radius: 8px;
     width: 100%;
     margin-top: 10px;
     cursor: pointer;
     transition: background-color 0.3s;
 }

.btn-buy:hover {
    background-color: #e5b014;
}

.btn-buy[disabled] {
    color: #2c2f37;
    background-color: #ffd436;
    opacity: 1;
    cursor: auto;
}

.btn-buy.disabled, .btn-buy[disabled], fieldset[disabled] .btn-buy {
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.65;
    filter: alpha(opacity = 65);
    -webkit-box-shadow: none;
    box-shadow: none;
}

.terms-section {
    font-size: 0.9rem;
    color: #8b949e;
    margin-top: 15px;
}

.terms-section a {
    color: #f0c419;
    text-decoration: none;
}

.terms-section a:hover {
    text-decoration: underline;
}





.tm-field {
    position: relative;
    margin: auto;
    width: 100%;
}

.icon-search:before {
    width: 19px;
    height: 23px;
    background-image: url('../img/search.svg');
    margin: 13px 15px 13px 19px;
    position: absolute;
    pointer-events: none;
    content: '';
    display: inline-block;
    vertical-align: top;
    background-position: 0 center;
    background-repeat: no-repeat;
    background-size: contain;
    color: #d2d2d2;
}

.icon-stars:before {
    position: absolute;
    margin: 11px 12px 12px;
    pointer-events: none;
    width: 24px;
    height: 26px;
    background-image: url('../img/star.svg');
    content: '';
    display: inline-block;
    vertical-align: top;
    background-position: 0 center;
    background-repeat: no-repeat;
    background-size: contain;
}

.tm-search-loading, .tm-search-clear {
    position: absolute;
    top: 0;
    right: 0;
    padding: 14px;
    cursor: pointer;
    transition: visibility 0.2s ease, opacity 0.2s ease;
}

.tm-search-loading {
    visibility: hidden;
    opacity: 0;
}

.tm-input:placeholder-shown ~ .tm-search-clear, .tm-search-input:placeholder-shown ~ .tm-search-clear {
    visibility: hidden;
    opacity: 0;
}

.tm-search-field.found .tm-search-input {
    opacity: 1;
    font-weight: bold;
    cursor: auto;
    pointer-events: none;
}

.tm-stars-price .tm-value.icon-ton:before,
.tm-form-radio-label .tm-value.icon-ton:before {
    width: 15px;
    height: 19px;
    margin-left: -1px;
    margin-right: 4px;
}

.tm-stars-price {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-flex;
    font-size: 15px;
    line-height: 20px;
    padding: 15px 7px;
    margin-right: 42px;
    font-weight: bold;
    transition: visibility 0.2s ease, opacity 0.2s ease;
    color: #fff;
}

.tm-form-radio-label .tm-quantity {
    width: 60px;
    font-weight: normal;
    color: #8c9aa9;
}
.tm-form-radio-label .tm-quantity ~ .tm-value {
    width: 80px;
}

.options-expanded .tm-form-radio-item-wrap.tm-more-options,
.options-collapsed .tm-form-radio-item-wrap.tm-second-option {
    visibility: hidden;
    height: 0;
}

.loading .tm-search-loading {
    visibility: visible;
    opacity: 1;
}
.loading .tm-search-clear,
.loading .tm-search-rlabel {
    visibility: hidden;
    opacity: 0;
}

.tm-search-clear {
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    padding: 12px;
    transition: visibility 0.2s ease, opacity 0.2s ease;
}

.tm-search-error-icon {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    margin: 11px 12px 11px 13px;
    width: 27px;
    height: 26px;
}

.icon-search-clear:before {
    content: '';
    display: inline-block;
    vertical-align: top;
    background-position: 0 center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 22px;
    height: 25px;
    background-image: url(data:image/svg+xml,%3Csvg%20height%3D%2222%22%20viewBox%3D%220%200%2022%2022%22%20width%3D%2222%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m5%2017%2012-12m-12%200%2012%2012%22%20stroke%3D%22%238494a3%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%222%22%20x1%3D%225%22%20x2%3D%2217%22%20y1%3D%225%22%20y2%3D%2217%22%2F%3E%3C%2Fsvg%3E);
}

.error .tm-search-error-icon {
    display: inline-block;
}

.js-stars-search-field.error .tm-search-input,
.js-stars-search-field.error input[name="query"] {
    border: 1px solid #ff5863 !important;
    box-shadow: 0 0 0 1px rgba(255, 88, 99, 0.28);
}

.found .tm-search-field-photo {
    display: inline-block;
}

.tm-search-field-photo {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    margin: 7px 7px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    overflow: hidden;
}

.tm-search-field-photo img {
    width: 100%;
    vertical-align: middle;
    border: 0;
}

.play .circle-progress {
    animation: rotate-circle linear 1.5s infinite,
    resize-circle linear 360s infinite;
}

.circle-progress-wrap {
    transform-origin: 50%;
    vertical-align: top;
}

.circle-progress {
    stroke: #8494a3;
    stroke-width: 2px;
    stroke-linecap: round;
    fill: transparent;
    transform: rotateZ(-90deg);
    transform-origin: 50%;
    stroke-dasharray: 62px;
    r: 10px;
}

.tm-search-field-error {
    font-size: 12px;
    line-height: 15px;
    height: 15px;
    margin-top: -13px;
    margin-left: 20px;
    color: #ff5863;
}

@-webkit-keyframes rotate-circle {
    from { transform: rotateZ(-90deg); }
    to   { transform: rotateZ(270deg); }
}
@keyframes rotate-circle {
    from { transform: rotateZ(-90deg); }
    to   { transform: rotateZ(270deg); }
}
@-webkit-keyframes resize-circle {
    from { stroke-dashoffset: 62px; }
    to   { stroke-dashoffset: 6262px; }
}
@keyframes resize-circle {
    from { stroke-dashoffset: 62px; }
    to   { stroke-dashoffset: 6262px; }
}

.icon-search-error:before {
    content: '';
    width: 27px;
    height: 27px;
    display: inline-block;
    vertical-align: top;
    background-position: 0 center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('data:image/svg+xml,%3Csvg%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20width%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Ccircle%20cx%3D%2210%22%20cy%3D%2210%22%20fill%3D%22%23fff%22%20r%3D%229%22%2F%3E%3Cpath%20d%3D%22m10%200c5.52%200%2010%204.48%2010%2010s-4.48%2010-10%2010-10-4.48-10-10%204.48-10%2010-10zm0%2012.75c-.69%200-1.25.56-1.25%201.25s.56%201.25%201.25%201.25%201.25-.56%201.25-1.25-.56-1.25-1.25-1.25zm0-7.75c-.55%200-1%20.45-1%201v5c0%20.55.45%201%201%201s1-.45%201-1v-5c0-.55-.45-1-1-1z%22%20fill%3D%22%23ff5863%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E');
}




.tm-form-radio-item-wrap {
    padding: 0 3px;
    margin: 0 -3px;
    height: 62px;
    transition: all 0.2s ease;
    overflow: hidden;
}

.options-expanded .tm-form-radio-item-wrap.tm-more-options, .options-collapsed .tm-form-radio-item-wrap.tm-second-option {
    visibility: hidden;
    height: 0;
}

.tm-form-radio-item, .tm-form-radio-item-more {
    display: block;
    position: relative;
    padding: 4px 0;
    margin-bottom: 0;
    cursor: pointer;
}

.tm-form-radio-item input.radio {
    position: absolute;
    left: -5000px;
}

.tm-field input {
    font-family: "Inter", sans-serif;
    background-color: #20272c;
    color: #d2d2d2;
    border: none;
    border-radius: 0.5em;
    text-align: left;
    outline: none;
    height: 50px;
    padding: 12px 42px 12px 48px;
    font-size: 16px;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
}

input::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
}

.tm-form-radio-item input.radio:checked ~ .tm-form-radio-label {
    box-shadow: 0 0 0 2px #f0c419;
}

.tm-form-radio-label {
    font-size: 15px;
    padding: 14px 19px;
    border-radius: 8px;
    background: #242e38;
    box-shadow: 0 0 0 0px #f0c419;
    transition: box-shadow 0.2s ease;
    color: #fff;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.tm-form-radio-item input.radio:checked ~ .tm-form-radio-label:before {
    box-shadow: inset 0 0 0 2px #242e38;
    border-color: #f0c419;
}

.tm-form-radio-item input.radio ~ .tm-form-radio-label:before {
    display: inline-block;
    flex-shrink: 0;
    flex-grow: 0;
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #8494a3;
    background-color: #f0c419;
    box-shadow: inset 0 0 0 20px #242e38;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    margin-right: 14px;
}

.tm-form-radio-label .tm-radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tm-form-radio-label svg {
    color: #242e38;
}

.tm-form-radio-label .tm-radio-desc {
    font-weight: normal;
    text-align: right;
    color: #8c9aa9;
    width: 70px;
    margin-left: auto;
}

.tm-form-radio-item-more .tm-form-radio-label {
    display: block;
    text-align: center;
    color: #f0c419;
}

.tm-form-radio-label {
    font-size: 15px;
    padding: 14px 19px;
    border-radius: 8px;
    background: #242e38;
    box-shadow: 0 0 0 0px #f0c419;
    transition: box-shadow 0.2s ease;
    color: #fff;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.rocket-duck-sticker {
    position: absolute;
    bottom: 0;
    left: 0;
    display: none;
    animation: none;
}

div:where(.swal2-container) div:where(.swal2-popup) {
    background: linear-gradient(45deg, #000000, #0f0f0f);
    border-radius: 30px;
}

div:where(.swal2-container) h2:where(.swal2-title) {
    color: #ecae12;
}

.paygates {
    display: flex;
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.paygate {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 136px; /*172px;*/
    background: #181818;
    border-radius: 10px;
    padding: 10px;
    border: 1px solid #3e3e3e;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
}

.paygate:hover {
    border-color: #868686;
    background: #272727;
}

.paygate-not-allowed {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 136px;
    background: #181818;
    border-radius: 10px;
    padding: 10px;
    border: 1px solid #3e3e3e;
    cursor: not-allowed;
    text-decoration: none;
    color: #fff;
    position: relative;
}

.paygate-not-allowed span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.method_logo {
    height: 60px;
}

.method_logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.method_logo-not-allowed {
    height: 60px;
    filter: blur(5px);
}

.method_name-not-allowed {
    filter: blur(5px);
}

.payment-methods-wrapper {
    position: relative;
}

.payment-methods {
    position: absolute;
    bottom: -20px;
    right: 0;
}

.payment-method {
    background: #fff;
    border-radius: 50%;
    padding: 2px;
}

@keyframes moveArc {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(calc(50vw - 25px), calc(-50vh + 25px));
    }
    100% {
        transform: translate(calc(100vw - 0px), calc(-100vh + 50px));
    }
}

.myself {
    display: none;
    bottom: -15px;
    color: #f0c419;
    cursor: pointer;
    font-size: 13px;
    position: absolute;
    right: 10px;
}

.old-price {
    text-decoration: line-through;
    color: #8c9aa9;
    margin-right: 5px;
}

@media screen and (max-width: 768px) {
    .recipient-toolbar {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
    }

    .recipient-toolbar-actions {
        width: auto;
        flex-wrap: nowrap;
        gap: 6px;
    }

    .recipient-personal-account-btn,
    .buy-for-myself-btn {
        flex: 0 0 auto;
        text-align: center;
        padding: 5px 9px;
        font-size: 11px;
    }
}

/* ===== info_section_v2026_v9.css ===== */
.info-section {
    display: flex;
    flex-direction: column;
    padding: 20px;
    margin-bottom: 20px;
}

.info-section h1 {
    margin-bottom: 0;
}

.info-content {
    display: flex;
    justify-content: space-between;
}

.info-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 60%;
    color: #8b949e;
    font-size: 0.9rem;
    line-height: 1.5;
}

.info-section p {
    color: #8b949e;
    font-size: 0.9rem;
    line-height: 1.5;
}

@media screen and (max-width: 767px) {
    .info-section h1 {
        margin-bottom: 20px;
    }
}

/* ===== info_section_v9.css ===== */
.info-section {
    display: flex;
    flex-direction: column;
    padding: 20px;
    margin-bottom: 20px;
}

.info-section h1 {
    margin-bottom: 0;
}

.info-content {
    display: flex;
    justify-content: space-between;
}

.info-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 60%;
    color: #8b949e;
    font-size: 0.9rem;
    line-height: 1.5;
}

.info-section p {
    color: #8b949e;
    font-size: 0.9rem;
    line-height: 1.5;
}

@media screen and (max-width: 767px) {
    .info-section h1 {
        margin-bottom: 20px;
    }
}

/* ===== leaderboard_v9.css ===== */
/* Leaderboard Section Styles */
.leaderboard-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.leaderboard-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.leaderboard-title {
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #ffd76a 0%, #ffb84d 100%);
    -webkit-background-clip: text;
background-clip: text;-webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    animation: fadeInDown 0.8s ease;
}

.leaderboard-subtitle {
    color: #8b949e;
    font-size: 1.1rem;
    animation: fadeInUp 0.8s ease;
    margin-bottom: 15px;
}

/* Refresh Button */
.refresh-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ffd76a 0%, #ffb84d 100%);
    color: #0d1117;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 106, 0.3);
}

.refresh-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 106, 0.5);
}

.refresh-btn:active:not(:disabled) {
    transform: translateY(0);
}

.refresh-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.refresh-btn svg {
    animation: none;
}

.refresh-btn:active:not(:disabled) svg {
    animation: spin 0.5s ease-in-out;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Podium Container */
.podium-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 60px;
    padding: 0 20px;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar but keep functionality */
.podium-container::-webkit-scrollbar {
    height: 0;
    display: none;
}

.podium-container {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

/* Podium Cards */
.podium-card {
    position: relative;
    background: linear-gradient(135deg, #161b22 0%, #0d1117 100%);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 220px;
    animation: slideUp 0.8s ease;
}

.podium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 106, 0.2);
}

/* 1st Place - Gold */
.podium-1st {
    order: 2;
    border-color: #ffd76a;
    min-height: 320px;
}

.podium-1st:hover {
    box-shadow: 0 20px 50px rgba(255, 215, 106, 0.5);
}

/* 2nd Place - Silver */
.podium-2nd {
    order: 1;
    border-color: #c0c0c0;
    min-height: 280px;
}

.podium-2nd:hover {
    box-shadow: 0 15px 40px rgba(192, 192, 192, 0.4);
}

/* 3rd Place - Bronze */
.podium-3rd {
    order: 3;
    border-color: #cd7f32;
    min-height: 280px;
}

.podium-3rd:hover {
    box-shadow: 0 15px 40px rgba(205, 127, 50, 0.4);
}

/* Crown for 1st place */
.podium-crown {
    font-size: 3rem;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    animation: float 3s ease-in-out infinite;
}

/* Podium Badge */
.podium-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-gold {
    background: linear-gradient(135deg, #ffd76a 0%, #ffb84d 100%);
    color: #0d1117;
    box-shadow: 0 5px 15px rgba(255, 215, 106, 0.4);
}

.badge-silver {
    background: linear-gradient(135deg, #e8e8e8 0%, #c0c0c0 100%);
    color: #0d1117;
    box-shadow: 0 5px 15px rgba(192, 192, 192, 0.4);
}

.badge-bronze {
    background: linear-gradient(135deg, #f4a460 0%, #cd7f32 100%);
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(205, 127, 50, 0.4);
}

/* Avatar */
.avatar-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #ffd76a;
    box-shadow: 0 8px 20px rgba(255, 215, 106, 0.3);
    background: #161b22;
    position: relative;
}

.podium-1st .avatar-wrapper {
    width: 140px;
    height: 140px;
}

.user-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    background: #0d1117;
}

/* Panda logo styling when used as fallback */
.user-avatar[src*="logo.webp"] {
    object-fit: contain;
    padding: 15px;
    background: linear-gradient(135deg, #161b22 0%, #0d1117 100%);
}

.user-avatar:hover {
    transform: scale(1.1);
}

/* Loading state for avatars */
.avatar-wrapper.loading {
    background: linear-gradient(90deg, #161b22 25%, #30363d 50%, #161b22 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* Username */
.username {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: bold;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
    text-align: center;
    padding: 0 5px;
    line-height: 1.2;
}

/* Stars Count */
.stars-count {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.5rem;
    color: #ffd76a;
    font-weight: bold;
}

.star-icon {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 2px 8px rgba(255, 215, 106, 0.5));
}

/* Rankings Container */
.rankings-container {
    margin-top: 60px;
}

.rankings-header {
    text-align: center;
    margin-bottom: 30px;
}

.rankings-header h2 {
    font-size: 2rem;
    color: #ffffff;
    font-weight: bold;
}

/* Rankings List */
.rankings-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Ranking Item */
.ranking-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #161b22 0%, #0d1117 100%);
    border: 1px solid #30363d;
    border-radius: 15px;
    padding: 20px 25px;
    transition: all 0.3s ease;
    animation: fadeIn 0.5s ease;
}

.ranking-item:hover {
    border-color: #ffd76a;
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(255, 215, 106, 0.2);
}

/* Left Side */
.ranking-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.rank-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffd76a;
    min-width: 40px;
    text-align: center;
}

.ranking-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #30363d;
    transition: all 0.3s ease;
    background: #161b22;
}

.ranking-item:hover .ranking-avatar {
    border-color: #ffd76a;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 215, 106, 0.3);
}

/* Panda logo as fallback */
.user-avatar[src*="logo.webp"],
.ranking-avatar[src*="logo.webp"] {
    object-fit: contain;
    padding: 8px;
    background: linear-gradient(135deg, #0d1117 0%, #161b22 100%);
}

.ranking-username {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 500;
    max-width: 200px;
    overflow-wrap: break-word;
    word-break: break-word;
}

/* Right Side */
.ranking-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ranking-stars {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.3rem;
    color: #ffd76a;
    font-weight: bold;
}

.ranking-star-icon {
    width: 24px;
    height: 24px;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* Responsive Design */
@media screen and (max-width: 768px) {
    .leaderboard-title {
        font-size: 2rem;
    }

    .leaderboard-subtitle {
        font-size: 1rem;
    }
    
    .refresh-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .podium-container {
        gap: 10px;
        padding: 0 10px;
        justify-content: flex-start;
    }

    .podium-card {
        min-width: 140px;
        max-width: 140px;
        padding: 20px 15px;
        flex-shrink: 0;
    }

    .podium-1st {
        min-height: 260px;
    }

    .podium-2nd,
    .podium-3rd {
        min-height: 230px;
    }

    .avatar-wrapper {
        width: 80px;
        height: 80px;
    }

    .podium-1st .avatar-wrapper {
        width: 100px;
        height: 100px;
    }

    .username {
        font-size: 1rem;
    }

    .stars-count {
        font-size: 1.1rem;
    }

    .star-icon {
        width: 20px;
        height: 20px;
    }

    .podium-crown {
        font-size: 2rem;
        top: -20px;
    }

    .podium-badge {
        padding: 6px 14px;
        font-size: 0.8rem;
    }

    .ranking-item {
        padding: 15px 20px;
    }

    .ranking-left {
        gap: 15px;
    }

    .rank-number {
        font-size: 1.2rem;
        min-width: 30px;
    }

    .ranking-avatar {
        width: 50px;
        height: 50px;
    }

    .ranking-username {
        font-size: 1rem;
    }

    .ranking-stars {
        font-size: 1.1rem;
    }

    .ranking-star-icon {
        width: 20px;
        height: 20px;
    }
}

@media screen and (max-width: 480px) {
    .leaderboard-section {
        padding: 30px 10px;
    }

    .leaderboard-title {
        font-size: 1.6rem;
    }
    
    .refresh-btn {
        padding: 6px 12px;
        font-size: 0.85rem;
    }

    .podium-container {
        gap: 8px;
        padding: 0 5px;
        justify-content: flex-start;
    }

    .podium-card {
        min-width: 110px;
        max-width: 110px;
        padding: 15px 10px;
        flex-shrink: 0;
    }

    .podium-1st {
        min-height: 230px;
    }

    .podium-2nd,
    .podium-3rd {
        min-height: 200px;
    }

    .avatar-wrapper {
        width: 60px;
        height: 60px;
        border-width: 3px;
    }

    .podium-1st .avatar-wrapper {
        width: 75px;
        height: 75px;
    }

    .username {
        font-size: 0.85rem;
        max-width: 95px;
    }

    .stars-count {
        font-size: 0.95rem;
    }

    .star-icon {
        width: 18px;
        height: 18px;
    }

    .podium-crown {
        font-size: 1.5rem;
        top: -15px;
    }

    .podium-badge {
        padding: 5px 12px;
        font-size: 0.7rem;
    }
}

/* Loading State */
.loading-shimmer {
    background: linear-gradient(90deg, #161b22 25%, #30363d 50%, #161b22 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Image fade in animation */
.user-avatar,
.ranking-avatar {
    opacity: 0;
    animation: fadeInImage 0.5s ease forwards;
}

@keyframes fadeInImage {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== login5e1f_v9.css ===== */
.login-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 55vh;
}

.login-section-wrapper {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tgme_widget_login_button {
    background-color: #f0c419 !important;
}

.telegram-login-button-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.telegram-oauth-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 999px;
    padding: 12px 22px;
    min-width: 260px;
    background: linear-gradient(180deg, #4dabf7 0%, #2a7fd5 100%);
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    box-shadow: 0 8px 18px rgba(77, 171, 247, 0.25);
}

.telegram-oauth-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.04);
    box-shadow: 0 10px 24px rgba(77, 171, 247, 0.32);
}

.telegram-oauth-btn:active {
    transform: translateY(0);
}

.telegram-oauth-btn-icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
}

.telegram-oauth-btn-icon svg {
    width: 100%;
    height: 100%;
}

.terms-section {
    font-size: 0.9rem;
    color: #8b949e;
    margin-top: 15px;
}

.login-section-wrapper a {
    color: #f0c419;
    text-decoration: none;
}

.referrer-wrapper {
    width: 100%;
    color: #fff;
    display: flex;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 10px 20px 20px;
    margin-bottom: 20px;
}

.referrer-wrapper p {
    font-weight: 900;
}

.referrer-info-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.referrer-img-wrapper {
    width: 40px;
    height: 40px;
}

.referrer-img {
    width: 40px;
    height: 40px;
    border-radius: 20px;
}

.referrer-username {
    max-width: 250px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.referrer-notice {
    font-size: 0.9rem;
    color: #8b949e;
    margin-top: 15px;
}

@media screen and (max-width: 820px) {
    .login-section-wrapper {
        width: 100%;
        padding: 0 10px;
    }

    .telegram-oauth-btn {
        width: 100%;
        min-width: 0;
    }
}

/* ===== payment_result_v2026_v9.css ===== */
.payment_result-banner-wrapper {
    margin: 0 10px;
}

.payment_banner {
    height: 70px;
    border-radius: 10px;
    padding-left: 20px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    line-height: 16px;
}

.payment_banner-success::before,
.payment_banner-failure::before {
    content: '';
    display: block;
    min-width: 32px;
    min-height: 32px;
    background-size: 32px 32px;
    background-repeat: no-repeat;
}

.payment_banner-success {
    border: solid 3px #31922d;
    background-color: #0aff001a;
}
.payment_banner-success::before {
    background-image: url('/img/payment-success.svg');
}

.payment_banner-failure {
    border: solid 3px #c43b3b;
    background-color: #ff00001a;
}
.payment_banner-failure::before {
    background-image: url('/img/payment-failure.svg');
}

@media screen and (max-width: 767px) {
    .payment_banner {
        font-size: 14px;
        padding-right: 5px;
    }
}

/* ===== payment_result_v9.css ===== */
.payment_result-banner-wrapper {
    margin: 0 10px;
}

.payment_banner {
    height: 70px;
    border-radius: 10px;
    padding-left: 20px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    line-height: 16px;
}

.payment_banner-success::before,
.payment_banner-failure::before {
    content: '';
    display: block;
    min-width: 32px;
    min-height: 32px;
    background-size: 32px 32px;
    background-repeat: no-repeat;
}

.payment_banner-success {
    border: solid 3px #31922d;
    background-color: #0aff001a;
}
.payment_banner-success::before {
    background-image: url('../img/payment-success.svg');
}

.payment_banner-failure {
    border: solid 3px #c43b3b;
    background-color: #ff00001a;
}
.payment_banner-failure::before {
    background-image: url('../img/payment-failure.svg');
}

@media screen and (max-width: 767px) {
    .payment_banner {
        font-size: 14px;
        padding-right: 5px;
    }
}

/* ===== profile_introducing_section_v2026_v9.css ===== */
.profile_introducing-section {
    display: flex;
    padding: 20px 20px 0;
    gap: 10px;
}

.profile_introducing-section h1 {
    text-align: end;
    margin-bottom: 20px;
}

.profile_introducing-section b {
    font-weight: 900;
    color: #ecb117;
}

.profile_introducing-section p {
    color: #eaeaea;
    font-size: 0.9rem;
    line-height: 1.5;
    text-align-last: end;
    hyphens: auto;
}

.profile_introducing-section .star-img {
    margin-right: 10px;
    width: 20px;
    height: 20px;
    min-width: 20px;
    flex: 0 0 20px;
}

.profile-img {
    width: 300px;
    max-width: 430px;
}

.profile_introducing-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.profile_introducing-content div {
    flex: 1;
}

body.ar .profile_introducing-content div {
    flex: 0;
}

.profile_introducing-content-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.profile_introducing-section .box {
    --clr-shadow__border: #956700;
    --clr-text: #F6F4EB;
    --clr-space: #120e1e;
    --clr-space-gr: #271950;
    --clr-star: #E9F8F9;
    position: relative;
    outline: 1px solid var(--clr-shadow__border);
    border-radius: 30px;
    margin-top: 20px;
}

.profile_introducing-section .button {
    display: block;
    text-align: center;
    width: 100%;
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 0.2rem;
    background: transparent;
    padding: 15px;
    border: none;
    cursor: pointer;
    color: var(--clr-text);
}

.profile_introducing-section .personal-account-row {
    width: auto;
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.profile_introducing-section .button-personal-account {
    display: inline-block;
    width: auto;
    min-width: 0;
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 0.2rem;
    text-transform: none;
    line-height: normal;
    text-align: center;
    padding: 15px 22px;
    border: none;
    outline: none;
    border-radius: 0;
    background: transparent;
    color: var(--clr-text);
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.2s ease;
}

.profile_introducing-section .personal-account-row .box {
    margin-top: 0;
    width: fit-content;
    max-width: 100%;
}

.profile_introducing-section .button-personal-account:hover {
    transform: translateY(-1px);
}

.profile_introducing-section .button-personal-account:active {
    transform: translateY(0);
}

.profile_introducing-section .space {
    border-radius: 30px;
    width: 100%;
    height: 100%;
    bottom: 0%;
    gap: 1.5rem;
    transition: 0.5s ease-in-out;
    z-index: -1;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    display: flex;
    background: linear-gradient( 160deg, var(--clr-space), var(--clr-space-gr));
}

.profile_introducing-section .box:hover .space {
    opacity: 1;
}

.profile_introducing-section .star {
    height: 4rem;
    width: 0.3rem;
    transition: 0.5s;
    border-radius: 50px;
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    position: relative;
    background-color: var(--clr-star);
    animation: space-animation calc(0.1s * var(--i)) linear infinite;
}

@keyframes space-animation {
    0% {
        transform: rotate(-30deg) translateY(calc(-52% * var(--i)));
    }

    100% {
        transform: rotate(-30deg) translateY(calc(52% * var(--i)));
    }
}

@media screen and (max-width: 768px) {
    .profile_introducing-section {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .profile-img {
        width: 100%;
        max-width: unset;
    }

    .profile_introducing-section .personal-account-row {
        justify-content: flex-end;
        margin-top: 20px;
    }

    .profile_introducing-section .button-personal-account {
        width: auto;
        min-width: 0;
        text-align: center;
    }

    .profile_introducing-section .personal-account-row .box {
        width: fit-content;
        max-width: 100%;
    }
}

/* ===== profile_introducing_section_v9.css ===== */
.profile_introducing-section {
    display: flex;
    padding: 20px 20px 0;
    gap: 10px;
}

.profile_introducing-section h1 {
    text-align: end;
    margin-bottom: 20px;
}

.profile_introducing-section b {
    font-weight: 900;
    color: #ecb117;
}

.profile_introducing-section p {
    color: #eaeaea;
    font-size: 0.9rem;
    line-height: 1.5;
    text-align-last: end;
    hyphens: auto;
}

.profile_introducing-section .star-img {
    margin-right: 10px;
    width: 20px;
    height: 20px;
    min-width: 20px;
    flex: 0 0 20px;
}

.profile-img {
    width: 300px;
    max-width: 430px;
}

.profile_introducing-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.profile_introducing-content div {
    flex: 1;
}

body.ar .profile_introducing-content div {
    flex: 0;
}

.profile_introducing-content-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.profile_introducing-section .box {
    --clr-shadow__border: #956700;
    --clr-text: #F6F4EB;
    --clr-space: #120e1e;
    --clr-space-gr: #271950;
    --clr-star: #E9F8F9;
    position: relative;
    outline: 1px solid var(--clr-shadow__border);
    border-radius: 30px;
    margin-top: 20px;
}

.profile_introducing-section .button {
    display: block;
    text-align: center;
    width: 100%;
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 0.2rem;
    background: transparent;
    padding: 15px;
    border: none;
    cursor: pointer;
    color: var(--clr-text);
}

.profile_introducing-section .space {
    border-radius: 30px;
    width: 100%;
    height: 100%;
    bottom: 0%;
    gap: 1.5rem;
    transition: 0.5s ease-in-out;
    z-index: -1;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    display: flex;
    background: linear-gradient( 160deg, var(--clr-space), var(--clr-space-gr));
}

.profile_introducing-section .box:hover .space {
    opacity: 1;
}

.profile_introducing-section .star {
    height: 4rem;
    width: 0.3rem;
    transition: 0.5s;
    border-radius: 50px;
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    position: relative;
    background-color: var(--clr-star);
    animation: space-animation calc(0.1s * var(--i)) linear infinite;
}

@keyframes space-animation {
    0% {
        transform: rotate(-30deg) translateY(calc(-52% * var(--i)));
    }

    100% {
        transform: rotate(-30deg) translateY(calc(52% * var(--i)));
    }
}

@media screen and (max-width: 768px) {
    .profile_introducing-section {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .profile-img {
        width: 100%;
        max-width: unset;
    }
}

/* ===== profile_menu_v9.css ===== */
.profile-menu-wrapper {
    margin-top: 20px;
}

.menu-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.menu-item {
    width: 100%;
    height: 35px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    padding: 0 5px;
    border-radius: 6px;
    transition: .2s;
}

body.fr .menu-item {
    font-size: 14px;
}

.menu-item:hover {
    background-color: #ffffff12;
}

.menu-item-selected {
    background-color: #ffffff12;
}

.menu-item-a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    color: #ecb342;
}

.menu-item-a-selected {
    cursor: default;
}

/* ===== profile_nav_v9.css ===== */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-brand .store-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.navbar-brand .store-name-img {
    width: auto;
    height: 46px;
    max-width: 300px;
    transform: translateX(-3px);
    object-position: left center;
    object-fit: contain;
}

.item-a {
    position: relative;
}

.item-a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    border-radius: 4px;
    background-color: #fff;
    bottom: 0;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .3s ease-in-out;
}

.item-a:hover::before {
    transform-origin: left;
    transform: scaleX(1);
}

nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 255px;
    width: 100%;
}

.navbar-wrapper {
    display: flex;
    justify-content: space-around;
    height: 60px;
    gap: 50px;
}

.navbar-sub-wrapper {
    display: flex;
    align-items: flex-start;
}

.navbar-items-wrapper {
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 20px;
}

.item-default {
    width: max-content;
    height: 100%;
    display: flex;
    align-items: center;
}

.item {
    font-size: 16px;
    padding: 8px 0;
    color: #fff;
}

.item-selected {
    cursor: pointer;
}

.lang-bar-wrapper {
    position: relative;
}

.item-lang {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 3px;
    transition: .2s;
}

.item-lang:hover {
    color: #ffd528;
}

.lang-items-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.lang-items-wrapper {
    background-color: #0d1117;
    position: absolute;
    z-index: 10;
    top: 15px;
    right: 50%;
    transform: translate(55%, 30%);
    display: none;
    box-shadow: #8b949e 0px 0px 2px 0px;
    border-radius: 15px;
    width: 130px;
    padding: 20px 0;
}

.burger-btn {
    display: none;
    width: 30px;
    height: 30px;
}

.getUp__wrapper {
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 80px;
    right: 100px;
    z-index: 20;
}

.getUp__arrowUp {
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background-color: #191b20;
    box-shadow: #ffd528 0px 0px 5px 0px;
}

.mobile-menu-container {
    position: absolute;
    top: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(4px);
    display: none;
}

.mobile-menu-wrapper {
    width: 95%;
    margin: 50px auto 0;
    background-color: #0d1117;
    border-radius: 50px;
    padding: 20px 30px;
    box-shadow: #8b949e 0 0 5px 0px;
}

.mobile-menu-header {
    display: flex;
    justify-content: flex-end;
}

.mobile-menu-cross {
    width: 30px;
    height: 30px;
}

.mobile-menu-body {
    width: 100%;
    height: 100%;
}

.mobile-menu-title {
    color: #d4c9c9;
}

.mobile-menu-ul {
    display: flex;
    flex-direction: column;
    margin: 20px 0;
}

.mobile-menu-li {
    padding: 20px 0 5px;
}

.mobile-menu-body ul hr {
    width: 100%;
}

.mobile-menu-a {
    text-decoration: none;
    color: #fff;
}

.mobile-menu-profile-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.mobile-menu-a-profile {
    text-decoration: none;
    color: #fff;
    border: solid #fff 1px;
    border-radius: 20px;
    padding: 10px 20px;
    transition: .2s;
}

.mobile-menu-a-profile:hover {
    background-color: #fff;
    color: #000;
}

.navbar-profiler {
    gap: 10px;
}

.separator {
    width: 1px;
    height: 50%;
    border: solid #fff 1px;
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    nav {
        padding: 20px 10px;
    }
}

@media screen and (max-width: 820px) {
    nav {
        padding: 20px 30px;
        justify-content: space-between;
    }

    .navbar-wrapper {
        display: none;
    }

    .burger-btn {
        display: block;
    }

    .getUp__wrapper {
        right: 30px;
    }

    .navbar-items-wrapper {
        padding: 0;
    }

    .navbar-sub-wrapper {
        justify-content: center;
    }
}

/* ===== profile_v9.css ===== */
.icon {
    color: #242e38;
}

.profile-section {
    min-height: 55vh;
    display: flex;
    gap: 50px;
}

.profile-section-main-wrapper {
    display: flex;
}

.profile-section-main {
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    max-height: fit-content;
}

.profile-info-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.tg-info-wrapper {
    width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.img {
    width: 100px;
    border-radius: 50%;
    box-shadow: #e89f10 0px 0px 10px 0px;
}

.at-symbol {
    font-size: 16px;
}

.username {
    font-size: 18px;
    font-weight: 900;
    background: linear-gradient(90deg, #f0c419, #e58f0d);
    -webkit-background-clip: text;
background-clip: text;-webkit-text-fill-color: transparent;
}

.stats-wrapper {
    width: 100%;
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.5;
}

.stats-order-info {
    margin-top: 15px;
}

.stats-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.stats-name {
    font-weight: 700;
}

.stats {
    display: flex;
    align-items: center;
    gap: 5px;
    font-style: italic;
    font-weight: 700;
}

.stats-stars {
    font-style: normal;
    font-weight: 900;
    color: #b1ff7f;
}

.stats-item-level {
    margin-top: 5px;
}

.stats-level {
    font-style: normal;
}

.stats-level-starter {
    color: #9aa0a6;
}

.stats-level-bronze {
    color: #cd7f32;
}

.stats-level-silver {
    color: #c0c0c0;
}

.stats-level-gold {
    color: #ffd700;
}

.stats-level-platinum {
    color: #eedfc2;
}

.stats-level-diamond {
    color: #00d1ff;
}

.level-info {
    width: 18px;
    height: 18px;
    position: relative;
}

.level-info-svg:hover ~ .level-tooltip {
    display: flex;
}

.level-tooltip {
    position: absolute;
    background-color: #000000e6;
    width: 150px;
    padding: 10px;
    border-radius: 8px;
    display: none;
    flex-direction: column;
    align-items: center;
    color: #fff;
    top: 28px;
    left: -66px;
}

.level-tooltip::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #000000e6;
    position: absolute;
    top: -6px;
}

body.es .level-tooltip span, body.fr .level-tooltip span {
    font-size: 13px;
}

.level-tooltip .discount {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.profile-section-content-wrapper {
    display: flex;
    width: 100%;
}

.profile-section-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 20px;
}

.profile-section-content .payment-form {
    max-width: 380px;
    width: 100%;
    gap: 0;
    padding: 0 20px;
}

.profile-section-content .terms-section {
    display: none;
}

.profile-section-content .wrapper {
    gap: 0;
}

.profile-section-content .btn-buy {
    margin: 0;
}

.profile-section-content .tm-search-field-error {
    margin: 2px 0 2px 20px;
    align-self: baseline;
}

.profile-section-content .myself {
    display: block;
}

.profile-section-content .tm-form-radio-label .tm-radio-desc {
    width: 100%;
    color: #21c500;
}

.profile-section-content .js-cur-price {
    margin-right: 8px;
    color: #8896a5;
    text-decoration: line-through;
}

.profile-section-content .js-discount-price {
    color: #21c500;
}

.empty-no-data-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #797676;
    gap: 10px;
    font-weight: 900;
}

@media screen and (max-width: 1024px) {
    .profile-section {
        flex-direction: column;
    }

    .profile-section-main {
        width: 100%;
    }
}

@media screen and (max-width: 576px) {
    .profile-section-main-wrapper {
        padding: 0 10px;
    }

    .profile-section-content-wrapper {
        padding: 0 10px;
    }

    .level-tooltip {
        top: -64px;
        left: -160px;
    }

    .level-tooltip::before {
        border-right: unset;
        border-top: 6px solid transparent;
        border-left: 6px solid #000000e6;
        border-bottom: 6px solid transparent;
        top: 67px;
        right: -6px;
    }
}

/* ===== referral_program_v9.css ===== */
.section-referral-program {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tm-field {
    position: relative;
    margin: auto;
    width: 100%;
}

.icon-referral:before {
    width: 24px;
    height: 24px;
    background-image: url(/img/referral_program.svg);
    margin: 13px 15px;
    position: absolute;
    pointer-events: none;
    content: '';
    display: inline-block;
    vertical-align: top;
    background-position: 0 center;
    background-repeat: no-repeat;
    background-size: contain;
    color: #d2d2d2;
}

.tm-field input {
    font-family: "Inter", sans-serif;
    background-color: #20272c;
    color: #d2d2d2;
    border: none;
    border-radius: 0.5em;
    text-align: left;
    outline: none;
    height: 50px;
    padding: 12px 42px 12px 48px;
    font-size: 16px;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
}

.tm-input:placeholder-shown ~ .tm-referral-copy, .tm-referral-input:placeholder-shown ~ .tm-referral-copy {
    visibility: hidden;
    opacity: 0;
}

.tm-referral-copy {
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    padding: 12px;
    transition: visibility 0.2s ease, opacity 0.2s ease;
}

.icon-referral-copy:before {
    content: '';
    display: inline-block;
    vertical-align: top;
    background-position: 0 center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 22px;
    height: 25px;
    background-image: url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M21%208C21%206.34315%2019.6569%205%2018%205H10C8.34315%205%207%206.34315%207%208V20C7%2021.6569%208.34315%2023%2010%2023H18C19.6569%2023%2021%2021.6569%2021%2020V8ZM19%208C19%207.44772%2018.5523%207%2018%207H10C9.44772%207%209%207.44772%209%208V20C9%2020.5523%209.44772%2021%2010%2021H18C18.5523%2021%2019%2020.5523%2019%2020V8Z%22%20fill%3D%22%238494a3%22%2F%3E%3Cpath%20d%3D%22M6%203H16C16.5523%203%2017%202.55228%2017%202C17%201.44772%2016.5523%201%2016%201H6C4.34315%201%203%202.34315%203%204V18C3%2018.5523%203.44772%2019%204%2019C4.55228%2019%205%2018.5523%205%2018V4C5%203.44772%205.44772%203%206%203Z%22%20fill%3D%22%238494a3%22%2F%3E%3C%2Fsvg%3E);
}
.copied.icon-referral-copy:before {
    background-image: url(data:image/svg+xml,%3Csvg%20fill%3D%22%2300ff59%22%20viewBox%3D%220%200%2064%2064%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M56.103%2C16.824l-33.296%2C33.297l-14.781%2C-14.78l2.767%2C-2.767l11.952%2C11.952l30.53%2C-30.53c0.943%2C0.943%201.886%2C1.886%202.828%2C2.828Z%22%20fill-rule%3D%22nonzero%22%2F%3E%3C%2Fsvg%3E);
}

.referral-link-wrapper {
    background-color: #0d1117;
    border-radius: 0.5em;
    padding: 15px;
    color: #fff;
    font-weight: 900;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.balance-wrapper {
    display: flex;
    color: #fff;
    font-weight: 900;
    background-color: #0d1117;
    border-radius: 0.5em;
    padding: 10px;
}

.balance-item-wrapper {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 0 5px;
}

.stars-wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
}

.referral-balance {
    flex: 1;
}

.total-balance {
    flex: 0.7;
}

.referral-wrapper {
    width: 100%;
    height: 100%;
    padding: 10px;
    border-radius: 0.5em;
    display: flex;
    flex-direction: column;
    color: #fff;
}

.referral-record-row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 30px;
}
.thead {
    color: #8b949e;
}

.referral-record-row a {
    color: #21c500;
    max-width: 250px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.referral-record-row div {
    max-width: 250px;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    justify-content: center;
}

.referral-link {
    justify-content: start !important;
}

.referral-wrapper hr {
    width: 100%;
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(255, 213, 40, 0), rgba(255, 213, 40, 0.10), rgba(255, 213, 40, 0));
}

.balance-hr {
    width: 100%;
    display: none;
}

.withdraw-wrapper {
    display: flex;
    gap: 10px;
}

.withdraw-btn-wrapper {
    position: relative;
}

.withdraw-btn {
    background-color: #f0c419;
    border: none;
    color: #0d1117;
    font-weight: bold;
    padding: 8px;
    border-radius: 8px;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.3s;
}
.withdraw-btn:hover {
    background-color: #e5b014;
}

.withdraw-btn[disabled] {
    color: #2c2f37;
    background-color: #ffd436;
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.65;
    box-shadow: none;
}

.withdraw-btn-wrapper:hover .withdraw-tooltip {
    display: flex;
}

.withdraw-tooltip {
    position: absolute;
    background-color: #000000e6;
    width: 300px;
    padding: 10px;
    border-radius: 8px;
    display: none;
    flex-direction: column;
    align-items: center;
    color: #fff;
    bottom: 45px;
    left: -110px;
    font-size: 14px;
    font-weight: normal;
}

.withdraw-tooltip::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #000000e6;
    position: absolute;
    top: 34px;
}

body.fr .withdraw-tooltip {
    width: 330px;
    left: -140px;
}
body.fr .withdraw-tooltip::before {
    right: 155px;
}

@media screen and (max-width: 768px) {
    .balance-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .balance-hr {
        display: block;
    }
}

@media screen and (max-width: 576px) {
    .withdraw-tooltip {
        left: -260px;
    }

    .withdraw-tooltip::before {
        right: 10px;
    }
}

/* ===== stars_banner_v2026_v9.css ===== */
.star-banner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    /*background: linear-gradient(145deg, #1e242c, #161b22);*/
    padding: 100px 0;
    /*border-radius: 16px;*/
    /*box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);*/
    overflow: hidden;
    /*margin-bottom: 10px;*/
}

.main-star img {
    position: relative;
    width: 170px;
    animation: pulse 3s infinite ease-in-out;
    z-index: 2;
    /*filter: drop-shadow(0 0 5px #f0c419);*/
    pointer-events: none;
    user-select: none;
}

.lottie-on-top {
    position: relative; /* Или absolute, если нужно точно позиционировать */
    z-index: 10; /* Убедитесь, что значение выше, чем у других элементов */
    pointer-events: none; /* Чтобы элемент не блокировал взаимодействие с другими элементами */
}

.star-min-sticker {
    position: relative;
    animation: pulse 3s infinite ease-in-out;
    z-index: 2;
    /*filter: drop-shadow(0 0 5px #f0c419);*/
    pointer-events: none;
    user-select: none;
}

.animated-stars {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.small-star {
    position: absolute;
    width: var(--star-size, 10px);
    height: var(--star-size, 10px);
    /*background: url("http://127.0.0.1/img/star.svg") no-repeat center center;*/
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="36" height="36" viewBox="0 0 24 24" fill="none" stroke="%23FFD700" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="12" y1="5" x2="12" y2="19"/><line x1="5" y1="12" x2="19" y2="12"/></svg>') no-repeat center center;
    /*filter: hue-rotate(-30deg) saturate(10) brightness(1.5) contrast(2) sepia(0.6);*/
    background-size: contain;
    opacity: 0;
    /*animation: move-stars 5s infinite ease-in-out;*/
    /*top: 50%;*/
    /*left: 50%;*/
    transform-origin: center;
}

@keyframes move-stars {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }
    10% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(calc(-50% + var(--x-shift)), calc(-50% + var(--y-shift)));
    }
    70% {
        opacity: 0;
        transform: translate(calc(-50% + var(--x-shift)), calc(-50% + var(--y-shift))) scale(0.8);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 5px rgba(240, 196, 25, 0.55));
    }
    50% {
        transform: scale(1.2);
        filter: drop-shadow(0 0 20px rgba(240, 196, 25, 0.55));
    }
}

/* ===== stars_banner_v9.css ===== */
.star-banner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    /*background: linear-gradient(145deg, #1e242c, #161b22);*/
    padding: 100px 0;
    /*border-radius: 16px;*/
    /*box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);*/
    overflow: hidden;
    /*margin-bottom: 10px;*/
}

.main-star img {
    position: relative;
    width: 170px;
    animation: pulse 3s infinite ease-in-out;
    z-index: 2;
    /*filter: drop-shadow(0 0 5px #f0c419);*/
    pointer-events: none;
    user-select: none;
}

.lottie-on-top {
    position: relative; /* Или absolute, если нужно точно позиционировать */
    z-index: 10; /* Убедитесь, что значение выше, чем у других элементов */
    pointer-events: none; /* Чтобы элемент не блокировал взаимодействие с другими элементами */
}

.star-min-sticker {
    position: relative;
    animation: pulse 3s infinite ease-in-out;
    z-index: 2;
    /*filter: drop-shadow(0 0 5px #f0c419);*/
    pointer-events: none;
    user-select: none;
}

.animated-stars {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.small-star {
    position: absolute;
    width: var(--star-size, 10px);
    height: var(--star-size, 10px);
    /*background: url("http://127.0.0.1/img/star.svg") no-repeat center center;*/
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="36" height="36" viewBox="0 0 24 24" fill="none" stroke="%23FFD700" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="12" y1="5" x2="12" y2="19"/><line x1="5" y1="12" x2="19" y2="12"/></svg>') no-repeat center center;
    /*filter: hue-rotate(-30deg) saturate(10) brightness(1.5) contrast(2) sepia(0.6);*/
    background-size: contain;
    opacity: 0;
    /*animation: move-stars 5s infinite ease-in-out;*/
    /*top: 50%;*/
    /*left: 50%;*/
    transform-origin: center;
}

@keyframes move-stars {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }
    10% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(calc(-50% + var(--x-shift)), calc(-50% + var(--y-shift)));
    }
    70% {
        opacity: 0;
        transform: translate(calc(-50% + var(--x-shift)), calc(-50% + var(--y-shift))) scale(0.8);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 5px rgba(240, 196, 25, 0.55));
    }
    50% {
        transform: scale(1.2);
        filter: drop-shadow(0 0 20px rgba(240, 196, 25, 0.55));
    }
}

/* ===== stats_section_v2026_v9.css ===== */
.stats-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    margin-bottom: 20px;
    color: #ffffff;
    gap: 15px;
    flex-wrap: wrap;
    text-align: center;
}

.stat-item {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px;
    min-width: 150px;
    min-height: 95px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(90deg, #f0c419, #e58f0d);
    -webkit-background-clip: text;
background-clip: text;-webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 0.9rem;
    color: #a5b1c2;
    margin: 0;
}

/* ===== stats_section_v9.css ===== */
.stats-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    margin-bottom: 20px;
    color: #ffffff;
    gap: 15px;
    flex-wrap: wrap;
    text-align: center;
}

.stat-item {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px;
    min-width: 150px;
    min-height: 95px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(90deg, #f0c419, #e58f0d);
    -webkit-background-clip: text;
background-clip: text;-webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 0.9rem;
    color: #a5b1c2;
    margin: 0;
}

/* ===== telegram_user_display_v9.css ===== */
/* Telegram User Display Styles */

#user-display-container {
    display: none;
    margin-top: 12px;
    animation: fadeInUp 0.3s ease;
}

.telegram-user-display {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #1a2332 0%, #232d3f 100%);
    border-radius: 12px;
    border: 2px solid #ffd76a33;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.telegram-user-display:hover {
    border-color: #ffd76a66;
    box-shadow: 0 6px 16px rgba(255, 215, 106, 0.2);
    transform: translateY(-2px);
}

.telegram-user-display.loading {
    border-color: #4a9eff33;
}

.telegram-user-display.error {
    border-color: #ff4a4a33;
    background: linear-gradient(135deg, #2d1a1a 0%, #3f2323 100%);
}

/* Avatar Styles */
.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffd76a;
    box-shadow: 0 2px 8px rgba(255, 215, 106, 0.3);
    flex-shrink: 0;
}

/* User Info */
.user-info {
    flex: 1;
    min-width: 0;
}

.user-name {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-username {
    font-size: 13px;
    color: #ffd76a;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* User Actions */
.user-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
}

/* View Profile Button */
.view-profile-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(74, 158, 255, 0.2);
    border: 1px solid rgba(74, 158, 255, 0.3);
    color: #4a9eff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.view-profile-btn:hover {
    background: rgba(74, 158, 255, 0.3);
    border-color: rgba(74, 158, 255, 0.5);
    transform: scale(1.1);
}

.view-profile-btn i {
    font-size: 16px;
}

/* Clear Button */
.clear-user-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 74, 74, 0.2);
    border: 1px solid rgba(255, 74, 74, 0.3);
    color: #ff4a4a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.clear-user-btn:hover {
    background: rgba(255, 74, 74, 0.3);
    border-color: rgba(255, 74, 74, 0.5);
    transform: rotate(90deg);
}

.clear-user-btn i {
    font-size: 14px;
}

/* Loading State */
.loading-spinner {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid rgba(74, 158, 255, 0.2);
    border-top-color: #4a9eff;
    animation: spin 0.8s linear infinite;
    flex-shrink: 0;
}

.loading-text {
    font-size: 14px;
    color: #4a9eff;
    font-weight: 600;
    animation: pulse 1.5s ease-in-out infinite;
}

/* Error State */
.error-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 74, 74, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.error-icon i {
    font-size: 24px;
    color: #ff4a4a;
}

.error-text {
    font-size: 14px;
    color: #ff4a4a;
    font-weight: 600;
}

.error-subtext {
    font-size: 12px;
    color: #ff9999;
    margin-top: 4px;
    opacity: 0.8;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Responsive Design */
@media (max-width: 480px) {
    .telegram-user-display {
        padding: 10px 12px;
        gap: 10px;
    }

    .user-avatar {
        width: 40px;
        height: 40px;
    }

    .user-name {
        font-size: 14px;
    }

    .user-username {
        font-size: 12px;
    }

    .user-actions {
        gap: 6px;
    }

    .view-profile-btn,
    .clear-user-btn {
        width: 28px;
        height: 28px;
    }

    .view-profile-btn i {
        font-size: 14px;
    }

    .clear-user-btn i {
        font-size: 12px;
    }

    .loading-spinner {
        width: 40px;
        height: 40px;
    }
}

/* RTL Support for Arabic */
[dir="rtl"] .telegram-user-display {
    direction: rtl;
}

[dir="rtl"] .user-name,
[dir="rtl"] .user-username {
    text-align: right;
}

/* ===== terms_v9.css ===== */
.terms-section {
    padding: 0 10px;
}

.terms-section h1 {
    text-align: center;
    margin-bottom: 30px;
}

.terms-section h2 {
    margin: 20px 0 10px;
    font-weight: bold;
}

.terms-section p, ul {
    color: #8b949e;
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: justify;
    margin-bottom: 10px;
}

.terms-section ul {
    list-style: circle;
    padding-left: 30px;
}

