@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

/* KetaRu ScrollBars */
:root{
    --Background: #0f0f0f;
    --Fon: #0d1218;
    --ColorNone: #d7fe7b;
    --ColorCursor: #95b940;
    --Width: 2px;
    --Border: 2px;
    --Radius: 0px;
} 
/* Дизайн скрол-бара */
.element::-webkit-scrollbar{
    background-color: var(--Background);
    width: 0;
}
::-webkit-scrollbar{
    width: var(--Width);
    height: 7px;
    background-color: var(--Background);
}
::-webkit-scrollbar-thumb{
    background-color: var(--ColorNone);
    border-radius: var(--Radius);
    min-height: 30px;
    width: var(--Width);
    border: var(--Border) solid var(--Background);
}
::-webkit-scrollbar-thumb:hover{
    background-color: var(--ColorCursor);
}

body {
    background-color: #0e0e0e;
    color: #e0e0e0;
    font-family: "Unbounded", sans-serif;
    margin: 0;
    padding: 20px;
    padding: 0 20px;
}

.site-header {
    background: rgba(14, 14, 14, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #303030;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 5px 0;
    margin-bottom: 30px;
}

.header-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.site-name {
    color: #d7fe7b;
    margin: 0;
    font-size: 25px;
    font-weight: 500;
    line-height: 25px;
    left: -1px;
    position: relative;
    text-shadow: 0 0 10px rgba(215, 254, 123, 0.3);
}
.logo {
    display: flex;
    flex-direction: column;
}

.by-kelix {
    color: #ff7777;
    font-size: 12px;
    /* margin-left: 1px; */
    opacity: 1;
}

.header-nav {
    display: flex;
    gap: 10px;
    align-items: center;
}

.nav-link {
    color: #efefef;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 5px;
}

.nav-link:hover {
    color: #d7fe7b;
    background: rgba(215, 254, 123, 0.1);
    /* transform: translateY(-2px); */
}

.buy-nav {
    background: #353535;
    color: #d3f979;
}

.buy-nav:hover {
    background: #222222;
    color: #f67373;
    /* transform: translateY(-2px); */
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }

    .header-nav {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-link {
        font-size: 14px;
        padding: 6px 12px;
    }

    .site-name {
        font-size: 24px;
    }
    .logo{
        align-items: center;
    }
}
:root{
    --Background: #0f0f0f;
    --Fon: #0d1218;
    --ColorNone: #d7fe7b;
    --ColorCursor: #95b940;
    --Width: 7px;
    --Border: 2px;
    --Radius: 0px;
} 
/* Дизайн скрол-бара */

.scroll-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.scroll-container{
    transition: opacity 0.4s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin: 0px;
    border-radius: 5px;
    height: 100%;
    overflow: auto;
}
#adminListBlocks {
    padding: 10px 10px;
    margin: 0px;
    overflow: auto;
    height: 720px;
    position: relative;
}
.scroll-gradient {
    position: absolute;
    left: 0;
    right: 0;
    height: 40px;
    pointer-events: none;
    z-index: 2;
    transition: opacity 0.4s ease;
}
.scroll-gradient.top {
    top: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0));
}
.scroll-gradient.bottom {
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0));
}
.scroll-gradient.hidden {
    opacity: 0;
}
.scroll-arrow {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    z-index: 3;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.scroll-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
}
.scroll-arrow.up {
    top: 10px;
}
.scroll-arrow.down {
    bottom: 10px;
}
.scroll-arrow.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Стили для нового блока */
.product-header {
    margin-bottom: 30px;
}
.product-gallery {
    background: #0e0e0e;
    padding: 20px;
    border-radius: 5px;
    border: #575757 solid 1px;
    margin-bottom: 20px;
}
.gallery-title {
    font-size: 30px;
    text-align: center;
    margin: 0px;
    margin-bottom: 10px;
    color: #d7fe7b;
}
.gallery-wrapper {
    position: relative;
}
.gallery-container {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    /* border: #303030 solid 1px; */
    background: #010101;
    scroll-behavior: smooth;
    cursor: grab;
}
.gallery-container::-webkit-scrollbar {
    display: none;
}
.gallery-container:active {
    cursor: grabbing;
}
.gallery-item {
    border: #303030 solid 1px;
    width: 350px;
    aspect-ratio: 16/9;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
    transition: transform 0.3s ease;
    background: #0b0b0b;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    background: #0b0b0b;
}
.gallery-item:hover img {
    transform: scale(1.03);
}
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    /* backdrop-filter: blur(2px); */
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    pointer-events: none;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.product-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 70px;
    flex-wrap: wrap;
}
.action-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}
.btn-buy {
    background: linear-gradient(45deg, #3278ff, #6a11cb);
}
.btn-support {
    background: linear-gradient(45deg, #d7fe7b, #95b940);
    color: #0e0e0e;
}

/* Стили для скроллбара галереи */
.gallery-scroll-container {
    border: #303030 solid 1px;
    position: relative;
    width: 100%;
    margin-bottom: 15px;
    border-radius: 5px;
    /* overflow: hidden; */
    overflow: hidden;
}
.gallery-scroll-gradient {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    pointer-events: none;
    z-index: 2;
    transition: opacity 0.4s ease;
}
.gallery-scroll-gradient.left {
    left: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.6), rgba(0,0,0,0));
}
.gallery-scroll-gradient.right {
    right: 0;
    background: linear-gradient(to left, rgba(0,0,0,0.6), rgba(0,0,0,0));
}
.gallery-scroll-gradient.hidden {
    opacity: 0;
}
.gallery-scroll-arrow {
    position: absolute;
    top: 50%; /* Верхний край стрелки будет посередине контейнера */
    background: rgba(255, 255, 255, 0.2);
    padding: 15px 2px;
    line-height: 0;
    font-size: 12px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    z-index: 3;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-orientation: mixed;
}
.gallery-scroll-arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    height: fit-content;
    /* остальные стили */
}
.gallery-scroll-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
}
.gallery-scroll-arrow.left {
    left: 10px;
}
.gallery-scroll-arrow.right {
    right: 10px;
}
.gallery-scroll-arrow.hidden {
    opacity: 0;
    pointer-events: none;
}

    /* Модальное окно - ИСПРАВЛЕННЫЙ CSS */
    #galleryModal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(29, 29, 29, 0.8);
        /* background: rgba(14, 14, 14, 0.7); */
        backdrop-filter: blur(5px);
        z-index: 10000;
        justify-content: center;
        align-items: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    #galleryModal.active {
        display: flex;
        opacity: 1;
    }
