/**
 * Poem Viewer Styles - Poetry Translated
 * Perfect Reading Experience: Black, Navy, Pink, Terracotta
 * Clean, minimal, distraction-free
 */

:root {
    /* Modern Clean Design System */
    --black-bg: #000000;
    --navy-card: #0a1e43;
    --navy-hover: #1a3a5c;
    --terracotta: #95472d;
    --terracotta-hover: #b86847;
    --pink-active: #6e0f3d;
    --text-white: #FFFFFF;
    --text-grey: #A0A0A0;
    --text-dim: #707070;
    --border-subtle: rgba(255, 255, 255, 0.1);
    --border-medium: rgba(255, 255, 255, 0.2);
}

/* Default English font for all text */
body, button, input, select, textarea {
    font-family: 'Crimson Pro', Georgia, serif;
}

/* Arabic text uses UKIJ Merdane */
[lang="ar"], .arabic-text, .title-arabic, .arabic-verse, .poet-name-ar {
    font-family: 'UKIJ Merdane', 'HSN Naskh', 'Amiri', serif;
}

/* ====================
   PAGE CONTAINER
   ==================== */
.poem-viewer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    background: var(--black-bg);
}

/* ====================
   HEADER BAR
   ==================== */
.poem-header {
    position: sticky;
    top: 0;
    background: var(--navy-card);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-subtle);
    z-index: 100;
}

.poem-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
}

.back-btn {
    font-family: 'Crimson Pro', Georgia, serif;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--terracotta);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
}

.back-btn:hover {
    color: var(--terracotta-hover);
    transform: translateX(-5px);
}

.back-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.poem-actions {
    display: flex;
    gap: 15px;
}

.favorite-btn,
.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-medium);
    color: var(--text-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.favorite-btn:hover,
.share-btn:hover {
    background: rgba(149, 71, 45, 0.2);
    border-color: var(--terracotta);
    color: var(--terracotta);
}

.favorite-btn.favorited {
    background: var(--terracotta);
    color: var(--text-white);
}

.favorite-btn svg,
.share-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* ====================
   POEM INFO SECTION
   ==================== */
.poem-info-section {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    margin: 40px 0;
}

.poem-cover-area {
    position: sticky;
    top: 100px;
}

.poem-cover {
    position: relative;
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy-card), var(--navy-hover));
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.poem-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.default-poem-cover {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    text-align: center;
    background: linear-gradient(135deg, #0A0A0A 0%, #1a1a1a 100%);
    position: relative;
}

.cover-text-ar {
    font-family: 'UKIJ Merdane', 'HSN Naskh', 'Amiri', serif;
    font-size: 1.8rem;
    color: #FAFAFA;
    margin-bottom: 10px;
    direction: rtl;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.cover-text-en {
    font-family: 'Crimson Pro', Georgia, serif;
    font-size: 1.2rem;
    color: rgba(250, 250, 250, 0.8);
    margin-bottom: 20px;
}

.cover-era-badge {
    position: absolute;
    bottom: 20px;
    color: rgba(250, 250, 250, 0.6);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--terracotta);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 10px 40px rgba(149, 71, 45, 0.4);
}

.hero-play-btn:hover {
    /* Keep centered while scaling - use width/height instead of transform scale */
    width: 88px;
    height: 88px;
    background: var(--terracotta-hover);
    box-shadow: 0 15px 60px rgba(149, 71, 45, 0.6);
}

.hero-play-btn svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
    margin-left: 5px;
}

/* ====================
   POEM METADATA
   ==================== */
.poem-metadata {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.poem-title {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.title-arabic {
    font-family: 'UKIJ Merdane', 'HSN Naskh', 'Amiri', serif;
    font-size: 3.45rem; /* Increased from 3rem (+15%) */
    color: var(--text-white);
    /* NO GLOW - Clean and simple */
}

.title-english {
    font-family: 'Crimson Pro', Georgia, serif;
    font-size: 2.07rem; /* Increased from 1.8rem (+15%) */
    color: var(--text-grey);
}

.poet-info {
    margin-bottom: 10px;
}

.poet-link {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    text-decoration: none;
    transition: all 0.3s;
}

.poet-link:hover {
    transform: translateX(5px);
}

.poet-arabic {
    font-family: 'UKIJ Merdane', 'HSN Naskh', 'Amiri', serif;
    font-size: 1.3rem;
    color: var(--terracotta);
}

.poet-english {
    font-size: 1rem;
    color: rgba(149, 71, 45, 0.8);
}

.poem-stats {
    display: flex;
    gap: 30px;
    padding: 20px 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.stat {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-grey);
    font-size: 0.95rem;
}

.stat svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    opacity: 0.6;
}

.poem-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    padding: 6px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-medium);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-white);
}

