html {
    background-color: #000;
}

body {
    background: linear-gradient(45deg, #3a3a3a, black);
    margin: 0;
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    text-rendering: geometricPrecision;
}

* {
    box-sizing: border-box;
    transition: all 0.2s;
}

header {
    max-width: 1104px;
    margin: 0 auto;
    padding: 20px;
    height: 83px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .header-content {
    display: flex;
    gap: 16px;
}

header .header-buttons {
    display: flex;
    gap: 16px;
}

header .header-content .logo {
    border-radius: 12px;
    width: 40px;
    height: 40px;
}

header .header-buttons .channel-link {
    color: rgb(254 143 67);
    font-size: 18px;
    margin: 0;
    font-weight: 600;
    align-items: center;
    display: flex;
    transition: opacity 0.2s;
    cursor: pointer;
    text-decoration: none;
}

header .header-buttons .channel-link:hover {
    opacity: 0.8;
}

header .app-button {
    color: #000;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 500;
    border-width: 0px;
    border-radius: 8px;
    background-image: linear-gradient(0.125turn, rgb(137 63 26) 0%, rgb(185 76 21) 31%, rgb(228 124 65) 69%, rgb(248 179 132) 100%);
    border-color: transparent;
    border-style: solid;
    transition: opacity 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    animation: scale 1s ease infinite;
    width: 112px;
    height: 34px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

header .app-button:hover {
    opacity: 0.8;
}

footer {
    position: relative;
    padding: 20px;
    left: 0;
    right: 0;
    bottom: 0;
    height: 63px;
    color: rgb(196 86 24);
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer .ton-logo {
    height: 20px;
}

.main {
    width: 100%;
    min-height: calc(100vh - 83px - 63px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1104px;
    margin: 0 auto;
}

.main-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.main-content h1.title {
    color: transparent;
    background-image: linear-gradient(0.125turn, rgb(248 179 132) 0%, rgb(228 124 65) 31%, rgb(185 76 21) 69%, rgb(137 63 26) 100%);
    transform-origin: center center;
    -webkit-background-clip: text;
    will-change: transform;
    font-size: 80px;
    font-weight: 700;
    letter-spacing: -1.2px;
    background-position: center center;
    margin: 0;
}

.main-content p.description {
    color: rgb(196 86 24);
    font-size: 18px;
    margin: 0;
}

.main-content div.button {
    margin-top: 40px;
}

.main-image {
    display: flex;
    justify-content: center;
}

.main-image img.hello {
    max-width: 400px;
}

.buy-button {
    color: #000;
    font-size: 16px;
    line-height: 1.55;
    font-weight: 500;
    border-width: 0px;
    border-radius: 16px;
    background-image: linear-gradient(0.125turn, rgb(137 63 26) 0%, rgb(185 76 21) 31%, rgb(228 124 65) 69%, rgb(248 179 132) 100%);
    border-color: transparent;
    border-style: solid;
    transition: opacity 0.5s ease-in-out;
    width: 140px;
    height: 44px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.buy-button:hover {
    opacity: 0.8;
}

@keyframes scale {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}


@media (max-width: 1104px) {
    header {
    }
    header .header-buttons .channel-link {
        font-size: 16px;
    }
    .main {
        flex-direction: column;
        justify-content: center;
        width: auto;
        margin: 0 20px;
        gap: 20px;
    }
    .main-content div.button {
        margin-top: 20px;
    }
    .main-image img.hello {
        width: 80%;
        height: auto;
        max-width: unset;
    }
}
@media (max-width: 360px) {
    header .header-buttons .channel-link {
        font-size: 12px;
    }

    .main-content h1.title {
        font-size: 48px;
    }

    .main-content p.description {
        font-size: 14px;
        margin: 0;
    }

    .main-image img.hello {
        width: 50%;
    }

}
