/* Plugged808 App Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #0a0a0a;
    --black-lighter: #141414;
    --black-card: #1a1a1a;
    --gold: #f59e0b;
    --gold-dark: #d97706;
    --purple: #8b5cf6;
    --purple-dark: #7c3aed;
    --white: #ffffff;
    --gray: #a1a1aa;
    --gray-dark: #52525b;
    --gray-darker: #3f3f46;
    --border: rgba(255, 255, 255, 0.1);
    --error: #ef4444;
    --success: #22c55e;
    --sidebar-width: 260px;
    --topbar-height: 64px;
    --player-height: 80px;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--black);
    color: var(--white);
    display: flex;
    overflow: hidden;
}

/* Sidebar */
.sidebar {
    width: var(--sidebar-width);
    height: 100vh;
    background: var(--black-lighter);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    transition: transform 0.3s;
}

.sidebar-header {
    padding: 20px;
    border-bottom: 1px solid var(--border);
}

.logo {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-weight: 900;
    font-size: 22px;
    letter-spacing: 1px;
}

.logo-text {
    color: var(--white);
}

.logo-808 {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sidebar-nav {
    flex: 1;
    overflow-y: auto;
    padding: 16px 0;
}

.nav-section {
    margin-bottom: 24px;
}

.nav-label {
    padding: 8px 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-dark);
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--gray);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    position: relative;
}

.nav-item:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.02);
}

.nav-item.active {
    color: var(--gold);
    background: rgba(245, 158, 11, 0.1);
}

.nav-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gold);
}

.nav-icon {
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.nav-badge {
    margin-left: auto;
    background: var(--gold);
    color: var(--black);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 100px;
}

.sidebar-footer {
    padding: 16px;
    border-top: 1px solid var(--border);
}

.user-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s;
}

.user-card:hover {
    background: rgba(255, 255, 255, 0.05);
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--purple) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.user-info {
    flex: 1;
    min-width: 0;
}

.user-name {
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-role {
    font-size: 12px;
    color: var(--gray);
    text-transform: capitalize;
}

/* Main Content */
.main-content {
    flex: 1;
    margin-left: var(--sidebar-width);
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Topbar */
.topbar {
    height: var(--topbar-height);
    background: var(--black-lighter);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    padding: 0 24px;
    gap: 20px;
    flex-shrink: 0;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
}

.search-bar {
    flex: 1;
    max-width: 480px;
    position: relative;
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
}

.search-bar input {
    width: 100%;
    padding: 12px 16px 12px 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--white);
    font-size: 14px;
    font-family: inherit;
    transition: all 0.2s;
}

.search-bar input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(245, 158, 11, 0.05);
}

.search-bar input::placeholder {
    color: var(--gray-dark);
}

.topbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.topbar-btn {
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--white);
    font-size: 14px;
    cursor: pointer;
    position: relative;
    transition: all 0.2s;
}

.topbar-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
}

.notification-dot {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
}

/* Page Container */
.page-container {
    flex: 1;
    overflow-y: auto;
    padding-bottom: var(--player-height);
}

.page {
    display: none;
    padding: 32px;
    animation: fadeIn 0.3s;
}

.page.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.page-header {
    margin-bottom: 32px;
}

.page-header h1 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
}

.page-header p {
    color: var(--gray);
    font-size: 16px;
}

/* Stats Row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.stat-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--gold);
}

.stat-label {
    font-size: 13px;
    color: var(--gray);
    margin-top: 4px;
}

/* Sections */
.section {
    margin-bottom: 40px;
}

.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-title {
    font-size: 20px;
    font-weight: 700;
}

.see-all {
    color: var(--gold);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: opacity 0.2s;
}

.see-all:hover {
    opacity: 0.8;
}

/* Quick Actions */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.action-card {
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.action-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.1);
}

.action-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.action-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

/* Beats Grid */
.beats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.beats-grid.large {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.beat-card {
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
}

.beat-card:hover {
    border-color: var(--purple);
    transform: translateY(-4px);
}

.beat-cover {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--purple) 0%, var(--gold) 100%);
    position: relative;
}

.beat-play-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
    background: var(--gold);
    border: none;
    border-radius: 50%;
    color: var(--black);
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.2s;
}

.beat-card:hover .beat-play-btn {
    opacity: 1;
    transform: scale(1);
}

.beat-info {
    padding: 16px;
}

.beat-title {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.beat-artist {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 12px;
}

.beat-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.beat-price {
    font-weight: 700;
    color: var(--gold);
}

.beat-plays {
    font-size: 12px;
    color: var(--gray);
}

/* Artists Row */
.artists-row {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.artist-card-small {
    flex-shrink: 0;
    width: 140px;
    text-align: center;
    cursor: pointer;
}

.artist-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple) 0%, var(--gold) 100%);
    margin: 0 auto 12px;
    border: 3px solid var(--border);
    transition: all 0.3s;
}