.era-tag {
    background: rgba(149, 71, 45, 0.1);
    border-color: rgba(149, 71, 45, 0.3);
    color: var(--terracotta);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.era-tag:hover {
    background: rgba(149, 71, 45, 0.25);
    border-color: var(--terracotta);
    transform: translateY(-2px);
}

.date-tag {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    color: #60a5fa;
}

.special-tag {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    border-color: rgba(255, 215, 0, 0.3);
    color: #FFD700;
}

/* ====================
   POET BIO SECTION
   ==================== */
.poet-bio-section {
    margin: 40px 0;
}

.poet-bio-dropdown {
    background: var(--navy-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    overflow: hidden;
}

.bio-toggle {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-white);
    transition: all 0.3s;
    list-style: none;
}

.bio-toggle:hover {
    background: var(--navy-hover);
}

.bio-toggle svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    transition: transform 0.3s;
}

details[open] .bio-toggle svg {
    transform: rotate(180deg);
}

.bio-content {
    padding: 0 20px 20px;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bio-arabic {
    font-family: 'UKIJ Merdane', 'HSN Naskh', 'Amiri', serif;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text-white);
}

.bio-english {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-grey);
}

/* ====================
   CONTEXT SECTION
   ==================== */
.poem-context-section {
    background: var(--navy-card);
    border-left: 3px solid var(--terracotta);
    padding: 20px 30px;
    margin: 40px 0;
    border-radius: 8px;
}

.poem-context-section h3 {
    color: var(--terracotta);
    margin-bottom: 15px;
}

.context-text {
    color: var(--text-grey);
    line-height: 1.6;
}

/* ====================
   POEM DISPLAY - THE MAGIC
   ==================== */
.poem-display-section {
    margin: 60px 0;
}

.display-controls {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
}

.font-size-btn,
.layout-toggle-btn {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-medium);
    color: var(--text-white);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.font-size-btn:hover,
.layout-toggle-btn:hover {
    background: rgba(149, 71, 45, 0.1);
    border-color: var(--terracotta);
    color: var(--terracotta);
}

.layout-toggle-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* ====================
   DUAL-PAGE LAYOUT (DESKTOP)
   ==================== */
.poem-pages {
    background: var(--black-bg);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    overflow: hidden;
}

.poem-pages.desktop-view {
    display: flex;
    gap: 80px; /* Gutter between pages */
}

.poem-pages.mobile-view {
    display: none;
}

.poem-page {
    flex: 1;
    padding: 40px;
}

.arabic-page {
    /* Right page - Arabic dominant */
}

.english-page {
    /* Left page - English subordinate */
}

.page-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-subtle);
}