.modal-content {
    position: relative;
    /* max-width: 90vw; */
    height: 90vh;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background: #000000; */
    border-radius: 5px;
    overflow: hidden;
    padding: 20px;
    box-sizing: border-box;
}
#modalImage {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* background: #000000; */
    display: block;
}
#closeModal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    z-index: 10001;
    /* background: rgba(0,0,0,0.7); */
    width: 40px;
    height: 40px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    opacity: 1;
}
#closeModal:hover {
    background: rgba(255,0,0,0.7);
    /* transform: scale(1.1); */
}
.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    /* background: rgba(0,0,0,0.7); */
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    /* width: 60px; */
    /* height: 80px; */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    cursor: pointer;
    opacity: 1;
    transition: all 0.3s ease;
    z-index: 10001;
    /* border: none; */
    font-size: 30px;
    font-weight: bold;
}
.modal-nav:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.8);
    /* transform: translateY(-50%) scale(1.1); */
}
.modal-nav:focus-visible {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}
/* Полностью убирает обводку для видимого фокуса */
*:focus-visible {
    outline: none;
}
#modalPrev {
    left: 20px;
}
#modalNext {
    right: 20px;
}
.modal-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    background: rgba(0,0,0,0.7);
    padding: 5px 20px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Блокировка прокрутки фона при открытом модальном окне */
