.profile-section {
    max-width: 800px;
    margin: 0 auto;
}
.profile-card {
    background: #16213e;
    border: 1px solid #0f3460;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}
.profile-card h3 {
    color: #00ff88;
    margin-bottom: 16px;
    font-size: 18px;
}
.profile-info {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 12px;
    font-size: 14px;
}
.profile-info dt {
    color: #6b7280;
    font-weight: 600;
}
.profile-info dd {
    color: #eaeaea;
    word-break: break-all;
}
.token-box {
    background: #1a1a2e;
    border: 1px solid #0f3460;
    border-radius: 8px;
    padding: 12px;
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.token-box code {
    color: #10b981;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    word-break: break-all;
    flex: 1;
}
.token-btn {
    background: #059669;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    white-space: nowrap;
}
.token-btn:hover {
    background: #047857;
}
.pixel-item {
    background: #1a1a2e;
    border: 1px solid #0f3460;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 12px;
    display: flex;
    gap: 16px;
    align-items: center;
}
.pixel-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #0f3460;
    flex-shrink: 0;
}
.pixel-details {
    flex: 1;
    min-width: 0;
}
.pixel-details h4 {
    color: #eaeaea;
    margin: 0 0 6px 0;
    font-size: 14px;
}
.pixel-meta {
    font-size: 12px;
    color: #6b7280;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.pixel-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.status-approved { color: #00ff88; }
.status-pending { color: #f59e0b; }
.status-rejected { color: #e94560; }
.empty-state {
    text-align: center;
    padding: 40px;
    color: #6b7280;
    font-size: 14px;
}
.loading-state {
    text-align: center;
    padding: 40px;
    color: #6b7280;
}
.api-section {
    background: #1e3a5f;
    border-left: 4px solid #3b82f6;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
}
.api-section h4 {
    color: #60a5fa;
    margin: 0 0 8px 0;
    font-size: 15px;
}
.api-section p {
    color: #9ca3af;
    font-size: 13px;
    margin: 0 0 12px 0;
}
.api-section code {
    background: #1a1a2e;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
    color: #eaeaea;
}
.token-display {
    background: #1f2937;
    border: 1px solid #374151;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
    word-break: break-all;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: #10b981;
    max-height: 150px;
    overflow-y: auto;
}
.copy-btn {
    background: #059669;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    margin-top: 10px;
}
.copy-btn:hover {
    background: #047857;
}
.token-info {
    background: #1e3a5f;
    border-left: 4px solid #3b82f6;
    padding: 12px;
    margin: 15px 0;
    border-radius: 4px;
    font-size: 13px;
    color: #e5e7eb;
}
