:root {
    --brand: #fbbe27;
    --brand-color: #171717;
    --brand-active: #f79926;
    --bg: #fafafa;
    --bg-alt: #f6f6fa;
    --color: #231f20;
    --color-alt: #878991;
    --l: 50%;
    --s2-active: #fbbe27;
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
    font-family: "Montserrat", serif;
    font-weight: 400;
    color: #171717;
    font-size: 16px;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 10px;
}

.main {
    background: url("../img/main-mob.jpg") repeat-x;
    background-size: contain;
    background-position: center -190px;
}

@media screen and (min-width: 576px) {
    .main {
        background-position: center -360px;
    }
}

@media screen and (min-width: 767px) {
    .main {
        background: url("../img/main.jpg") no-repeat;
        background-size: cover;
        background-position: center -380px;
    }
}
@media screen and (min-width: 860px) {
    .main {
        background-position: center -250px;
    }
}
@media screen and (min-width: 1024px) {
    .main {
        background-position: center -160px;
    }
}

.logo {
    display: block;
    padding-top: 32px;
}
.logo img {
    width: 300px;
}
.promo {
    margin-top: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.promo__info {
    max-width: 760px;
}
.title {
    color: #fff;
    font-size: 72px;
    line-height: 90px;
    font-weight: 700;
}
.promo__subtitle {
    margin-top: 16px;
    color: #fbbe27;
    font-size: 32px;
    line-height: 38px;
}
.promo__descr {
    margin-top: 40px;
    color: #fff;
    font-size: 18px;
    line-height: 28px;
}
.btn-main {
    margin-top: 60px;
    background: #fbbe27;
    padding: 14px;
    border-radius: 100px;
    text-decoration: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 260px;
    font-size: 18px;
    font-weight: 500;
    color: #171717;
    transition: background-color, transform 0.2s linear;
}
.btn-main:hover {
    cursor: pointer;
}
.btn-main:active {
    transform: scale(0.98);
}

.subtitle {
    text-align: center;
    font-size: 60px;
    line-height: 72px;
    font-weight: 500;
}

.graphic .container {
    border-top: 1px solid #e6daf933;
    margin-top: 50px;
    padding-top: 50px;
}
.graphic-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.graphic-top__info {
    max-width: 750px;
}
.graphic-top__info p {
    color: #fff;
    font-size: 18px;
    line-height: 28px;
}
.graphic-top__info p:last-child {
    margin-top: 10px;
}
.graphic-top__precents {
    display: flex;
    align-items: end;
    gap: 24px;
}
.graphic-top__melania,
.graphic-top__trump {
    width: 150px;
    height: 165px;
    background: #8827ff;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    font-size: 34px;
    font-weight: 600;
    color: #fff;
}
.graphic-top__trump {
    height: 270px;
    background: #fbbe27;
    color: #171717;
}
.graphic-top__trump img {
    width: 100%;
}
.graphic-top__name {
    font-weight: 400;
    font-size: 24px;
    padding-top: 15px;
    border-top: 1px solid #0000001a;
}

.why,
.coins,
.faq {
    margin-top: 100px;
}
.why .subtitle {
    text-align: left;
    color: #fff;
    font-weight: 700;
}
.why__wrap {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.why-item {
    background: #fff;
    box-shadow: 0px 4px 16px 0px #a59bb126;
    padding: 28px;
    border-radius: 20px;
}
.why-item__top {
    display: flex;
    gap: 18px;
    align-items: center;
}
.why-item__top img {
    border-radius: 50%;
    width: 60px;
    height: 60px;
}
.why-item__title {
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
}
.why-item__descr {
    margin-top: 32px;
    font-size: 16px;
    line-height: 24px;
}

.coins__wrap {
    margin-top: 40px;
    border-radius: 30px;
    background: #ffaa44;
    padding: 20px;
    position: relative;
    overflow-x: auto;
}
.coins__info {
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.coins-item {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}
.coins-item__title {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    max-width: 220px;
}
.coins-item__info {
    max-width: 460px;
}
.coins-item__descr {
    font-size: 16px;
    line-height: 24px;
}
.coins-item__link {
    margin-top: 10px;
    color: #fe4040;
    font-size: 18px;
    text-decoration: none;
    display: inline-block;
    position: relative;
}
.coins-item__link:hover {
    cursor: pointer;
    text-decoration: underline;
}

.coins-item__link::after {
    content: url("../img/check-link.svg");
    position: absolute;
    display: block;
    right: -25px;
    top: 50%;
    transform: translateY(-38%);
}
.coins__img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 570px;
}

.accordion {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 10px;
    background: #f5f5f5;
}
.accordion-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
}
.accordion-content {
    display: none;
    padding: 20px;
    padding-top: 0;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
}
.accordion.open .accordion-content {
    display: block;
}
.accordion-header .icon {
    font-size: 30px;
    font-weight: 400;
}

.faq {
    margin-bottom: 180px;
}
.faq__wrap {
    display: flex;
    gap: 16px;
    margin-top: 40px;
}
.faq-img {
    background: url("../img/faq-img.jpg") center center/cover no-repeat;
    width: 415px;
    height: 303px;
    border-radius: 20px;
}
.faq__content {
    width: 100%;
}
.faq .btn-main {
    margin: 0 auto;
    margin-top: 40px;
}

.tabs {
    display: flex;
    cursor: pointer;
    border-bottom: 1px solid #392c43;
}
.tab {
    padding: 10px 20px;
    color: #ffffff66;
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    text-transform: uppercase;
}
.tab.active {
    color: #fff;
    font-weight: 400;
    border-bottom: 2px solid #fbbe27;
}
.tab-content {
    margin-top: 15px;
    display: none;
}
.tab-content.active {
    display: block;
}
.tab-content img {
    width: 100%;
}

.graphic-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 40px;
    align-items: end;
}
.graphic-bottom__title {
    font-size: 20px;
    line-height: 30px;
    color: #fff;
}

