/* ============================================================
   LATIN EMPIRE X — Empire Elite Creator Pages Styles
   creators.css  |  Empire Elite dark/gold premium aesthetic
   ============================================================ */

:root {
    --gold-main: #d4af37;
    --gold-light: #f9d976;
    --border-gold: rgba(212, 175, 55, 0.3);
    --glass-bg: rgba(10, 8, 5, 0.75);
    --dark-navy: #060d1a;
}

/* ============================================================
   CREATOR PROFILE PAGE
   ============================================================ */

/* ---- Cover / Banner ---- */
.creator-cover {
    position: relative;
    height: 280px;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1000 40%, #2d1f00 70%, #0d0d0d 100%);
    overflow: hidden;
}

.creator-cover::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(transparent, #0a0a0a);
}

.creator-cover-img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

/* Gold shimmer overlay */
.creator-cover-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(212, 175, 55, 0.05) 50%,
        transparent 70%
    );
    animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* ---- Profile Row ---- */
.creator-profile-row {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.creator-avatar-wrap {
    position: relative;
    display: inline-block;
    margin-top: -55px;
    margin-bottom: 10px;
}

.creator-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 4px solid var(--gold-main);
    object-fit: cover;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.45), 0 0 0 2px #0a0a0a;
    display: block;
}

.creator-verified-badge {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 26px;
    height: 26px;
    background: var(--gold-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #000;
    border: 2px solid #0a0a0a;
}

/* ---- Creator Info ---- */
.creator-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 15px;
    padding: 15px 0 25px;
}

.creator-name-block {
    flex: 1;
    min-width: 200px;
}

.creator-display-name {
    font-family: 'Cinzel', serif;
    font-size: 1.7rem;
    color: #fff;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.creator-handle {
    color: var(--gold-main);
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 12px;
}

.creator-stats-row {
    display: flex;
    gap: 25px;
    font-family: 'Montserrat', sans-serif;
}

.creator-stat {
    text-align: center;
}

.creator-stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    display: block;
}

.creator-stat-label {
    font-size: 0.7rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ---- Action Buttons ---- */
.creator-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 5px;
}

.btn-subscribe {
    background: linear-gradient(135deg, #b8912a, var(--gold-main), #f9d976, var(--gold-main));
    background-size: 200% 200%;
    color: #000;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    padding: 14px 35px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.35s ease;
    text-transform: uppercase;
    text-decoration: none;
    animation: goldShift 4s ease infinite;
}

@keyframes goldShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.btn-subscribe:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.55);
    color: #000;
}

.btn-tip {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-main);
    border: 1px solid var(--border-gold);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 13px 25px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.btn-tip:hover {
    background: rgba(212, 175, 55, 0.2);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    color: var(--gold-main);
}

