/***** Buttons *****/

.Button {
    padding: 7px 16px;
    height: 46px;
    font-size: 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: center;
}

.btn-default {
    background-color: #fff;
    color: #262626;
}

.btn-default:hover {
    background-color: #406A70;
    color: white;
}

.btn-outline {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
}

.btn-outline:hover {
    background-color: #406A70;
    border-color: #406A70;
    color: white;
}

.btn-transparent {
    background-color: transparent;
    border: none;
    color: #fff;
    padding: 0;
}


/* Video Element */
app-video {
    display: block;
    width: 100%;
    height: 825px;
    position: relative;
    overflow: hidden;
    background: #000;
    border-radius: 16px;
}

app-video .AppVideo {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

app-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

app-video .PlayButton {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    color: #fff;
    cursor: pointer;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, .19);
    background: rgba(26, 26, 26, .4);
    backdrop-filter: blur(92px);
    height: 54px;
    padding: 0 15px;
}

app-video .PlayButton span {
    font-size: 16px;
    font-weight: 500;
}



/* NavButtons */
.NavButtons {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    position: fixed;
    bottom: 80px;
    right: 32px;
    z-index: 999;
}

.NavButtons button {
    width: 48px;
    max-width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 12px;
    border-radius: 8px;
    border: none;
    background: rgba(0, 0, 0, .6);
    backdrop-filter: blur(16px);
    cursor: pointer;
    overflow: hidden;
    color: #fff;
    transition: max-width 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.NavButtons button app-icon {
    flex-shrink: 0;
    width: 24px;
    display: flex;
    justify-content: center;
}

.NavButtons button p {
    margin: 0;
    padding-left: 12px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.2s ease;
    font-size: 14px;
    font-weight: 500;
}

.NavButtons button:hover {
    width: auto;
    max-width: 400px;
}

.NavButtons button:hover p {
    opacity: 1;
    transition: opacity 0.4s ease 0.1s;
}

.NavButtons .BtnScrollTop {
    display: none;
    opacity: 0;
    transform: translateY(20px);
}

.NavButtons .BtnScrollTop.visible {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    app-video {
        height: 500px;
    }

    .NavButtons {
        right: 20px;
        bottom: 40px;
    }
}

@media (max-width: 768px) {
    .Button {
        height: 40px;
        font-size: 13px;
        padding: 0 12px;
    }

    app-video {
        height: auto;
        aspect-ratio: 16 / 9;
        border-radius: 8px;
    }

    app-video .PlayButton {
        height: 44px;
        padding: 0 12px;
    }

    app-video .PlayButton span {
        font-size: 14px;
    }

    .NavButtons {
        right: 16px;
        bottom: 20px;
        gap: 6px;
    }

    .NavButtons button {
        width: 40px;
        height: 40px;
        padding: 0 8px;
    }

    .NavButtons button:hover {
        max-width: 40px;
    }

    .NavButtons button p {
        display: none;
    }
}

@media (max-width: 480px) {
    app-video {
        aspect-ratio: 4 / 3;
    }

    .Button {
        width: 100%;
    }
}