body.modal-open {
    overflow: hidden;
    height: 100vh;
}
body{
    margin: 30px 0px;
    margin-top: 0px;
}
.gallery-item.video-item::before {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    /* color: rgba(255, 28, 28, 0.382); */
    /* text-shadow: 0 2px 10px rgba(0,0,0,0.7); */
    z-index: 2;
    opacity: 1;
    /* backdrop-filter: blur(5px); */
    transition: all 0.3s ease;
    background: linear-gradient(20deg, #006eff, #00ff81 52%, #fff 50%, #93cbff);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow:  0 0 5px #00ffcf80;
}

.gallery-item.video-item:hover::before {
    /* transform: translate(-50%, -50%) scale(1.1); */
    opacity: 0;
}

.video-label {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff2d2d;
    color: white;
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: bold;
    z-index: 2;
}
.modal-video-container {
    /* width: 90vw; */
    height: 90vh;
    /* max-width: 90vw; */
    /* max-height: 90vh; */
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 5px;
    overflow: hidden;
}

.modal-video {
    width: 100%;
    height: 100%;
    aspect-ratio: 16/9;
    border: none;
}



.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-12 {
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}

.screenshots-section {
    margin-bottom: 30px;
    background: #181818;
    padding: 20px;
    border-radius: 10px;
    border: #3278ff solid 1px;
}

h2 {
    font-size: 30px;
    text-align: center;
    margin-bottom: 20px;
    color: #d7fe7b;
}

.screenshots-gallery {
    position: relative;
    margin-bottom: 25px;
}

.screenshots-container {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.screenshots-container::-webkit-scrollbar {
    display: none;
}

.scroll-indicator {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    width: 30px;
    height: 60px;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
    z-index: 10;
}

.scroll-indicator.left {
    left: 0;
    border-radius: 0 5px 5px 0;
}

.scroll-indicator.right {
    right: 0;
    border-radius: 5px 0 0 5px;
}

.scroll-indicator:hover {
    opacity: 1;
    background: rgba(0,0,0,0.7);
}

.product-info {
    border-radius: 5px;
    text-align: center;
    color: #e0e0e0;
    background: #111111;
    padding: 1px;
    margin-bottom: 15px;
}

.product-info h3 {
    color: white;
    margin: 10px;
    font-weight: bold;
    font-size: 20px;
}

.product-info p {
    margin: 0px;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.action-button {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.action-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

#screenshotModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

#modalImage {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 8px;
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.5); */
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 1));
}

#closeModal {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    z-index: 10001;
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    width: 40px;
    height: 60px;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
    z-index: 10001;
}

.modal-nav:hover {
    opacity: 1;
    background: rgba(0,0,0,0.7);
}

#modalPrev {
    left: -50px;
}

#modalNext {
    right: -50px;
}

.screenshot-item {
    min-width: 280px;
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
}

.screenshot-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.screenshot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.adminlist_title {
    font-size: 24px;
    font-weight: bold;
    margin: 10px 0;
    text-align: center;
    color: #d7fe7b;
}

.adminlist_blocks {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 10px;
    margin-bottom: 30px;
}

.admin_card {
    background: #1a1a1a;
    border-radius: 8px;
    line-break: anywhere;
    padding: 5px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    /* height: 105px; */
    display: flex;
    flex-direction: column;
    gap: 3px;
}

#block-creator {
    border: 1px solid #ff86b8;
}

#block-bot {
    border: 1px solid #ba94ff;
}

#block-admin {
    border: 1px solid #ccffa2;
}

#block-player {
    border: 1px solid #303030;
}
.banned-user {
    border: 1px solid #ff4444 !important;
}

#block-banned {
    border: 1px solid #ff5757;
}

.admins_card {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.adminlist_info {
    display: flex;
    gap: 10px;
}

.avatar_block {
    position: relative;
}

.admins_avatar {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    object-fit: cover;
}

.avatar_letter {
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    text-transform: uppercase;
    border-radius: 5px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
}

.adminlist_button {
    position: absolute;
    right: 0px;
    left: 0px;
    padding: 4px 5px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
}

#tag-creator {
    background: linear-gradient(45deg, rgb(176, 90, 36), rgb(210, 79, 188));
    color: #ffffff;
    display: flex;
    align-items: flex-end;
}

#tag-bot {
    background: linear-gradient(45deg, rgb(84, 65, 255), rgb(169, 132, 255));
    color: #ffffff;
    display: flex;
    align-items: flex-end;
}

#tag-admin {
    background: linear-gradient(45deg, rgb(0, 99, 16), rgb(0, 146, 32));
    color: #ffffff;
    display: flex;
    align-items: flex-end;
}

#tag-player {
    background: linear-gradient(45deg, rgb(4, 37, 61), rgb(10, 81, 119));
    color: white;
    display: flex;
    align-items: flex-end;
}

#tag-banned {
    background: linear-gradient(45deg, rgb(92, 14, 14), rgb(196, 40, 40));
    color: white;
    display: flex;
    align-items: flex-end;
}

.adminlist_buttons {
    flex: 1;
}

#admins_info {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.admin_nickname {
    font-weight: bold;
    font-size: 16px;
    color: white;
}

.admin_group, .admin_term {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}