.artist-card-small:hover .artist-avatar {
    border-color: var(--gold);
    transform: scale(1.05);
}

.artist-name-small {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}

.artist-votes {
    font-size: 12px;
    color: var(--gold);
}

/* Filters Bar */
.filters-bar {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.filter-select {
    padding: 12px 16px;
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--white);
    font-size: 14px;
    font-family: inherit;
    cursor: pointer;
    min-width: 140px;
}

.filter-select:focus {
    outline: none;
    border-color: var(--gold);
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}

.btn-ghost {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--white);
}

.btn-ghost:hover {
    border-color: var(--gold);
    background: rgba(245, 158, 11, 0.1);
}

.btn-danger {
    background: var(--error);
    color: var(--white);
}

/* Tabs */
.tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 8px;
}

.tab {
    padding: 10px 20px;
    background: transparent;
    border: none;
    color: var(--gray);
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.tab:hover {
    color: var(--white);
}

.tab.active {
    color: var(--gold);
}

.tab.active::after {
    content: '';
    position: absolute;
    bottom: -9px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
}

/* Messages */
.messages-container {
    display: flex;
    height: calc(100vh - var(--topbar-height) - 64px);
    margin: -32px;
}

.conversations-list {
    width: 320px;
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.conversations-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
}

.conversations-header h2 {
    font-size: 20px;
    font-weight: 700;
}

.new-message-btn {
    width: 36px;
    height: 36px;
    background: var(--gold);
    border: none;
    border-radius: 50%;
    color: var(--black);
    font-size: 20px;
    cursor: pointer;
}

.conversations {
    flex: 1;
    overflow-y: auto;
}

.conversation-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: background 0.2s;
}

.conversation-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.conversation-item.active {
    background: rgba(245, 158, 11, 0.1);
}

.conversation-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple) 0%, var(--gold) 100%);
}

.conversation-info {
    flex: 1;
    min-width: 0;
}

.conversation-name {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}

.conversation-preview {
    font-size: 13px;
    color: var(--gray);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.conversation-time {
    font-size: 11px;
    color: var(--gray-dark);
}

.chat-area {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.chat-placeholder {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray);
}

.placeholder-icon {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}

/* Profile */
.profile-header {
    margin: -32px -32px 32px;
}

.profile-cover {
    height: 200px;
    background: linear-gradient(135deg, var(--purple) 0%, var(--gold) 100%);
}

.profile-info {
    display: flex;
    align-items: flex-end;
    gap: 24px;
    padding: 0 32px;
    margin-top: -60px;
    position: relative;
}

.profile-avatar-large {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--black-card);
    border: 4px solid var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.profile-details {
    flex: 1;
    padding-bottom: 16px;
}

.profile-details h1 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 4px;
}

.profile-username {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 12px;
}

.profile-bio {
    color: var(--gray);
    font-size: 14px;
    max-width: 500px;
    margin-bottom: 16px;
}

.profile-stats {
    display: flex;
    gap: 32px;
}

.profile-stat {
    display: flex;
    flex-direction: column;
}

.profile-stat strong {
    font-size: 18px;
    font-weight: 700;
}

.profile-stat span {
    font-size: 13px;
    color: var(--gray);
}

.profile-tabs {
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
}

/* Settings */
.settings-sections {
    max-width: 600px;
}

.settings-section {
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
}

.settings-section h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.settings-section.danger {
    border-color: var(--error);
}

.settings-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--white);
    font-size: 15px;
    font-family: inherit;
    transition: all 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

/* Earnings */
.earnings-overview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.earnings-card {
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
}

.earnings-label {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 8px;
}

.earnings-amount {
    font-size: 36px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 16px;
}

/* Voting */
.voting-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 24px;
    margin-bottom: 24px;
}

.voting-timer {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
}

.voting-timer strong {
    color: var(--gold);
    font-size: 18px;
}

/* Rising Grid */
.rising-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.rising-card {
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.rising-rank {
    font-size: 32px;
    font-weight: 900;
    color: var(--gold);
    width: 48px;
    text-align: center;
}

.rising-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple) 0%, var(--gold) 100%);
}

.rising-info {
    flex: 1;
}

.rising-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.rising-genre {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 8px;
}

.rising-votes-count {
    font-size: 14px;
    color: var(--gold);
}

