body {
    margin: 0;
    background: #0E0E0E;
    color: #F5C518;
    font-family: 'Orbitron', sans-serif;
}

/* Автор проекта */

.author-box {
    background: linear-gradient(135deg,#1A1A1A,#111);
    border: 3px solid #F5C518;
    padding: 30px;
    margin-bottom: 40px;
    text-align: center;
    box-shadow: 0 0 30px rgba(245,197,24,0.25);
}

.author-box h2 {
    margin: 0;
    font-family: 'Russo One', sans-serif;
    font-size: 32px;
    text-transform: uppercase;
}

.author-role {
    margin-top: 15px;
    font-size: 18px;
    color: white;
    letter-spacing: 2px;
}

.wrapper {
    max-width: 1300px;
    margin: auto;
    padding: 40px;
}

/*  Шапка */

.header {
    display: flex;
    align-items: center;
    border-bottom: 3px solid #F5C518;
    padding-bottom: 20px;
}

.header img {
    width: 140px;
    margin-right: 30px;
}

.title h1 {
    margin: 0;
    font-family: 'Russo One', sans-serif;
    font-size: 40px;
    text-transform: uppercase;
    color: #F5C518;

    animation: pulseGlow 2.5s ease-in-out infinite;
}

.title h2 {
    margin: 8px 0 0 0;
    font-size: 20px;
    color: #FFD54A;
    letter-spacing: 3px;
}

.description {
    margin: 40px 0;
    font-size: 18px;
    line-height: 1.6;
}

/* Основная часть  */

.main {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.left {
    flex: 2;
    min-width: 0;
}

.right {
    flex: 1;
    min-width: 280px;
}


.left { flex: 2; }
.right { flex: 1; }

.section {
    background: #141414;
    padding: 30px;
    margin-bottom: 35px;
    border-left: 5px solid #F5C518;
    box-shadow: 0 0 25px rgba(245,197,24,0.08);
}

.section h3 {
    margin-top: 0;
    margin-bottom: 30px;
    font-family: 'Russo One', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Ник */

.member {
    margin-bottom: 25px;
}

.member-name {
    font-family: 'Russo One', sans-serif;
    font-size: 18px;
    color: #FFD54A;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.member-desc {
    padding: 18px 20px;
    background: #111;
    border: 2px solid #F5C518;
    border-radius: 14px;

    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.5px;

    /* Градиент текста */
    background-image: linear-gradient(90deg, #fff 0%, #ffe066 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* Внутренний штрих + свечение */
    box-shadow:
        inset 0 0 0 1px rgba(245,197,24,0.2),
        0 0 18px rgba(245,197,24,0.18);

    transition: 0.2s ease;
}


.member-desc:hover {
    box-shadow:
        inset 0 0 0 1px rgba(245,197,24,0.35),
        0 0 25px rgba(245,197,24,0.35);
}


.member-desc {
    font-size: 14px;
    color: #e0e0e0;
}


ul { padding-left: 20px; }
li { margin-bottom: 10px; }

/*  Донаты */

.donate-box {
    background: #1A1A1A;
    padding: 25px;
    border: 3px solid #F5C518;
    box-shadow: 0 0 25px rgba(245,197,24,0.25);
}

.donate-list {
    height: 220px;
    overflow-y: auto;
    margin-bottom: 15px;
    padding-right: 6px;
}

.donate-list::-webkit-scrollbar {
    width: 6px;
}
.donate-list::-webkit-scrollbar-thumb {
    background: #F5C518;
}

.donate-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #333;
}

.rank {
    width: 30px;
    font-weight: bold;
}

.name { flex: 1; }
.amount { color: white; }

/* ТОП 3 */

.top1 { background: linear-gradient(90deg,#FFD70022,transparent); }
.top2 { background: linear-gradient(90deg,#C0C0C022,transparent); }
.top3 { background: linear-gradient(90deg,#CD7F3222,transparent); }

.crown { margin-right: 6px; }
.gold { color: #FFD700; }
.silver { color: #C0C0C0; }
.bronze { color: #CD7F32; }

.total {
    border-top: 2px solid #F5C518;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    font-size: 18px;
}

.total span {
    font-weight: bold;
    color: white;
}

.hero-title {
    font-family: 'Russo One', sans-serif;
    font-size: 32px;
    letter-spacing: 4px;
    color: white;
    text-transform: uppercase;
}

.hero-subtitle {
    font-family: 'Russo One', sans-serif;
    font-size: 22px;
    letter-spacing: 3px;
    color: #eaeaea;
    text-transform: uppercase;
    margin-top: 10px;
}

@keyframes pulseGlow {
    0% {
        text-shadow: 
            0 0 5px rgba(245,197,24,0.3),
            0 0 15px rgba(245,197,24,0.2);
    }
    50% {
        text-shadow: 
            0 0 15px rgba(245,197,24,0.8),
            0 0 35px rgba(245,197,24,0.6);
    }
    100% {
        text-shadow: 
            0 0 5px rgba(245,197,24,0.3),
            0 0 15px rgba(245,197,24,0.2);
    }
}











/*  ФАН АРТЫ  */

.fanarts-section {
    margin-top: 80px;
}

.fanarts-title {
    font-family: 'Russo One', sans-serif;
    font-size: 26px;
    text-transform: uppercase;
    margin-bottom: 40px;
    border-left: 5px solid #F5C518;
    padding-left: 15px;
}

.fanart-card {
    background: #141414;
    padding: 25px;
    margin-bottom: 50px;
    border-left: 4px solid #F5C518;
    box-shadow: 0 0 20px rgba(245,197,24,0.08);
}

.fanart-nick {
    font-family: 'Russo One', sans-serif;
    font-size: 18px;
    color: #FFD54A;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.fanart-quote {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

/* Лента артов */

.fanart-gallery {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
}

/* Скроллбар */
.fanart-gallery::-webkit-scrollbar {
    height: 6px;
}

.fanart-gallery::-webkit-scrollbar-thumb {
    background: #F5C518;
}

/* Сам арт */

.fanart-gallery img {
    height: 180px;
    border: 2px solid #F5C518;
    border-radius: 12px;
    flex-shrink: 0;
    transition: 0.2s ease;
}

.fanart-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(245,197,24,0.5);

}