.admin_group_text {
    color: #e8ff7f;
    border-radius: 3px;
    font-size: 12px;
}
.admin_group_text_ban {
    color: #ff5454;
    border-radius: 3px;
    font-size: 12px;
}
.admin_term_text {
    color: #b0b0b0;
    border-radius: 3px;
    font-size: 12px;
}
.admin_term_reason {
    color: #6bbcff;
    background: #000000;
    padding: 2px 5px;
    margin-top: 1px;
    border-radius: 3px;
    font-size: 12px;
}


.admin_group_icon {
    width: 16px;
    height: 16px;
}
#link_prof {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #3278ff;
    text-decoration: none;
    font-size: 12px;
}

#link_prof:hover {
    text-decoration: underline;
}

#link_prof svg {
    width: 20px;
    height: 20px;
}

#no-link {
    color: #7a7a7a;
    font-size: 12px;
    margin: 0px 0;
}

#b_reason {
    font-size: 12px;
    color: #7a7a7a;
    margin-bottom: 5px;
}

.banned_reason {
    color: #ff5757 !important;
    font-size: 12px;
    margin: 0;
}
#link_block{
    padding-left: 90px;
    /* position: absolute; */
    display: flex;
    gap: 5px;
    height: 20px;
}






.avatar_letter{
    /* z-index: 0 !important; */
    background: linear-gradient(45deg, rgb(0, 0, 0), rgb(5, 0, 49));
    font-size: 35px;
    border-radius: 3px;
    
}
.admins_avatar{
    border-radius: 3px;
    position: relative !important;
    /* z-index: 1000 !important; */

}
#link_prof {
    display: inline-flex;
    background: #000000;
    color: #ffffff;
    padding: 0px 10px;
    border-radius: 3px;
    height: 25px !important;
}
.adminlist_button{
    font-family: Rubik;
    height: 18px !important;
    font-size: 12px !important;
    line-height: 17px;
    font-weight: 500 !important;
    padding: 0px 0px;
}
#no-link {
    color: #464646;
}
.discord-link svg{
    fill: #fff;
}
#link_block{
    display: flex;
    height: 25px !important;
    align-content: center;
    align-items: center;
}
.adminlist_button{
    border-radius: 3px;
    position: absolute;
    right: 0px;
    left: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
}
img[src=""], 
img:not([src]), 
img[src*="null"],
img[src*="undefined"] {
    visibility: hidden !important;
}
.admin_card {
    height: 109px;
    border-radius: 5px;
}
.screenshots-section{
    border-radius: 5px;
}
.screenshots-container{
    background: #111111;
    border-radius: 5px;
}

#link_block {
    display: flex;
    height: 18px !important;
    align-items: flex-end;
    flex-direction: row;
}
.admin_card{
    height: auto;
}
a:link, a:visited, a:hover, a:active {
    text-decoration: none !important;
}
.discord-link{
    transition: all 0.3s ease !important;
    background: #000000 !important;
    border: #ffffff00 solid 1px;
}
.discord-link:hover{
    border: #ffffff25 solid 1px;
    background: #303030 !important;
}
.discord-link svg {
    fill: #5662f6 !important;
}
#no-link{
    transition: all 0.3s ease !important;
}
.discord-link:hover #no-link{
    color: #ff7777 !important;
}
#link_prof svg {
    width: 19px;
    height: 19px;
}




#link_prof {
    display: inline-flex;
    align-items: center;
    /* text-decoration: none; */
    color: inherit;
    background-color: #36393f;
    /* border-radius: 4px; */
    /* padding: 4px 8px; */
    transition: all 0.3s ease;
    max-width: 20px;
    overflow: hidden;
    white-space: nowrap;
}

#link_prof:hover {
    max-width: 200px;
    /* padding: 4px 12px; */
}
#link_prof svg {
    flex-shrink: 0;
}
.discord-username {
    opacity: 0;
    color: #ffffff;
    transition: opacity 0.2s ease 0.1s;
}
#link_prof:hover .discord-username {
    opacity: 1;
}
.telegram-link svg {
    fill: #30a3e6 !important;
    width: 19px !important;
    height: 15px !important;
}
.profil-link svg {
    fill: #fe7b7b !important;
    width: 19px !important;
    height: 16px !important;
}
#link_prof {
    display: inline-flex;
    background: #000000;
    color: #ffffff;
    padding: 0px 10px;
    border-radius: 3px;
    height: 23px !important;
}


.scroll-arrow {
    backdrop-filter: blur(10px) !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 auto !important;
    width: 120px !important;
    text-align: center;
    padding: 3px 0px !important;
    font-size: 12px !important;
    border-radius: 3px !important;
    font-weight: 500 !important;
    transform: unset !important;
}