body {
    background-color: rgba(5,5,5,255);
    width: 100%;
    padding-bottom: 130px;
    margin: 0;
}

:root {
    --primary-accent: rgba(205,175,115,255);
    --primary-color: rgba(239,239,239,255);
    --secondary-accent: rgba(37,99,235,255);
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-UltraLight.woff2') format('woff2');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Semibold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

.header-title-container {
    padding: 16px 16px 24px 16px;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    height: 100%;
    padding: 0px 8px;
    gap: 8px;
    pointer-events: auto;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.content-footer {
    position: fixed; 
    bottom: 0;
    width: 100%;
    height: 105px;
    background-color: rgba(26,26,26,255);
    border-radius: 12px 12px 0px 0px;
    border-top: 1px solid rgba(81, 81, 81, 0.8);
}



.content-footer.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(100%); /* реально уедет вниз */
    transition: transform 0.3s ease, opacity 0.3s ease;
}


.footer-link {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding-bottom: 12px;
}

.footer-link.active>span {
    color: #C8A765;
}

.footer-link.active>.footer-link-icon-container>i {
    background-color: #C8A765;
}

.footer-link-icon-container i {
    display: inline-block;
    width: 27px;
    height: 27px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.footer-link span {
    text-decoration: none;
    color: white;
    margin: 0;
    font-family: "Gilroy";
    font-weight: 500;
    font-size: 12px;
    text-align: center;
}

.footer-link-icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
}