.vote-btn {
    padding: 12px 24px;
    background: var(--gold);
    border: none;
    border-radius: 8px;
    color: var(--black);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.vote-btn:hover {
    transform: scale(1.05);
}

.vote-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Collabs Grid */
.collabs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.collab-card {
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
}

.collab-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

.collab-category {
    padding: 6px 12px;
    background: rgba(139, 92, 246, 0.2);
    color: var(--purple);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.collab-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.collab-description {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.collab-budget {
    font-size: 16px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 16px;
}

.collab-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.collab-poster {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray);
}

.collab-poster-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple) 0%, var(--gold) 100%);
}

/* Artists Grid */
.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.artist-card {
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.artist-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.artist-card .artist-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
}

.artist-card .artist-name {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 4px;
}

.artist-card .artist-role {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 16px;
}

.follow-btn {
    padding: 10px 24px;
    background: transparent;
    border: 1px solid var(--gold);
    border-radius: 100px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.follow-btn:hover {
    background: var(--gold);
    color: var(--black);
}

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}

.modal-header h3 {
    font-size: 18px;
    font-weight: 700;
}

.modal-close {
    background: none;
    border: none;
    color: var(--gray);
    font-size: 24px;
    cursor: pointer;
}

.modal-content {
    padding: 24px;
}

/* Toast */
.toast {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    transition: all 0.3s;
    z-index: 1001;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast.success {
    background: var(--success);
    color: var(--black);
}

.toast.error {
    background: var(--error);
    color: var(--white);
}

/* Audio Player */
.audio-player {
    position: fixed;
    bottom: 0;
    left: var(--sidebar-width);
    right: 0;
    height: var(--player-height);
    background: var(--black-lighter);
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    padding: 0 24px;
    gap: 24px;
    z-index: 50;
}

.player-info {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 240px;
}

.player-cover {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--purple) 0%, var(--gold) 100%);
}

.player-title {
    font-weight: 600;
    font-size: 14px;
}

.player-artist {
    font-size: 12px;
    color: var(--gray);
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.player-btn {
    background: none;
    border: none;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
    transition: color 0.2s;
}

.player-btn:hover {
    color: var(--gold);
}

.player-btn.play-btn {
    width: 48px;
    height: 48px;
    background: var(--gold);
    border-radius: 50%;
    color: var(--black);
    font-size: 16px;
}

.player-progress {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 600px;
}

.player-progress span {
    font-size: 12px;
    color: var(--gray);
    min-width: 40px;
}

.progress-bar {
    flex: 1;
    height: 4px;
    background: var(--gray-darker);
    border-radius: 2px;
    cursor: pointer;
}

.progress-fill {
    height: 100%;
    background: var(--gold);
    border-radius: 2px;
    width: 0;
    transition: width 0.1s;
}

.player-volume {
    width: 100px;
}

/* Loading */
.loading-placeholder {
    text-align: center;
    padding: 40px;
    color: var(--gray);
}

/* Page Actions */
.page-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

/* Articles Grid */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.article-card {
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}

.article-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.article-cover {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--purple) 0%, var(--gold) 100%);
}

.article-content {
    padding: 20px;
}

.article-category {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    margin-bottom: 8px;
}

.article-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.article-excerpt {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 16px;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--gray-dark);
}

/* Search Section */
.search-section {
    margin-bottom: 32px;
}

.search-input-large {
    width: 100%;
    max-width: 500px;
    padding: 16px 20px;
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--white);
    font-size: 16px;
    font-family: inherit;
}

.search-input-large:focus {
    outline: none;
    border-color: var(--gold);
}

/* Transactions */
.transactions-list {
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}

.transaction-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
}

.transaction-item:last-child {
    border-bottom: none;
}

.transaction-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.transaction-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(245, 158, 11, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.transaction-details h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.transaction-details p {
    font-size: 12px;
    color: var(--gray);
}

.transaction-amount {
    font-weight: 700;
    font-size: 16px;
}

.transaction-amount.positive {
    color: var(--success);
}

.transaction-amount.negative {
    color: var(--error);
}

/* Responsive */
@media (max-width: 1024px) {
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .quick-actions {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
    }

    .sidebar.open {
        transform: translateX(0);
    }

    .main-content {
        margin-left: 0;
    }

    .menu-toggle {
        display: block;
    }

    .audio-player {
        left: 0;
    }

    .page {
        padding: 20px;
    }

    .stats-row {
        grid-template-columns: 1fr;
    }

    .quick-actions {
        grid-template-columns: 1fr;
    }

    .profile-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .profile-avatar-large {
        margin-top: -60px;
    }

    .messages-container {
        flex-direction: column;
    }

    .conversations-list {
        width: 100%;
        max-height: 40vh;
    }
}

/* Hide artist-only items for fans */
body.role-fan .artist-only {
    display: none;
}
