﻿body {
    margin: 0;
    font-family: 'Cinzel', serif;
    background: radial-gradient(circle at top, #1a0f2b 0%, #0b0613 70%);
    color: #e6d9ff;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    background: rgba(20, 8, 35, 0.95);
    border-bottom: 1px solid #5b21b6;
    box-shadow: 0 0 20px rgba(126, 34, 206, 0.3);
}

.site-title {
    font-family: 'Uncial Antiqua', cursive;
    font-size: 24px;
    color: #c084fc;
    text-shadow: 0 0 12px #7e22ce;
    text-decoration: none;
}

.nav-links a,
.social-links a {
    margin: 0 15px;
    text-decoration: none;
    color: #d8b4fe;
    font-weight: 600;
    transition: 0.3s ease;
}

    .nav-links a:hover,
    .social-links a:hover {
        color: #ffffff;
        text-shadow: 0 0 10px #c084fc;
    }

/* MAIN CONTENT */
main {
    padding: 60px 40px;
    max-width: 1100px;
    margin: auto;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 30px;
    border-top: 1px solid #5b21b6;
    margin-top: 60px;
    color: #7e22ce;
    font-size: 14px;
    opacity: 0.8;
}

.page-title {
    text-align: center;
    font-family: 'Uncial Antiqua', cursive;
    font-size: 42px;
    margin-bottom: 50px;
    color: #c084fc;
    text-shadow: 0 0 15px #7e22ce;
    letter-spacing: 2px;
}

/* Commands Styles */

.section-title {
    margin-top: 50px;
    margin-bottom: 18px;
    color: #a855f7;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Uncial Antiqua', cursive;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
}

    .section-title::before,
    .section-title::after {
        content: '';
        flex: 1;
        height: 1px;
        background: linear-gradient(90deg, transparent, #5b21b6);
    }

    .section-title::after {
        background: linear-gradient(90deg, #5b21b6, transparent);
    }

.command {
    background: rgba(35, 15, 60, 0.85);
    border: 1px solid rgba(91, 33, 182, 0.5);
    border-left: 3px solid #7e22ce;
    padding: 16px 20px;
    margin-bottom: 14px;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 0 20px rgba(126, 34, 206, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

    .command:hover {
        border-left-color: #c084fc;
        box-shadow: 0 0 28px rgba(192, 132, 252, 0.45), inset 0 0 40px rgba(126, 34, 206, 0.08);
        transform: translateX(4px);
    }

.command-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
    gap: 12px;
}

.command h3 {
    margin: 0;
    color: #e9d5ff;
    font-weight: 700;
    font-size: 17px;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .command h3::before {
        content: '⚜';
        font-size: 12px;
        color: #a855f7;
        opacity: 0.8;
    }

.command p {
    margin: 0;
    color: #b8a3d8;
    font-size: 14px;
    line-height: 1.7;
    padding-left: 20px;
}

.cooldown-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(126, 34, 206, 0.2);
    border: 1px solid rgba(168, 85, 247, 0.4);
    color: #c084fc;
    font-size: 11px;
    font-family: 'Cinzel', serif;
    letter-spacing: 0.5px;
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
}

    .cooldown-badge.no-cooldown {
        background: transparent;
        border-color: rgba(91, 33, 182, 0.2);
        color: #4a3060;
    }

/* MAIN CONTAINER */
.artists-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* ARTIST CARD */
.artist-card {
    border-radius: 16px;
    border: 1px solid rgba(91, 33, 182, 0.5);
    background: rgba(35, 15, 60, 0.85);
    padding: 28px;
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 1100px;
    margin: auto;
    width: 100%;
    transition: all 0.3s ease;
}

    .artist-card:hover {
        border-color: rgba(192, 132, 252, 0.5);
        box-shadow: 0 0 35px rgba(126, 34, 206, 0.35);
        transform: translateY(-3px);
    }

/* AVATAR */
.artist-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(168, 85, 247, 0.4);
    box-shadow: 0 0 20px rgba(192, 132, 252, 0.3);
    flex-shrink: 0;
    animation: avatarGlow 3s infinite alternate;
    transition: transform 0.3s ease;
}

    .artist-avatar:hover {
        transform: scale(1.06);
    }

@keyframes avatarGlow {
    from {
        box-shadow: 0 0 12px rgba(192, 132, 252, 0.25);
    }

    to {
        box-shadow: 0 0 28px rgba(192, 132, 252, 0.7);
    }
}

/* CONTENT */
.artist-content {
    flex: 1;
}

/* HEADER — name + socials */
.artist-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

    .artist-header h2 {
        margin: 0;
        color: #e9d5ff;
        font-size: 18px;
    }

/* SOCIAL ICONS */
.artist-socials {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
}

.social-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(126, 34, 206, 0.2);
    border: 1px solid rgba(168, 85, 247, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    text-decoration: none;
}

    .social-icon img {
        width: 18px;
        height: 18px;
        filter: brightness(0) saturate(100%) invert(79%) sepia(21%) saturate(694%) hue-rotate(230deg) brightness(102%) contrast(101%);
        opacity: 0.85;
        transition: filter 0.25s ease, opacity 0.25s ease;
    }

    .social-icon:hover {
        background: rgba(192, 132, 252, 0.25);
        border-color: #c084fc;
        box-shadow: 0 0 10px rgba(192, 132, 252, 0.4);
        transform: scale(1.15);
    }

        .social-icon:hover img {
            filter: brightness(0) saturate(100%) invert(79%) sepia(21%) saturate(694%) hue-rotate(230deg) brightness(110%) contrast(105%) drop-shadow(0 0 6px #c084fc);
            opacity: 1;
        }

/* DIVIDER */
.artist-divider {
    height: 1px;
    background: rgba(91, 33, 182, 0.3);
    margin-bottom: 12px;
}

/* CONTRIBUTIONS */
.artist-contributions h3 {
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Uncial Antiqua', cursive;
    margin: 0 0 10px 0;
    font-size: 14px;
    color: #a855f7;
}

.artist-contributions ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.artist-contributions li {
    line-height: 1.5;
    padding: 6px 12px;
    border-left: 2px solid #7e22ce;
    border-radius: 0 6px 6px 0;
    background: rgba(126, 34, 206, 0.08);
    font-size: 15px;
    color: #d8b4fe;
}

/* MOBILE */
@media (max-width: 768px) {
    .artist-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .artist-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .artist-avatar {
        align-self: center;
    }
}