.btn-msg {
    background: rgba(255, 255, 255, 0.05);
    color: #aaa;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    padding: 13px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-msg:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* ---- Subscription Tiers ---- */
.subscription-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.tier-card {
    background: var(--glass-bg);
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tier-card:hover {
    border-color: var(--gold-main);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.tier-card.popular {
    border-color: var(--gold-main);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
}

.tier-card.popular::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: 0; left: 0; right: 0;
    background: var(--gold-main);
    color: #000;
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 5px;
    text-align: center;
}

.tier-name {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: var(--gold-main);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.tier-price {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.tier-price span {
    font-size: 1rem;
    color: #888;
    font-weight: 400;
}

.tier-desc {
    font-size: 0.8rem;
    color: #888;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 15px;
    line-height: 1.5;
}

.tier-features {
    list-style: none;
    padding: 0; margin: 0 0 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    text-align: left;
}

.tier-features li {
    color: #ccc;
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tier-features li::before {
    content: '✓';
    color: var(--gold-main);
    font-weight: 700;
    flex-shrink: 0;
}

.btn-tier {
    display: block;
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1px solid var(--border-gold);
    color: var(--gold-main);
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.btn-tier:hover, .tier-card.popular .btn-tier {
    background: var(--gold-main);
    color: #000;
    border-color: var(--gold-main);
}

/* ---- Pinned Message Card ---- */
.pinned-message {
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-left: 4px solid var(--gold-main);
    border-radius: 12px;
    padding: 20px 25px;
    margin-bottom: 30px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    font-family: 'Montserrat', sans-serif;
}

.pinned-message-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--gold-main);
    object-fit: cover;
    flex-shrink: 0;
}

.pinned-message-content {
    flex: 1;
}

.pinned-message-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.pinned-badge {
    font-size: 0.65rem;
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold-main);
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.pinned-message-text {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.6;
}

/* ---- Content Feed ---- */
.content-feed {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.feed-post {
    background: var(--glass-bg);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.feed-post:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.feed-post-media {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #111;
}

.feed-post-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.feed-post:hover .feed-post-img {
    transform: scale(1.05);
}

/* ---- Locked Content Blur ---- */
.feed-post.locked .feed-post-img {
    filter: blur(8px) brightness(0.5);
    transform: scale(1.05);
}

.locked-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.3);
    z-index: 5;
}

.locked-icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.6));
}

.btn-unlock {
    background: var(--gold-main);
    color: #000;
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 9px 18px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.btn-unlock:hover {
    background: var(--gold-light);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

/* ---- Post Footer ---- */
.feed-post-footer {
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    color: #888;
}

.feed-post-actions {
    display: flex;
    gap: 12px;
}

.post-action {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: color 0.2s;
}

.post-action:hover, .post-action.liked {
    color: var(--gold-main);
}

.post-type-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    z-index: 3;
    backdrop-filter: blur(4px);
}

.post-type-badge.video { background: rgba(255, 45, 85, 0.7); }
.post-type-badge.live-badge { background: rgba(255, 45, 85, 0.9); animation: pulseRed 2s infinite; }

@keyframes pulseRed {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* ============================================================
   CREATOR DASHBOARD PAGE
   ============================================================ */

.dashboard-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 25px;
    max-width: 1200px;
    margin: 100px auto 40px;
    padding: 0 20px;
    min-height: calc(100vh - 180px);
}

/* ---- Sidebar ---- */
.dashboard-sidebar {
    background: var(--glass-bg);
    border: 1px solid var(--border-gold);
    border-radius: 18px;
    padding: 25px 15px;
    backdrop-filter: blur(12px);
    height: fit-content;
    position: sticky;
    top: 90px;
}

.dash-profile-mini {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 20px;
}

.dash-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid var(--gold-main);
    object-fit: cover;
    margin-bottom: 10px;
}

.dash-name {
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 4px;
}

.dash-handle {
    font-size: 0.75rem;
    color: var(--gold-main);
    font-family: 'Montserrat', sans-serif;
}

.dash-nav {
    list-style: none;
    padding: 0; margin: 0;
}

.dash-nav li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: #888;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.dash-nav li a:hover, .dash-nav li a.active {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-main);
}

.dash-nav li a i {
    width: 18px;
    text-align: center;
}

/* ---- Main Content ---- */
.dashboard-main {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.dash-card {
    background: var(--glass-bg);
    border: 1px solid var(--border-gold);
    border-radius: 18px;
    padding: 25px 30px;
    backdrop-filter: blur(12px);
}

.dash-card-title {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: var(--gold-main);
    margin-bottom: 20px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ---- Earnings Grid ---- */
.earnings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.earning-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.earning-amount {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--gold-main);
    margin-bottom: 5px;
}

.earning-label {
    font-size: 0.75rem;
    color: #666;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.earning-change {
    font-size: 0.75rem;
    color: #27ae60;
    margin-top: 4px;
    font-family: 'Montserrat', sans-serif;
}

/* ---- Growth Chart (CSS only) ---- */
.growth-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 100px;
    padding-top: 10px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, var(--gold-main), rgba(212, 175, 55, 0.3));
    border-radius: 4px 4px 0 0;
    position: relative;
    min-width: 0;
    transition: opacity 0.2s;
}

.chart-bar:hover {
    opacity: 0.8;
}

.chart-bar::after {
    content: attr(data-label);
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.6rem;
    color: #555;
    white-space: nowrap;
    font-family: 'Montserrat', sans-serif;
}

.chart-labels {
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
    font-size: 0.65rem;
    color: #444;
    font-family: 'Montserrat', sans-serif;
}

/* ---- Upload Post Form ---- */
.upload-drop-zone {
    border: 2px dashed var(--border-gold);
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.upload-drop-zone:hover, .upload-drop-zone.dragover {
    border-color: var(--gold-main);
    background: rgba(212, 175, 55, 0.04);
}

.upload-icon {
    font-size: 2.5rem;
    color: var(--gold-main);
    opacity: 0.5;
    margin-bottom: 10px;
}

.upload-hint {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: #666;
}

.dash-form-group {
    margin-bottom: 15px;
}

.dash-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.dash-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 12px 15px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.dash-input:focus {
    border-color: var(--gold-main);
}

.dash-input-row {
    display: flex;
    gap: 10px;
    align-items: center;
}

.price-toggle {
    display: flex;
    gap: 8px;
}

.price-toggle-btn {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    transition: all 0.2s ease;
}

.price-toggle-btn.active {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold-main);
    color: var(--gold-main);
}