.slider-container {
    width: 100%;
    margin: 45px auto 15px;
    position: relative;
}

/* Стилизация ползунка */
input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 10px;
    background: #2c1f34;
    border-radius: 40px;
    outline: none;
    overflow: hidden;
    position: relative;
}

/* Кастомный "прогресс" в ползунке */
input[type="range"]::-webkit-slider-runnable-track {
    width: 100%;
    height: 10px;
    background: transparent;
}

/* Стилизация бегунка */
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 5px;
    height: 26px;
    background: #fbbe27;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    margin-top: -5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

/* Кастомный прогресс (цветная часть) */
/* input[type="range"]::before {
    content: "";
    height: 10px;
    background: #ff4500;
    width: var(--progress, 30%);
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 5px;
    z-index: -1;
} */

.value-display {
    font-size: 18px;
    margin-top: 10px;
}
.graphic-bottom__values {
    display: flex;
    justify-content: space-between;
}
.value-permanent,
.value-display {
    color: #fff;
    font-size: 14px;
}
.graphic-bottom__btns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 50px;
}
.graphic-bottom__btn {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: #fff;
    padding: 10px;
    border-radius: 100px;
    text-decoration: none;
    text-align: center;
    transition: background-color, transform 0.2s linear;
}
.graphic-bottom__btn:hover {
    cursor: pointer;
}
.graphic-bottom__btn:active {
    transform: scale(0.98);
}
.btn-sell {
    background: #fe4040;
}
.btn-buy {
    background: #00c46c;
}

.lightcharts {
    height: 300px;
    width: 100%;
}

@media screen and (min-width: 576px) {
    .lightcharts {
        height: 240px;
    }
}

@media screen and (max-width: 1280px) {
    .coins__img {
        right: -200px;
    }
}

@media screen and (max-width: 1024px) {
    .promo {
        margin-top: 60px;
    }
    .title {
        font-size: 60px;
        line-height: 72px;
    }
    .promo__subtitle {
        font-size: 24px;
        line-height: 28px;
    }
    .promo__descr {
        margin-top: 32px;
        font-size: 16px;
        line-height: 24px;
    }
    .btn-main {
        margin-top: 40px;
    }
    .promo__img {
        width: 350px;
    }
    .graphic-top__melania,
    .graphic-top__trump {
        width: 125px;
        height: 150px;
    }
    .graphic-top__trump {
        height: 230px;
    }
    .why,
    .coins,
    .faq {
        margin-top: 80px;
    }
    .subtitle {
        font-size: 44px;
        line-height: 60px;
    }
    .why-item {
        padding: 20px;
    }
    .coins-item__title {
        font-size: 18px;
        line-height: 28px;
    }
    .faq-img {
        width: 235px;
        height: 340px;
    }
    .faq {
        margin-bottom: 100px;
    }
}

