.header-top {
    z-index: 999;
    color: #383838;
    position: relative;
}

.how-to-use-container {
    background-color: #fff6e2;
    padding: 10px 0;
}

.how-to-use-container .flex {
    display: flex;
    gap: 10px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.how-to-use-container .social-buttons {
    display: flex;
    flex-direction: row;
    gap: 8px;
}

.how-to-use-container .social-buttons path {
    fill: #333;
}

.how-to-use-container .social-buttons .social-media-link {
    margin-left: 0;
}

.orange-text {
    color: #f6a41a;
}
.blue-text {
    color: #4a77e2;
}
.green-text {
    color: #3bae73;
}
.red-text {
    color: #f94b45;
}
.gradient-text {
    background-image: linear-gradient(45deg, #3bae73, #f6a41a);

    background-size: 100%;
    background-repeat: repeat;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
}

.h-border {
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #3bae73, #f6a41a);
}

.gradient-button {
    position: relative;
    cursor: pointer;
    user-select: none;
}

.gradient-button .bg {
    background-color: #fff6e2;
    position: relative;
    z-index: 1;
    border-radius: 12px;
    padding: 2px 8px;
    font-size: 0;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background-color 0.3s ease;
}
.gradient-button .bg:hover {
    background-color: #f3e5c9;
}

.gradient-button .bg img {
    width: 12px;
    height: 7px;
    object-fit: contain;
}

.gradient-button .border {
    background: linear-gradient(to right, #3bae73, #f6a41a);
    position: absolute;
    inset: -2px;
    z-index: 0;
    border-radius: 14px;
}

.gradient-button .bg span {
    font-size: 12px;
    font-weight: 500;
    color: #383838;
}

.how-to-use {
    user-select: none;
    pointer-events: none;
    opacity: 0;
    transition: all 0.5s ease;
    transform: translateY(60px);
    position: absolute;
    z-index: 999;
    width: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    font-family: "Satoshi", sans-serif;
}

.how-to-use.active {
    user-select: auto;
    pointer-events: auto;
    transform: translateY(0);
    opacity: 1;
    box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.2);
}

.how-to-use .background {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
}

.how-to-use .background img.main {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.how-to-use.step-01 .background img.top-left {
    position: absolute;
    top: -42px;
    left: 0;
    width: 120px;
    height: 120px;
    z-index: 1;
    object-fit: contain;
}

.how-to-use.step-01 .background img.bottom-left {
    position: absolute;
    bottom: -50px;
    left: -60px;
    width: 200px;
    height: 200px;
    z-index: 1;
    object-fit: contain;
}

.how-to-use.step-02 .background img.top-left {
    position: absolute;
    top: -42px;
    right: 0;
    width: 120px;
    height: 120px;
    z-index: 1;
    object-fit: contain;
    transform: scaleX(-1);
}

.how-to-use.step-02 .background img.bottom-left {
    position: absolute;
    bottom: -50px;
    right: -60px;
    width: 200px;
    height: 200px;
    z-index: 1;
    object-fit: contain;
    transform: scaleX(-1);
}

.how-to-use .container {
    position: relative;
    z-index: 1;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    min-height: 100%;
}

.how-to-use .container h1 {
    font-size: 30px;
    font-weight: 700;
    margin: 0;
}

.how-to-use .container h2 {
    font-size: 34px;
    line-height: 38px;
    font-weight: 700;
    margin: 0;
}

.how-to-use .container .top {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}
.how-to-use .container .top > * {
    max-width: 240px;
}

.how-to-use .container .top span {
    display: inline-flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

.how-to-use .container > .flex {
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.how-to-use .container > .flex .item {
    flex: 1;
}

.how-to-use .container > .flex .item .step-top {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}

.how-to-use .container > .flex .item .step-top > div {
    font-size: 22px;
    font-weight: 500;
}

.how-to-use .container > .flex .item .step-top .orange-text,
.how-to-use .container > .flex .item .step-top .blue-text,
.how-to-use .container > .flex .item .step-top .red-text,
.how-to-use .container > .flex .item .step-top .green-text {
    font-weight: 700;
    transform: translateY(-8px);
}

.how-to-use .container > .flex .item .step-top img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.how-to-use .container > .flex .item .step-content {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    margin-top: 10px;
}

.how-to-use .container > .flex .item .step-content h6 {
    font-size: 60px;
    font-weight: 700;
    width: 70px;
    min-width: 70px;
    text-align: center;
}

.how-to-use .container > .flex .item .step-content p {
    font-size: 13px;

    line-height: 16px;
    font-weight: 500;
    font-family: "Satoshi", sans-serif;
}

.how-to-use .container > .flex.step-01 .item:nth-child(2) {
    transform: translateY(-60px);
}

.how-to-use .container > .flex.step-02 .item:nth-child(2) {
    transform: translateY(85px);
}
.how-to-use .container > .flex.step-02 {
    padding-top: 23px;
}

.how-to-use.step-01 .container .bottom-image {
    margin-top: -80px;
}
.how-to-use .container .bottom-image img {
    width: 100%;
    object-fit: contain;
    user-select: none;
    pointer-events: none;
}

.how-to-use .container .centered-button {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
    /* position: absolute; */
    /* bottom: 20px; */
    /* left: 0; */
    /* right: 0; */
}

.how-to-use .container .centered-button .gradient-button .bg {
    background-color: #f6f6f6;
}
.how-to-use .container .centered-button .gradient-button.next img {
    transform: rotate(270deg);
}
.how-to-use .container .centered-button .gradient-button.previous img {
    transform: rotate(90deg);
}

.how-to-use .container .centered-button .dots {
    display: flex;
    flex-direction: row;
    gap: 4px;
}

.how-to-use .container .centered-button .dots .dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border-width: 1px;
    border-style: solid;
    border-color: #c1c1c1;
    position: relative;
    cursor: pointer;
}

.how-to-use .container .centered-button .dots .dot.active:before {
    background-color: #3bae73;
    position: absolute;
    content: "";
    border-radius: 50%;
    display: inline-block;
    width: 12px;
    height: 12px;
    left: 1px;
    top: 1px;
}

.how-to-use .hidden {
    opacity: 0;
    pointer-events: none;
    user-select: none;
}

.how-to-use .logo {
    position: absolute;
    top: -40px;
    width: 420px;
    height: 420px;
    right: -220px;
    z-index: -1;
    transition: all 0.4s ease;
    user-select: none;
    pointer-events: none;
}
.how-to-use.step-02 .logo {
    top: 50%;
}

.how-to-use .close-button {
    position: absolute;
    top: 56px;
    right: 0px;
    width: 24px;
    height: 24px;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}
.how-to-use .close-button:hover {
    opacity: 0.75;
}

.header-top-overlay {
    position: fixed;
    inset: 0;
    z-index: 998;
    background-color: rgba(0, 0, 0, 0.5); /* <-- burayı değiştirdik */
    display: none;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    cursor: pointer;
}

.how-to-use .mobile,
.how-to-use .web {
    height: 100%;
    position: relative;
    overflow: hidden;
}

@media screen and (max-width: 1024px) {
    .how-to-use .container .flex {
        gap: 30px !important;
    }
    .how-to-use .step-top {
        flex-direction: column !important;
    }
    .how-to-use .step-top img {
        width: 40px !important;
        height: 40px !important;
    }
    .how-to-use .step-top > div {
        font-size: 18px !important;
        text-align: center !important;
    }
    .how-to-use .step-content {
        flex-direction: column !important;
        position: relative;
    }
    .how-to-use .step-content h6 {
        margin: 0 !important;
        font-size: 20px !important;
        position: absolute;
        left: -30px;
        top: -30px;
        background-color: #fff;
        border-radius: 100%;
        width: 30px !important;
        min-width: 30px !important;
        height: 30px !important;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    }
}

@media screen and (max-width: 768px) {
    .how-to-use .web {
        display: none;
    }
    .how-to-use .mobile {
        display: block;
    }

    .how-to-use-container .social-buttons {
        display: none;
    }
    .how-to-use-container .flex {
        justify-content: center;
    }
}

@media screen and (min-width: 768px) {
    .how-to-use .web {
        display: block;
    }
    .how-to-use .mobile {
        display: none;
    }
}

.how-to-use .mobile {
    padding: 0 10px;
    font-family: "Satoshi", sans-serif;
}

.how-to-use .mobile .top {
    display: flex;
    flex-direction: column;
    gap: 0px;
    align-items: center;
}
.how-to-use .mobile .top h1 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}
.how-to-use .mobile .top span {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    margin-top: -8px;
}
.how-to-use .mobile .top h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    line-height: 24px;
}
.how-to-use .mobile ._row {
    display: flex;
    flex-direction: row-reverse;
    gap: 10px;
    align-items: center;
}
.how-to-use .mobile ._row:nth-child(2n) {
    flex-direction: row;
}
.how-to-use .mobile ._row img {
    max-width: 120px;
}
.how-to-use .mobile ._row ._item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.how-to-use .mobile ._row ._item img {
    width: 36px;
    height: 36px;
}
.how-to-use .mobile ._row ._item ._top {
    display: flex;
    align-items: center;
    gap: 10px;
}

.how-to-use .mobile ._row ._item ._top div {
    font-size: 13px;
}
.how-to-use .mobile ._row ._item ._top div:first-child {
    margin-bottom: -4px;
    font-weight: 600;
    color: #383838;
}

.how-to-use .mobile ._row ._item ._top .orange-text,
.how-to-use .mobile ._row ._item ._top .blue-text,
.how-to-use .mobile ._row ._item ._top .red-text,
.how-to-use .mobile ._row ._item ._top .green-text {
    font-weight: 700;
}
.how-to-use .mobile ._row ._item ._content {
    display: flex;
    flex-direction: row;
    gap: 10px;
}
.how-to-use .mobile ._row ._item ._content p {
    font-size: 12px;
    font-weight: 500;
    line-height: 14px;
}
.how-to-use .mobile ._row ._item ._content h6 {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    width: 36px;
    min-width: 36px;
    text-align: center;
}
.how-to-use .mobile .centered {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.how-to-use .mobile .centered .gradient-button.next-mobile img {
    transform: rotate(270deg);
}
.how-to-use .mobile .centered .gradient-button.previous-mobile img {
    transform: rotate(90deg);
}

.how-to-use .mobile .container > main {
    position: relative;
}
.how-to-use .mobile .container > main ._row {
    position: relative;
    z-index: 1;
}

.how-to-use .mobile .container > main .bg {
    position: absolute;
    z-index: 0;
    left: 20%;
    top: 20%;
    width: 60%;
    height: 60%;
    object-fit: contain;
    object-position: center;
    user-select: none;
    pointer-events: none;
}