.page-title {
    font-size: 1.2rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ====================
   VERSES
   ==================== */
.verses-container {
    max-width: 600px;
    margin: 0 auto;
}

.verse-line {
    display: flex;
    gap: 20px;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: color 0.3s ease; /* CLEAN - Only color change */
    position: relative;
}

.verse-line:hover {
    background: rgba(255, 255, 255, 0.03);
}

.verse-number {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    font-size: 0.85rem;
    color: var(--text-dim);
    transition: all 0.3s ease;
}

.verse-text {
    flex: 1;
    transition: color 0.3s ease; /* CLEAN - Only color change */
}

/* Arabic Verses - EQUAL PROMINENCE */
.arabic-verse .verse-text {
    font-family: 'UKIJ Merdane', 'HSN Naskh', 'Amiri', serif;
    font-size: 1.6rem; /* Equal size for both languages */
    color: var(--text-white);
    text-align: right;
    direction: rtl;
    line-height: 2;
}

/* English Verses - EQUAL PROMINENCE */
.english-verse .verse-text {
    font-family: 'Crimson Pro', Georgia, serif;
    font-size: 1.6rem; /* Equal size - both are primary content */
    color: var(--text-white); /* Bright white - equal prominence */
    line-height: 1.8;
}

.transliteration-verse .verse-text {
    font-style: italic;
    color: var(--text-dim);
    font-size: 0.95rem;
}

/* ====================
   ACTIVE VERSE - VIRAL PINK GLOW
   TikTok-worthy highlighting with background glow
   ==================== */
.verse-line.active,
.verse-line.playing {
    background: rgba(110, 15, 61, 0.15); /* Pink background glow */
    border-left: 3px solid var(--pink-active); /* Pink accent border */
    box-shadow: 0 0 20px rgba(110, 15, 61, 0.2); /* Soft pink shadow */
}

.verse-line.active .verse-text,
.verse-line.playing .verse-text {
    color: var(--text-white); /* Keep text WHITE for readability */
}

.verse-line.active .verse-number,
.verse-line.playing .verse-number {
    background: var(--pink-active);
    color: var(--text-white);
    border-color: var(--pink-active);
    box-shadow: 0 0 15px rgba(110, 15, 61, 0.5); /* Number glows too */
}

/* Perfect for screenshots - pink glow + readable white text */

/* ====================
   MOBILE STACKED LAYOUT
   ==================== */
.verse-group {
    padding: 20px;
    border-bottom: 1px solid var(--border-subtle);
}

.verse-group:last-child {
    border-bottom: none;
}

.verse-line.mobile {
    margin-bottom: 12px;
}

/* ====================
   RELATED POEMS
   ==================== */
.related-poems-section,
.poet-poems-section {
    margin: 60px 0;
}

.section-title {
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-subtle);
}

.related-poems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.related-poem-card {
    background: var(--navy-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
}

.related-poem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--terracotta);
}

.related-link {
    text-decoration: none;
    display: block;
}

.related-cover {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--navy-card), var(--navy-hover));
    display: flex;
    align-items: center;
    justify-content: center;
}

.related-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.default-cover-small {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px;
    text-align: center;
    background: linear-gradient(135deg, #0A0A0A 0%, #1a1a1a 100%);
}

.small-cover-text-ar {
    font-family: 'UKIJ Merdane', 'HSN Naskh', 'Amiri', serif;
    font-size: 0.9rem;
    color: #FAFAFA;
    margin-bottom: 6px;
    direction: rtl;
    line-height: 1.4;
}

.small-cover-text-en {
    font-family: 'Crimson Pro', Georgia, serif;
    font-size: 0.75rem;
    color: rgba(250, 250, 250, 0.7);
}

.related-info {
    padding: 15px;
}

.related-info h4 {
    color: var(--text-white);
    font-size: 1rem;
    margin-bottom: 5px;
}

.related-info p {
    color: var(--text-grey);
    font-size: 0.85rem;
}

.play-related-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(149, 71, 45, 0.2);
    border: 1px solid var(--terracotta);
    color: var(--terracotta);
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s;
}

.related-poem-card:hover .play-related-btn {
    opacity: 1;
}

/* ====================
   MORE BY POET
   ==================== */
