﻿.fa-container {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.fa-banner {
    width: 100%;
    height: 380px;
    border: 1px solid var(--border-classic);
    border-radius: var(--radius-modern);
    display: flex;
    align-items: flex-end;
    padding: 2.5rem 4rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    background-position: center 35%;
    background-size: cover;
    background-repeat: no-repeat;
}

    .fa-banner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to top, rgba(10, 10, 13, 0.95) 10%, rgba(10, 10, 13, 0.4) 60%, transparent 100%);
        z-index: 1;
    }

    .fa-banner.banner-no-image {
        background: linear-gradient(135deg, rgba(255, 118, 27, 0.16) 0%, rgba(18, 18, 24, 0.98) 55%), radial-gradient(circle at 80% 50%, rgba(255, 118, 27, 0.15), transparent 50%), repeating-linear-gradient(45deg, #161622 0px, #161622 2px, transparent 2px, transparent 12px) !important;
    }

        .fa-banner.banner-no-image::before {
            display: none;
        }

.banner-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

    .banner-content h1 {
        font-size: 44px;
        font-weight: 900;
        letter-spacing: -0.03em;
        margin-bottom: 8px;
        line-height: 1.1;
    }

        .banner-content h1 span {
            color: var(--accent-orange);
            text-shadow: 0 0 20px var(--accent-glow);
        }

    .banner-content p {
        color: #cbd5e1;
        font-size: 16px;
        max-width: 650px;
        text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    }

/* --- КОМПАКТНЫЕ БЛОКИ --- */
.fa-block {
    background-color: var(--bg-block);
    border: 1px solid var(--border-classic);
    border-radius: var(--radius-modern);
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.fa-block-header {
    background-color: rgba(24, 24, 32, 0.9);
    padding: 10px 16px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--border-classic);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .fa-block-header a {
        font-size: 11px;
    }

.fa-block-body {
    padding: 12px;
}

/* --- RECENT SUBMISSIONS --- */
.submissions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
}

.art-item {
    position: relative;
    background: transparent;
    border-radius: 0;
    overflow: visible;
    cursor: pointer;
    transition: var(--transition);
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .art-item:hover {
        transform: scale(1.02);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
        z-index: 5;
    }

    .art-item img {
        width: 100%;
        display: block;
        object-fit: contain;
        border-radius: var(--radius-modern);
        background-color: #181824;
        transition: background-color 0.3s ease;
    }

        .art-item img.loaded {
            background-color: transparent;
        }

.art-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 10px 8px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
    color: var(--text-primary);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
    border-bottom-left-radius: var(--radius-modern);
    border-bottom-right-radius: var(--radius-modern);
}

.art-item:hover .art-overlay {
    opacity: 1;
}

.art-overlay .title {
    font-weight: 700;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.art-overlay .user {
    font-size: 11px;
    color: var(--text-muted);
}

/* --- Сетки для музыки и сьютов --- */
.compact-rows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 10px;
}

.compact-row-item {
    background-color: rgba(11, 11, 14, 0.5);
    border: 1px solid var(--border-classic);
    border-radius: var(--radius-modern);
    padding: 8px 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: var(--transition);
}

    .compact-row-item:hover {
        border-color: var(--accent-orange);
        background-color: rgba(255,255,255,0.01);
    }

.mini-preview {
    width: 44px;
    height: 44px;
    background: #181824;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .mini-preview svg {
        fill: #3a3a4a;
        width: 20px;
        height: 20px;
    }

.compact-row-item:hover .mini-preview svg {
    fill: var(--accent-orange);
}

.compact-row-item .art-title {
    font-size: 12px;
}

.compact-row-item .art-user {
    font-size: 10px;
}

/* --- ДВУХКОЛОНОЧНЫЙ НИЗ --- */
.split-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

@media (max-width: 1024px) {
    .split-layout {
        grid-template-columns: 1fr;
    }
}

.journal-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

@media (max-width: 600px) {
    .journal-container {
        grid-template-columns: 1fr;
    }
}

.journal-row {
    padding: 10px 12px;
    background-color: rgba(11, 11, 14, 0.4);
    border: 1px solid var(--border-classic);
    border-radius: var(--radius-modern);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .journal-row:hover {
        border-color: var(--accent-orange);
    }

    .journal-row .art-user {
        font-size: 10px;
    }

.stats-list {
    display: grid;
    grid-template-columns: 1fr auto;
    row-gap: 10px;
    font-size: 13px;
}

    .stats-list dt {
        color: var(--text-muted);
    }

    .stats-list dd {
        font-weight: 700;
        color: var(--accent-orange);
    }