.btn-post {
    background: var(--gold-main);
    color: #000;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    padding: 14px 35px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-post:hover {
    background: var(--gold-light);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

/* ---- Messages Inbox Preview ---- */
.inbox-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.inbox-item {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.inbox-item:hover {
    background: rgba(212, 175, 55, 0.06);
    border-color: var(--border-gold);
}

.inbox-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2d1f00, #0a0a0a);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.inbox-content {
    flex: 1;
    min-width: 0;
}

.inbox-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 3px;
}

.inbox-preview {
    font-size: 0.75rem;
    color: #666;
    font-family: 'Montserrat', sans-serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.inbox-meta {
    font-size: 0.7rem;
    color: #444;
    font-family: 'Montserrat', sans-serif;
    text-align: right;
    flex-shrink: 0;
}

.inbox-unread-dot {
    width: 8px;
    height: 8px;
    background: var(--gold-main);
    border-radius: 50%;
    margin-top: 4px;
    margin-left: auto;
}

/* ---- Payout Button ---- */
.payout-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.payout-balance {
    font-family: 'Cinzel', serif;
}

.payout-balance-amount {
    font-size: 2.2rem;
    color: var(--gold-main);
}

.payout-balance-label {
    font-size: 0.75rem;
    color: #666;
    font-family: 'Montserrat', sans-serif;
}

.btn-payout {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #1a1400, #2d2000);
    color: var(--gold-main);
    border: 1px solid var(--gold-main);
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    padding: 14px 30px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-decoration: none;
}

.btn-payout:hover {
    background: var(--gold-main);
    color: #000;
    box-shadow: 0 5px 25px rgba(212, 175, 55, 0.4);
}

/* ---- Subscription Price Setting ---- */
.price-tiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.price-tier-edit {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 18px;
    text-align: center;
}

.price-tier-name {
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    color: var(--gold-main);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.price-tier-input {
    width: 100%;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    padding: 10px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    outline: none;
    box-sizing: border-box;
}

.price-tier-input:focus {
    border-color: var(--gold-main);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
    .dashboard-layout {
        grid-template-columns: 1fr;
        margin-top: 80px;
    }

    .dashboard-sidebar {
        position: static;
    }

    .subscription-tiers {
        grid-template-columns: 1fr;
    }

    .earnings-grid {
        grid-template-columns: 1fr;
    }

    .content-feed {
        grid-template-columns: 1fr 1fr;
    }

    .price-tiers-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .creator-cover { height: 180px; }

    .creator-display-name { font-size: 1.3rem; }

    .creator-info {
        flex-direction: column;
        gap: 10px;
    }

    .creator-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-subscribe, .btn-tip, .btn-msg {
        width: 100%;
        text-align: center;
        justify-content: center;
        display: flex;
        align-items: center;
    }

    .content-feed {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .feed-post-media { height: 160px; }

    .subscription-tiers {
        grid-template-columns: 1fr;
    }

    /* Dashboard sidebar: full width, not sticky */
    .dashboard-sidebar {
        position: static;
        width: 100%;
    }

    /* Earnings grid: 1-col on small mobile */
    .earnings-grid {
        grid-template-columns: 1fr;
    }

    /* Price tiers: 1-col */
    .price-tiers-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    /* Content feed: 1-col on very small screens */
    .content-feed {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .feed-post-media { height: 200px; }

    /* Creator stats: reduce gap */
    .creator-stats-row { gap: 15px; }

    /* Dashboard layout compact */
    .dashboard-layout {
        padding: 0 12px;
        margin-top: 65px;
    }

    /* Dash card: tighter padding */
    .dash-card {
        padding: 18px 16px;
    }

    /* Payout row: stack */
    .payout-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-payout {
        width: 100%;
        justify-content: center;
    }

    /* Inbox items: hide time on very small */
    .inbox-meta {
        display: none;
    }
}

/* ============================================================
   EMPIRE ELITE BRANDING COMPONENTS
   ============================================================ */

/* Gold gradient pill badge with crown */
.empire-elite-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #b8912a, #d4af37, #f9d976, #d4af37);
    background-size: 200% 200%;
    color: #000 !important;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    padding: 10px 22px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.35s ease;
    text-transform: uppercase;
    text-decoration: none;
    animation: goldShift 4s ease infinite;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
}

.empire-elite-badge:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
    color: #000 !important;
}

/* Premium section header style */
.empire-elite-header {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #b8912a, #d4af37, #f9d976, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    display: inline-block;
}

/* Italic gold subtitle */
.empire-elite-tagline {
    font-style: italic;
    color: #d4af37;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

@media (max-width: 600px) {
    .empire-elite-header { font-size: 1.3rem; letter-spacing: 2px; }
    .empire-elite-tagline { font-size: 0.78rem; }
    .empire-elite-badge { padding: 10px 16px; font-size: 0.72rem; }
}