.poet-poems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.poet-poem-card {
    background: var(--navy-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s;
    position: relative;
}

.poet-poem-card:hover {
    border-color: var(--terracotta);
    transform: translateY(-3px);
}

.poem-link {
    text-decoration: none;
    display: block;
}

.poet-poem-card h4 {
    font-family: 'UKIJ Merdane', 'HSN Naskh', 'Amiri', serif;
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 8px;
}

.poet-poem-card p {
    color: var(--text-grey);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.play-poet-poem-btn {
    padding: 8px 16px;
    background: rgba(149, 71, 45, 0.2);
    border: 1px solid var(--terracotta);
    border-radius: 6px;
    color: var(--terracotta);
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.play-poet-poem-btn:hover {
    background: var(--terracotta);
    color: var(--text-white);
}

/* ====================
   COMMENTS
   ==================== */
.comments-section {
    margin: 60px 0;
    padding: 40px;
    background: var(--navy-card);
    border-radius: 16px;
}

.comment-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

#commentText {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-medium);
    color: var(--text-white);
    padding: 15px;
    border-radius: 8px;
    font-size: 1rem;
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

#commentText:focus {
    outline: none;
    border-color: var(--terracotta);
    background: rgba(255, 255, 255, 0.08);
}

.submit-comment-btn {
    align-self: flex-end;
    padding: 12px 30px;
    background: var(--terracotta);
    color: var(--text-white);
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-comment-btn:hover {
    background: var(--terracotta-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(149, 71, 45, 0.4);
}

.login-prompt {
    text-align: center;
    padding: 30px;
    color: var(--text-grey);
}

.login-prompt a {
    color: var(--terracotta);
    text-decoration: none;
}

.login-prompt a:hover {
    text-decoration: underline;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comment {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s;
}

.comment:hover {
    border-color: var(--border-medium);
}

.comment.new-comment {
    animation: slideIn 0.5s;
    border-color: var(--terracotta);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.comment-author {
    color: var(--terracotta);
    font-weight: bold;
}

.comment-date {
    color: var(--text-dim);
    font-size: 0.85rem;
}

.comment-body {
    color: var(--text-grey);
    line-height: 1.6;
    white-space: pre-wrap;
}

/* ====================
   SHARE MODAL
   ==================== */
.share-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.modal-content {
    background: var(--navy-card);
    border: 1px solid var(--border-medium);
    border-radius: 16px;
    padding: 30px;
    max-width: 400px;
    width: 90%;
}

.modal-content h3 {
    color: var(--terracotta);
    margin-bottom: 20px;
}

.modal-close {
    float: right;
    font-size: 2rem;
    color: var(--text-dim);
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: var(--text-white);
}

.share-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

.share-option {
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-medium);
    border-radius: 8px;
    color: var(--text-white);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.share-option:hover {
    background: rgba(149, 71, 45, 0.2);
    border-color: var(--terracotta);
    color: var(--terracotta);
}

.share-option svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* ====================
   RESPONSIVE BREAKPOINTS
   ==================== */

/* Tablet */
@media (max-width: 1024px) {
    .poem-info-section {
        grid-template-columns: 250px 1fr;
        gap: 30px;
    }

    .poem-pages.desktop-view {
        gap: 40px;
    }
}

/* Mobile */
@media (max-width: 968px) {
    .poem-info-section {
        grid-template-columns: 1fr;
    }

    .poem-cover-area {
        position: static;
        max-width: 300px;
        margin: 0 auto;
    }

    .poem-pages.desktop-view {
        display: none;
    }

    .poem-pages.mobile-view {
        display: block;
    }

    .related-poems-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .title-arabic {
        font-size: 2rem;
    }

    .title-english {
        font-size: 1.3rem;
    }

    .poem-stats {
        flex-direction: column;
        gap: 10px;
    }

    .display-controls {
        flex-wrap: wrap;
    }

    .poem-nav {
        padding: 15px;
    }

    .arabic-verse .verse-text {
        font-size: 1.2rem;
    }

    .english-verse .verse-text {
        font-size: 1.2rem; /* Equal size on mobile */
    }
}

/* ==================================================
   UPLOADER SECTION - Show who uploaded the poem
   ================================================== */
.uploader-section {
    margin: 16px 0;
    padding: 16px;
    background: rgba(10, 30, 67, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.uploader-label {
    font-size: 0.85rem;
    color: #A0A0A0;
    min-width: 90px;
}

.uploader-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.uploader-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.uploader-link:hover {
    opacity: 0.8;
}

.uploader-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    object-fit: cover;
}

.uploader-avatar-placeholder {
    background: #95472d;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.uploader-name {
    font-size: 1rem;
    color: #FFFFFF;
    font-weight: 500;
}

.uploader-link:hover .uploader-name {
    color: #95472d;
}

.btn-follow-uploader {
    margin-left: auto;
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    background: #95472d;
    color: #FFFFFF;
}

.btn-follow-uploader.following {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
}

.btn-follow-uploader:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(149, 71, 45, 0.3);
}

.btn-follow-uploader.following:hover {
    border-color: #8B0000;
    color: #8B0000;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .uploader-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .uploader-info {
        width: 100%;
        flex-wrap: wrap;
    }

    .btn-follow-uploader {
        margin-left: 0;
        width: 100%;
    }
}
