.account-show {
    padding: 100px 0 80px;
}

.account-back {
    display: inline-block;
    font-size: 0.875rem;
    color: var(--text-dim);
    text-decoration: none;
    margin-bottom: 2rem;
}

.account-back:hover {
    color: var(--primary);
}

.account-show-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.gallery-main {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-card);
    aspect-ratio: 4 / 3;
}

.gallery-main img,
.gallery-main video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-placeholder {
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px dashed var(--border);
    border-radius: var(--radius);
    color: var(--text-dim);
    font-weight: 700;
}

.gallery-thumbs {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.gallery-thumb {
    width: 72px;
    height: 72px;
    padding: 0;
    border: 2px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background: var(--bg-card);
    position: relative;
}

.gallery-thumb.active {
    border-color: var(--primary);
}

.gallery-thumb img,
.gallery-thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    color: white;
    font-size: 14px;
}

.account-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.badge-verified {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
}

.account-details h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.account-meta {
    color: var(--text-dim);
    margin-bottom: 1.5rem;
}

.account-description {
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.account-highlights {
    list-style: none;
    margin-bottom: 2rem;
}

.account-highlights li {
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: var(--text-dim);
    display: flex;
    gap: 0.5rem;
}

.account-purchase-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.purchase-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.purchase-row strong {
    color: var(--primary);
}

.account-cta {
    width: 100%;
    margin-top: 1rem;
    justify-content: center;
}

.account-share-note {
    font-size: 0.8rem;
    color: var(--text-dim);
    line-height: 1.5;
}

.account-card-image-link {
    display: block;
}

.account-card-placeholder {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    color: var(--text-dim);
    font-weight: 600;
}

@media (max-width: 900px) {
    .account-show-layout {
        grid-template-columns: 1fr;
    }
}
