.page-home,
.page-home * {
    box-sizing: border-box;
}
.page-home {
    background: #13100b;
    height: 100vh;
    position: relative;
    overflow: hidden;
}
.bg-group {
    position: absolute;
    inset: 0;
}
.bg-main {
    width: 100%;
    height: 100vh;
    position: absolute;
    left: -5%;
    top: 0;
    object-fit: cover;
}
.bg-mask {
    width: 100%;
    height: 100vh;
    position: absolute;
    left: 15%;
    top: 0;
    overflow: visible;
}
.overlay-radial {
    background: radial-gradient(
        ellipse at center,
        rgba(18, 15, 10, 0) 31.25%,
        rgba(18, 15, 10, 0.8) 66.41%,
        rgba(18, 15, 10, 1) 103.05%
    );
    width: 100%;
    height: 100vh;
    position: absolute;
    right: 0;
    top: 0;
}
.overlay-linear {
    background: linear-gradient(
        180deg,
        rgba(15, 10, 18, 0) 0%,
        rgba(15, 10, 18, 1) 100%
    );
    width: 100%;
    height: 100vh;
    position: absolute;
    left: 0;
    top: 0;
    transform-origin: 0 0;
    transform: rotate(0deg) scale(1, -1);
}
.login-box {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 90px;
    padding: 50px 80px;
    display: flex;
    flex-direction: column;
    gap: 44px;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    translate: -50%;
    top: calc(50% - 356px);
    backdrop-filter: blur(50px);
}
.login-logo {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    height: auto;
    position: relative;
    overflow: visible;
}
.login-text {
    color: #fdfdfd;
    text-align: center;
    font-family: "Inter-SemiBold", sans-serif;
    font-size: 46px;
    font-weight: 600;
    position: relative;
    width: 435px;
}
.button-primary {
    background: linear-gradient(83.32deg, rgba(183, 110, 0, 1) 0%, rgba(241, 186, 79, 1) 100%);
    border-radius: 100px;
    padding: 0 32px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    height: 64px;
    position: relative;
    box-shadow: inset 0px 3px 2px rgba(255, 255, 255, 0.25),
                inset 0px -2px 2px rgba(0, 0, 0, 0.25);
}
.button-text {
    color: #fdfdfd;
    text-align: center;
    font-family: "HelveticaNeue-Medium", sans-serif;
    font-size: 18px;
    font-weight: 500;
}
.channel-section {
    display: flex;
    flex-direction: column;
    gap: 26px;
    align-items: center;
    width: 805px;
    position: absolute;
    left: 50%;
    translate: -50%;
    top: 90%;
}
.channel-title {
    color: #fdfdfd;
    text-align: center;
    font-family: "Inter-Bold", sans-serif;
    font-size: 18px;
    letter-spacing: 4px;
    font-weight: 700;
    text-transform: uppercase;
    opacity: 0.6;
    width: 100%;
}
.channel-list {
    display: flex;
    flex-direction: row;
    gap: 50px;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.channel-item {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
}
.channel-icon {
    width: 26px;
    height: 26px;
    position: relative;
    overflow: hidden;
}
.channel-name {
    color: #fdfdfd;
    text-align: center;
    font-family: "Inter-Medium", sans-serif;
    font-size: 20px;
    font-weight: 500;
    text-decoration: underline;
}
.channel-name a {
    color: #fdfdfd;
}
