* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



.website-container {
    position: relative;
    width: 100%;
}

.content-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.bar-section {
    width: 100%;
    height: 90vh;
    background-image: url(/image/TRX.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

@media(max-width:768px) {
    .bar-section {
        height: 30vh;
    }
}

.app-container {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: 2rem 0;
}

    .app-container:first-child {
        background: linear-gradient(0deg, #333 0, #eee 100%);
        border-radius: 20px;
        padding-top: 180px;
        align-items: center;
        justify-content: center;
    }

    .app-container:last-child {
        background: linear-gradient(0deg, #eee 0, #333 100%);
        border-radius: 20px;
    }

.TRON_price {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    width: 100%;
}

    .TRON_price h4 {
        font-size: 32px;
        font-weight: 600;
    }

.TRON_info {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

    .TRON_info p:first-child {
        font-size: 24px;
    }

.tron_section01,
.tron_section02 {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    padding: 1rem;
}

    .tron_section01 p,
    .tron_section02 p {
        color: #fff;
    }

    .tron_section01 .price_container,
    .tron_section02 .price_container {
        width: 90%;
    }

.todays_price {
    display: flex;
    justify-content: space-between;
}

.item {
    text-align: center;
    background: #444;
    border: 2px solid #333;
    border-radius: 20px;
    padding: 1rem;
}

    .item p {
        color: #999;
        font-size: 26px;
    }

    .item span {
        font-size: 24px;
        color: #fff;
    }

.why_trading {
    margin-top: 4rem;
    width: 100%;
}

    .why_trading h4 {
        font-size: 32px;
        font-weight: 600;
    }

.trading_ans {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

    .trading_ans p {
        font-size: 26px;
        font-weight: 600;
    }

    .trading_ans span {
        font-size: 24px;
    }

.how_trading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 4rem;
    background: #333;
    border-radius: 20px;
    padding: 1rem;
    width: 100%;
    color: #fff;
}

.step_box {
    display: flex;
    gap: 1rem;
}

.box {
    display: flex;
    flex-direction: column;
}

    .box p:first-child {
        font-size: 48px;
        color: #999;
    }

    .box p:last-child {
        font-size: 12px;
    }

.how_trading button {
    background: #09BFE3;
    padding: 0.5rem 6rem;
    border: none;
    border-radius: 20px;
}

    .how_trading button:hover {
        background: #08A7C7;
        transition: 0.2s ease-in;
    }

.exchange_top, .exchange_bottom {
    width: 100%;
    display: flex;
    margin-bottom: 2rem;
    padding: 0 1rem;
    gap: 9rem;
}

    .exchange_top div,
    .exchange_bottom div {
        width: 50%;
    }

    .exchange_top h4,
    .exchange_bottom h4 {
        font-weight: 600;
    }


.exchange_input {
    /* background: #333; */
    border: 2px solid #999;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
}

    .exchange_input div {
        width: 90%;
    }

.exchange_bottom button {
    padding: 1rem 1.5rem;
    width: 90%;
    border: none;
    border-radius: 10px;
    background: #09BFE3;
}

    .exchange_bottom button:hover {
        background: #08A7C7;
    }

@media (max-width: 960px) {
    .app-container {
        width: 100%;
    }

    .section01-title {
        width: 100%;
    }

        .section01-title p {
            padding: 0;
        }

    .TRON_price {
        width: 100%;
        padding: 1rem;
    }

    .price_container {
        margin: 0;
        width: 100%;
    }

    .todays_price .item {
        background: none;
        border: none;
    }

    .item p {
        color: #000;
        font-weight: 600;
    }

    .item span {
        color: #555;
    }

    .why_trading {
        width: 100%;
        padding: 1rem;
    }

    .how_trading {
        width: 100%;
        margin: 1rem;
    }

    .login_hamburger button:first-child {
        display: none;
    }

    .exchange_top,
    .exchange_bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

        .exchange_top div,
        .exchange_bottom div {
            width: 100%;
        }
}