@media screen and (max-width: 768px) {
    .title {
        font-size: 44px;
        line-height: 60px;
    }
    .logo img {
        width: 190px;
    }
    .promo__subtitle {
        margin-top: 8px;
        font-size: 24px;
        line-height: 28px;
    }
    .promo__descr {
        margin-top: 20px;
        font-size: 16px;
        line-height: 24px;
    }
    .btn-main {
        margin-top: 40px;
    }
    .promo__img {
        width: 240px;
    }
    .graphic .container {
        margin-top: 40px;
        padding-top: 40px;
    }
    .graphic-top__info p {
        font-size: 16px;
        line-height: 24px;
    }
    .graphic-top__precents {
        gap: 16px;
    }
    .graphic-top__melania,
    .graphic-top__trump {
        width: 105px;
        height: 130px;
        padding: 20px;
        font-size: 26px;
    }
    .graphic-top__trump {
        height: 190px;
    }
    .graphic-top__name {
        font-size: 20px;
    }
    .graphic-bottom {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .why,
    .coins,
    .faq {
        margin-top: 60px;
    }
    .subtitle {
        font-size: 32px;
        line-height: 42px;
    }
    .why__wrap {
        margin-top: 20px;
    }
    .why-item__title {
        font-size: 18px;
        line-height: 28px;
    }
    .why-item__descr {
        margin-top: 20px;
    }
    .why-item img {
        width: 40px;
        height: 40px;
    }
    .coins__img {
        position: relative;
        right: auto;
        margin: 0 auto;
        display: block;
        width: 500px;
    }
    .coins__wrap {
        padding-bottom: 0;
    }
    .coins__info {
        width: 100%;
    }
    .faq__wrap {
        margin-top: 20px;
    }
    .faq .btn-main {
        margin-top: 20px;
    }
}

@media screen and (max-width: 576px) {
    /* .main {
        background: url("../img/main-mob.jpg") center -50px no-repeat;
        background-size: contain;
    } */
    .logo img {
        display: block;
        margin: 0 auto;
    }
    .promo {
        flex-direction: column;
        align-items: center;
        justify-content: baseline;
        gap: 40px;
    }
    .title {
        font-size: 32px;
        line-height: 42px;
        text-align: center;
    }
    .promo__subtitle {
        font-size: 20px;
        line-height: 24px;
        text-align: center;
    }
    .promo__descr {
        text-align: center;
    }
    .btn-main {
        margin: 0 auto;
        margin-top: 40px;
    }
    .graphic .container {
        margin-top: 30px;
        padding-top: 30px;
    }
    .graphic-top {
        flex-direction: column;
    }
    .tab {
        padding: 10px;
    }
    .why__wrap {
        grid-template-columns: 1fr;
    }
    .coins__img {
        width: 100%;
    }
    .coins-item__title {
        max-width: 100%;
    }
    .coins-item__title img {
        width: 32px;
        height: 32px;
    }
    .coins-item {
        flex-direction: column;
    }
    .coins__wrap {
        margin-top: 20px;
    }
    .faq__wrap {
        flex-direction: column;
    }
    .faq-img {
        width: 100%;
        height: 210px;
    }
    .faq {
        margin-bottom: 60px;
    }
}


.symbol-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    color: #fff;
    align-self: center;
    padding: 1rem;
}
.symbol-info__item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.symbol-info__item-title {
    color: var(--brand);
    display: flex;
    gap: 8px;
    white-space: nowrap;
}

.symbol-info__item-tooltip {
    width: 18px;
    height: 18px;
    opacity: 0.5;
    transition: opacity 0.2s linear;
    align-self: flex-start;
}
.symbol-info__item-tooltip:hover {
    cursor: pointer;
    opacity: 1;
}
.symbol-info__item-tooltip svg {
    width: 100%;
    height: 100%;
}
@media screen and (min-width: 1024px) {
    .symbol-info {
        grid-template-columns: repeat(3, 1fr);
    }
    .symbol-info__item-value {
        font-size: 18px;
        font-weight: 600;
    }
}


.tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;filter:alpha(opacity=0);opacity:0;line-break:auto}
.tooltip.in{filter:alpha(opacity=90);opacity:.9}
.tooltip.top{padding:5px 0;margin-top:-3px}
.tooltip.right{padding:0 5px;margin-left:3px}
.tooltip.bottom{padding:5px 0;margin-top:3px}
.tooltip.left{padding:0 5px;margin-left:-3px}
.tooltip-inner{max-width:350px;padding:10px;color:#fff;text-align:left;background-color:#002033;border-radius:4px;line-height: 14px;}
.nobr_title .tooltip-inner{white-space: nowrap;}
.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}
.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#002033}
.tooltip.top-left .tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#002033}
.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#002033}
.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#002033}
.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#002033}
.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#002033}
.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#002033}
.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#002033}
.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}