/*                              body                              */

body {
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    width: 10px;
    background-color: rgba(0, 0, 0, 0);
}

body::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #333;
}

body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0);
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0);
}

/*                              header                              */

.line {
    position: fixed;
    width: 100%;
    left: 0;
    height: 60px;
    background-color: #330033;
    top: 0;
    z-index: 5;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}

.logotext {
    background: rgba(255, 255, 255, 0);
    cursor: pointer;
    width: 235px;
}

.line img {
    width: 60px;
    margin-top: -1px;
}

.texttop {
    color: #FFF;
    position: absolute;
    margin-top: -50px;
    margin-left: 60px;
    font-size: 35px;
}

/*                              content                              */

/* список по центру страницы, элементы идут слева направо */
.support {
    list-style: none;
    padding: 0;
    margin: 50px auto 0;           /* сверху отступ, по горизонтали центр */
    display: flex;
    justify-content: center;       /* центрируем по горизонтали */
    gap: 40px;                     /* расстояние между li */
}

/* каждый пункт списка — вертикальная колонка, текст над картинкой */
.support li {
    display: flex;
    flex-direction: column;        /* текст сверху, картинка снизу */
    align-items: center;           /* всё по центру по горизонтали */
    text-align: center;
}

/* текст над картинкой */
.support li .text {
    color: #fff;
    font-size: 25px;
    margin-bottom: 10px;           /* отступ между текстом и картинкой */
}

/* картинки 100x100 и по центру */
.support li img {
    width: 100px;
    height: 100px;
    display: block;
    cursor: pointer;               /* cursor:pointer при наведении */
}

/* небольшое визуальное реагирование при наведении */
.support li img:hover {
    transform: scale(1.05);
    transition: transform 0.1s linear;
}

/*                              footer                              */

.line2 {
    position: fixed;
    width: 100%;
    left: 0;
    height: 130px;
    background-color: #330033;
    bottom: 0px;
    z-index: 5;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.6);
}

.logotext2 {
    background: rgba(255, 255, 255, 0);
    cursor: pointer;
    transform: translate(-50%,0%);
    margin-left: 50%;
    width: 450px;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.line2 img {
    width: 60px;
    margin-top: -1px;
}

.textdown {
    color: #FFF;
    font-size: 20px;
}

.social-links {
    margin-top: 5px;
}

.social-links a {
    color: #8F00FF;
    text-decoration: none;
    margin: 0 10px;
    font-size: 14px;
}

.social-links a:hover {
    text-decoration: underline;
}