.thread-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.thread-filters .pill {
    cursor: pointer;
}

.thread-filters .pill.active {
    background: rgba(74, 74, 74, 0.6);
    color: #e0e0e0;
}
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    background: #1a1a1a;
    color: #e0e0e0;
    line-height: 1.6;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Age Verification Styles - HentaiSafe */
.age-verification-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    padding: 20px;
}

.age-verification-content {
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.age-verification-title {
    font-size: 28px;
    font-weight: 700;
    color: #e0e0e0;
    margin: 0 0 20px 0;
    letter-spacing: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.age-verification-question {
    font-size: 15px;
    color: #b0b0b0;
    margin: 0 0 24px 0;
    font-weight: 400;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.age-verification-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.age-verification-buttons {
    display: flex;
    gap: 12px;
    width: 100%;
    max-width: 280px;
}

.age-btn {
    flex: 1;
    padding: 10px 20px;
    border: none;
    border-radius: 0;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    background: #4a4a4a;
    color: #ffffff;
    min-width: 100px;
}

.age-btn:hover {
    background: #3a3a3a;
}

.age-btn:active {
    background: #2a2a2a;
}

.age-remember-me {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: #b0b0b0;
    cursor: pointer;
    user-select: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    margin-top: 12px;
}

.age-remember-me input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #4a4a4a;
    border: 1px solid #505050;
    margin: 0;
    flex-shrink: 0;
    vertical-align: middle;
}

.age-remember-me span {
    display: inline-block;
    vertical-align: middle;
    line-height: 16px;
}

/* Header Controls */
.header-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 10;
}


/* Theme Toggle (removed - dark mode only) */
.theme-toggle {
    background: #2a2a2a;
    border: 1px solid #404040;
    border-radius: 0;
    padding: 6px 10px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-size: 16px;
    color: #b0b0b0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
}

.theme-toggle:hover {
    background: #333333;
}

/* Dark mode only - all light mode styles removed */

/* Profile Pictures and Verified Badges */
.creator-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #404040;
}

.creator-avatar-default {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #2a2a2a;
    border: 2px solid #404040;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    color: #b0b0b0;
}

.creator-avatar-large {
    width: 150px;
    height: 150px;
    border-radius: 0;
    object-fit: cover;
    border: 4px solid #404040;
}

.creator-avatar-default-large {
    width: 150px;
    height: 150px;
    border-radius: 0;
    background: #2a2a2a;
    border: 4px solid #404040;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    font-weight: bold;
    color: #b0b0b0;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: #00ff88;
    color: #001a2e;
    border-radius: 50%;
    font-size: 10px;
    font-weight: bold;
    margin-left: 4px;
}

.verified-badge-large {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 24px;
    height: 24px;
    background: #00ff88;
    color: #001a2e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    border: 2px solid #001a2e;
}

.creator-avatar-section {
    position: relative;
    display: inline-block;
}

/* Post Card Enhancements */
.post-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.creator-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.creator-details {
    display: flex;
    align-items: center;
    gap: 4px;
}

.creator-name {
    font-size: 12px;
    font-weight: 600;
    color: #e0e0e0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.post-interactions {
    display: flex;
    gap: 8px;
}

.like-btn, .comment-btn {
    background: none;
    border: 1px solid #404040;
    border-radius: 0;
    padding: 4px 8px;
    color: #b0b0b0;
    cursor: pointer;
    font-size: 11px;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.like-btn, 
.comment-btn {
    border-color: #404040;
    color: #b0b0b0;
}

.like-btn:hover, .comment-btn:hover {
    background: #2a2a2a;
    border-color: #606060;
    text-decoration: none;
}

.like-btn:hover, 
.comment-btn:hover {
    background: #333333;
    border-color: #505050;
}

.like-btn.liked {
    background: #4a4a4a;
    color: #e0e0e0;
}

.comment-count {
    font-size: 10px;
    color: #a0a0a0;
}

.like-icon, .comment-icon {
    margin-right: 4px;
}

.post-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.post-tier {
    font-size: 10px;
    font-weight: 600;
    color: #00ff88;
    text-transform: none;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.tag {
    background: #2a2a2a;
    border: 1px solid #404040;
    border-radius: 0;
    padding: 2px 6px;
    font-size: 9px;
    color: #b0b0b0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.tag-more {
    background: #2a2a2a;
    border: 1px solid #404040;
    border-radius: 0;
    padding: 2px 6px;
    font-size: 9px;
    color: #b0b0b0;
    font-style: italic;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

/* Creator Card Enhancements */
.creator-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    background: #2a2a2a;
    border: 1px solid #404040;
    border-radius: 0;
    transition: opacity 0.2s ease;
    position: relative;
    overflow: hidden;
    min-height: 280px;
}

.creator-card:hover {
    background: #2a2a2a;
    border-color: #404040;
    transform: none;
    box-shadow: none;
    opacity: 0.9;
}

.creator-card::before {
    display: none;
}

.creator-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 0;
    position: relative;
    z-index: 1;
}

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

.creator-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.creator-header h3 a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.creator-header h3 a:hover {
    color: #e0e0e0;
    text-decoration: underline;
}

.creator-stats {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 8px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 12px;
    gap: 8px;
}

.stat-label {
    color: #a0a0a0;
    flex-shrink: 0;
    min-width: 80px;
}

.stat-value {
    color: #e0e0e0;
    font-weight: 600;
    text-align: right;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.creator-bio {
    margin-bottom: 16px;
    padding: 12px;
    background: #2a2a2a;
    border: 1px solid #404040;
    border-radius: 0;
}

.creator-bio p {
    margin: 0;
    font-size: 13px;
    color: #b0b0b0;
    line-height: 1.5;
    font-style: normal;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.subscription-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(74, 74, 74, 0.2);
}

.btn-primary {
    background: #4a4a4a;
    border: none;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 0;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    text-decoration: none;
    transition: background-color 0.2s ease;
    letter-spacing: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.btn-primary:hover {
    background: #3a3a3a;
    color: #ffffff;
    text-decoration: none;
}

.subscription-note {
    font-size: 10px;
    color: #a0a0a0;
    font-style: italic;
    font-weight: 500;
}

/* Enhanced Browse Filters */

.browse-filters {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.filter-section {
    background: #2a2a2a;
    border: 1px solid #404040;
    border-radius: 0;
    padding: 20px;
}

.filter-title {
    margin: 0 0 16px 0;
    font-size: 14px;
    font-weight: 600;
    color: #e0e0e0;
    text-transform: none;
    letter-spacing: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.filter-group {
    margin-bottom: 20px;
    position: relative;
}

.filter-group-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.filter-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #e0e0e0;
    text-transform: none;
    letter-spacing: 0;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.btn-clear-tags {
    background: rgba(100, 100, 100, 0.2);
    border: 1px solid rgba(100, 100, 100, 0.4);
    color: #a0a0a0;
    padding: 4px 8px;
    border-radius: 0;
    font-size: 10px;
    font-weight: 600;
    text-transform: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-clear-tags:hover {
    background: rgba(100, 100, 100, 0.3);
    border-color: rgba(100, 100, 100, 0.6);
    color: #e0e0e0;
}

.filter-select {
    width: 100%;
    padding: 8px 12px;
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.3);
    border-radius: 0;
    color: #e0e0e0;
    font-size: 12px;
}

.filter-select:focus {
    outline: none;
    border-color: rgba(74, 74, 74, 0.6);
}

.tag-mode-selector {
    display: flex;
    gap: 16px;
    padding: 12px;
    background: #2a2a2a;
    border-radius: 0;
    border: 1px solid rgba(74, 74, 74, 0.2);
    transition: border-color 0.3s ease, background-color 0.3s ease;
    position: relative;
    min-height: 44px;
    align-items: center;
}

.tag-mode-selector.mode-all {
    border-color: rgba(74, 74, 74, 0.4);
    background: rgba(74, 74, 74, 0.1);
}

.tag-mode-selector.mode-any {
    border-color: rgba(74, 74, 74, 0.4);
    background: rgba(74, 74, 74, 0.1);
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 12px;
    color: #e0e0e0;
    padding: 6px 10px;
    border-radius: 0;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
    white-space: nowrap;
}

.radio-option:hover {
    background: rgba(74, 74, 74, 0.1);
}

.radio-option input[type="radio"] {
    margin: 0;
    accent-color: #e0e0e0;
}

.radio-option input[type="radio"]:checked + span {
    color: #e0e0e0;
    font-weight: 600;
}

.tag-mode-description {
    margin-top: 8px;
    padding: 8px 12px;
    background: #2a2a2a;
    border-radius: 0;
    font-size: 11px;
    color: #a0a0a0;
    font-style: italic;
    transition: border-left-color 0.3s ease, color 0.3s ease;
    min-height: 20px;
    display: flex;
    align-items: center;
    border-left: 3px solid transparent;
}

.tag-mode-description.mode-all {
    border-left-color: #4a4a4a;
    color: #b0b0b0;
}

.tag-mode-description.mode-any {
    border-left-color: #e0e0e0;
    color: #e0e0e0;
}

.tag-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-height: 200px;
    overflow-y: auto;
    padding: 12px;
    background: #2a2a2a;
    border-radius: 0;
    border: 1px solid rgba(74, 74, 74, 0.2);
    min-height: 60px;
    align-content: flex-start;
}

.tag-filter-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.tag-filter-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.tag-filter {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(74, 74, 74, 0.1);
    border: 1px solid rgba(74, 74, 74, 0.3);
    border-radius: 0;
    font-size: 10px;
    font-weight: 600;
    color: #e0e0e0;
    text-transform: none;
    letter-spacing: 0;
    transition: all 0.2s ease;
    cursor: pointer;
    user-select: none;
    position: relative;
}

.tag-filter:hover {
    background: rgba(74, 74, 74, 0.2);
    border-color: rgba(74, 74, 74, 0.5);
}

.tag-filter.selected {
    background: rgba(74, 74, 74, 0.4);
    border-color: rgba(74, 74, 74, 0.7);
    color: #e0e0e0;
    box-shadow: none;
}

.tag-filter.selected::after {
    content: '✓';
    position: absolute;
    top: -4px;
    right: -4px;
    background: #4a4a4a;
    color: #ffffff;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    border: 2px solid #ffffff;
}

.tag-filter.exclude {
    background: rgba(255, 100, 100, 0.1);
    border-color: rgba(255, 100, 100, 0.3);
    color: #ff6464;
}

.tag-filter.exclude:hover {
    background: rgba(255, 100, 100, 0.2);
    border-color: rgba(255, 100, 100, 0.5);
}

.tag-filter.exclude.selected {
    background: rgba(255, 100, 100, 0.4);
    border-color: rgba(255, 100, 100, 0.7);
    color: #ffffff;
    box-shadow: none;
}

.tag-filter.exclude.selected::after {
    content: '✕';
    position: absolute;
    top: -4px;
    right: -4px;
    background: #ff6464;
    color: #ffffff;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    border: 2px solid #ffffff;
}

.tag-filter.disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
    background: rgba(100, 100, 100, 0.1) !important;
    border-color: rgba(100, 100, 100, 0.3) !important;
    color: #a0a0a0 !important;
}

.tag-filter.disabled:hover {
    background: rgba(100, 100, 100, 0.1) !important;
    border-color: rgba(100, 100, 100, 0.3) !important;
    transform: none !important;
}

/* Creator Search */
.creator-search-container {
    position: relative;
    margin-bottom: 12px;
}

.creator-search-input {
    width: 100%;
    padding: 8px 12px;
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.3);
    border-radius: 0;
    color: #e0e0e0;
    font-size: 12px;
    transition: border-color 0.3s ease;
}

.creator-search-input:focus {
    outline: none;
    border-color: rgba(74, 74, 74, 0.6);
}

.creator-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.4);
    border-radius: 0;
    max-height: 200px;
    overflow-y: auto;
    z-index: 100;
    margin-top: 2px;
}

.creator-result {
    padding: 8px 12px;
    color: #e0e0e0;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.creator-result:hover {
    background: rgba(74, 74, 74, 0.2);
}

.selected-creators {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.selected-creator {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(74, 74, 74, 0.2);
    border: 1px solid rgba(74, 74, 74, 0.4);
    border-radius: 0;
    padding: 4px 8px;
    font-size: 11px;
    color: #e0e0e0;
}

.selected-creator span {
    font-weight: 600;
}

.remove-creator {
    background: none;
    border: none;
    color: #a0a0a0;
    font-size: 14px;
    cursor: pointer;
    padding: 0;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.remove-creator:hover {
    background: rgba(255, 100, 100, 0.3);
    color: #ff6464;
}

.exclude-x {
    margin-left: 4px;
    font-weight: bold;
    font-size: 12px;
    color: #ff6464;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-item {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    background: rgba(74, 74, 74, 0.1);
    border: 1px solid rgba(74, 74, 74, 0.3);
    border-radius: 0;
    text-decoration: none;
    transition: all 0.2s ease;
}

.tag-item:hover {
    background: rgba(74, 74, 74, 0.2);
    border-color: rgba(74, 74, 74, 0.5);
}

.tag-name {
    font-size: 10px;
    font-weight: 600;
    color: #e0e0e0;
    text-transform: none;
}

.tag-count {
    font-size: 9px;
    color: #a0a0a0;
    background: rgba(0, 0, 0, 0.3);
    padding: 1px 4px;
    border-radius: 0;
}

.filter-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.btn-filter {
    background: rgba(74, 74, 74, 0.3);
    border: 1px solid rgba(74, 74, 74, 0.5);
    color: #e0e0e0;
    padding: 8px 16px;
    border-radius: 0;
    font-size: 11px;
    font-weight: 600;
    text-transform: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-filter:hover {
    background: rgba(74, 74, 74, 0.5);
    border-color: rgba(74, 74, 74, 0.7);
    color: #e0e0e0;
}

.btn-clear {
    background: rgba(100, 100, 100, 0.2);
    border: 1px solid rgba(100, 100, 100, 0.4);
    color: #a0a0a0;
    padding: 8px 16px;
    border-radius: 0;
    font-size: 11px;
    font-weight: 600;
    text-transform: none;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-clear:hover {
    background: rgba(100, 100, 100, 0.3);
    border-color: rgba(100, 100, 100, 0.6);
    color: #e0e0e0;
}

/* Admin Statistics Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.stat-card {
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.3);
    border-radius: 0;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: #2a2a2a;
    border-color: rgba(74, 74, 74, 0.5);
    transform: translateY(-2px);
}

.stat-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(74, 74, 74, 0.2);
    border-radius: 50%;
    border: 1px solid rgba(74, 74, 74, 0.4);
}

.stat-content {
    flex: 1;
}

.stat-label {
    font-size: 11px;
    font-weight: 600;
    color: #a0a0a0;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 4px;
}

.stat-value {
    font-size: 18px;
    font-weight: 700;
    color: #e0e0e0;
}

/* Admin Panel Enhancements */
.admin-filters {
    margin-bottom: 16px;
    padding: 12px;
    background: #2a2a2a;
    border-radius: 0;
    border: 1px solid rgba(74, 74, 74, 0.2);
}

.admin-filters .filter-form {
    display: flex;
    gap: 12px;
    align-items: center;
}

.admin-filters .filter-select {
    min-width: 150px;
}

.admin-actions {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.inline-form {
    display: inline-block;
    margin: 0;
}

.btn-small {
    padding: 4px 8px;
    font-size: 10px;
    border-radius: 0;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
}

.btn-success {
    background: rgba(0, 255, 136, 0.3);
    border: 1px solid rgba(0, 255, 136, 0.5);
    color: #00ff88;
}

.btn-success:hover {
    background: rgba(0, 255, 136, 0.5);
    border-color: rgba(0, 255, 136, 0.7);
    color: #e0e0e0;
}

.btn-warning {
    background: rgba(255, 193, 7, 0.3);
    border: 1px solid rgba(255, 193, 7, 0.5);
    color: #ffc107;
}

.btn-warning:hover {
    background: rgba(255, 193, 7, 0.5);
    border-color: rgba(255, 193, 7, 0.7);
    color: #000000;
}

.btn-danger {
    background: rgba(220, 53, 69, 0.3);
    border: 1px solid rgba(220, 53, 69, 0.5);
    color: #dc3545;
}

.btn-danger:hover {
    background: rgba(220, 53, 69, 0.5);
    border-color: rgba(220, 53, 69, 0.7);
    color: #ffffff;
}

.btn-secondary {
    background: rgba(108, 117, 125, 0.3);
    border: 1px solid rgba(108, 117, 125, 0.5);
    color: #e0e0e0;
}

.btn-secondary:hover {
    background: rgba(108, 117, 125, 0.5);
    border-color: rgba(108, 117, 125, 0.7);
    color: #e0e0e0;
}

.social-link {
    font-size: 10px;
    margin-bottom: 2px;
}

.social-link a {
    color: #e0e0e0;
    text-decoration: none;
    word-break: break-all;
}

.social-link a:hover {
    text-decoration: underline;
}

.no-data {
    color: #a0a0a0;
    font-style: italic;
    font-size: 10px;
}

.status-badge {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 0;
    font-size: 9px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
}

.status-open {
    background: rgba(255, 193, 7, 0.3);
    border: 1px solid rgba(255, 193, 7, 0.5);
    color: #ffc107;
}

.status-pending {
    background: rgba(74, 74, 74, 0.3);
    border: 1px solid rgba(74, 74, 74, 0.5);
    color: #e0e0e0;
}

.status-approved {
    background: rgba(0, 255, 136, 0.3);
    border: 1px solid rgba(0, 255, 136, 0.5);
    color: #00ff88;
}

.status-rejected {
    background: rgba(220, 53, 69, 0.3);
    border: 1px solid rgba(220, 53, 69, 0.5);
    color: #dc3545;
}

.status-closed {
    background: rgba(108, 117, 125, 0.3);
    border: 1px solid rgba(108, 117, 125, 0.5);
    color: #6c757d;
}

/* Profile Settings Enhancements */
.profile-container {
    max-width: 800px;
    margin: 0 auto;
}

.profile-header {
    text-align: center;
    margin-bottom: 32px;
}

.profile-header h1 {
    font-size: 24px;
    font-weight: 700;
    color: #e0e0e0;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 8px;
}

.profile-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.profile-section {
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.2);
    border-radius: 0;
    padding: 24px;
}

.section-title {
    font-size: 16px;
    font-weight: 600;
    color: #e0e0e0;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(74, 74, 74, 0.3);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #e0e0e0;
    text-transform: none;
    letter-spacing: 0;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    background: #2a2a2a;
    border: 1px solid #404040;
    border-radius: 0;
    color: #e0e0e0;
    font-size: 14px;
    transition: border-color 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.form-group input,
.form-group textarea,
.form-group select {
    background: #2a2a2a;
    border-color: #404040;
    color: #e0e0e0;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #606060;
    background: #2a2a2a;
    box-shadow: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #606060;
    background: #2a2a2a;
}

.form-help {
    display: block;
    margin-top: 4px;
    font-size: 10px;
    color: #a0a0a0;
    font-style: italic;
}

.avatar-preview,
.banner-preview {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar-preview img {
    width: 80px;
    height: 80px;
    border-radius: 0;
    object-fit: cover;
    border: 2px solid rgba(74, 74, 74, 0.3);
}

.banner-preview img {
    width: 200px;
    height: 80px;
    border-radius: 0;
    object-fit: cover;
    border: 2px solid rgba(74, 74, 74, 0.3);
}

/* Telegram-style image editor */
.image-editor-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.image-editor {
    background: #1a1a1a;
    border-radius: 0;
    width: 90vw;
    max-width: 600px;
    height: 85vh;
    max-height: 650px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.editor-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: #2a2a2a;
    border-bottom: 1px solid #333;
}

.btn-close, .btn-done {
    background: none;
    border: none;
    color: #e0e0e0;
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
    border-radius: 0;
    transition: background 0.2s;
}

.btn-close:hover, .btn-done:hover {
    background: rgba(74, 74, 74, 0.1);
}

.editor-title {
    color: #e0e0e0;
    font-weight: 600;
    font-size: 16px;
}

.editor-container {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

#editor-canvas {
    max-width: 100%;
    max-height: 100%;
    cursor: grab;
}

#editor-canvas:active {
    cursor: grabbing;
}

.crop-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.crop-box {
    position: absolute;
    border: 2px solid #333333;
    border-radius: 0;
    box-shadow: none;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.editor-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 24px;
    background: #1a1a1a;
    border-top: 1px solid #333;
}

.control-btn {
    background: rgba(74, 74, 74, 0.15);
    border: 2px solid rgba(74, 74, 74, 0.4);
    color: #e0e0e0;
    width: 48px;
    height: 48px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    transition: all 0.2s;
    box-shadow: none;
}

.control-btn:hover {
    background: rgba(74, 74, 74, 0.25);
    border-color: rgba(74, 74, 74, 0.6);
    transform: scale(1.1);
    box-shadow: none;
}

.control-btn:active {
    transform: scale(0.95);
}

.twofa-section {
    margin-top: 8px;
}

.twofa-status {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #2a2a2a;
    border-radius: 0;
    border: 1px solid rgba(74, 74, 74, 0.2);
}

.twofa-status.enabled {
    border-color: rgba(0, 255, 136, 0.3);
    background: rgba(0, 255, 136, 0.1);
}

.twofa-status.disabled {
    border-color: rgba(255, 193, 7, 0.3);
    background: rgba(255, 193, 7, 0.1);
}

.status-icon {
    font-size: 16px;
    font-weight: bold;
}

.twofa-status.enabled .status-icon {
    color: #00ff88;
}

.twofa-status.disabled .status-icon {
    color: #ffc107;
}

.status-text {
    flex: 1;
    font-size: 12px;
    font-weight: 600;
    color: #e0e0e0;
}

.password-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.password-section input {
    margin-bottom: 0;
}

.creator-status {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding: 12px;
    background: #2a2a2a;
    border-radius: 0;
    border: 1px solid rgba(74, 74, 74, 0.2);
}

.creator-name {
    font-size: 14px;
    font-weight: 600;
    color: #e0e0e0;
}

.plans-section {
    margin-top: 24px;
}

.plans-title {
    font-size: 14px;
    font-weight: 600;
    color: #e0e0e0;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 16px;
}

.plans-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.plan-item {
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.2);
    border-radius: 0;
    padding: 16px;
}

.plan-header {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}

.plan-name-input,
.plan-price-input {
    flex: 1;
    margin-bottom: 0;
}

.plan-benefits-input {
    margin-bottom: 0;
}

.btn-add-plan {
    background: rgba(74, 74, 74, 0.3);
    border: 1px solid rgba(74, 74, 74, 0.5);
    color: #e0e0e0;
    padding: 8px 16px;
    border-radius: 0;
    font-size: 11px;
    font-weight: 600;
    text-transform: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-add-plan:hover {
    background: rgba(74, 74, 74, 0.5);
    border-color: rgba(74, 74, 74, 0.7);
    color: #e0e0e0;
}

.form-actions {
    margin-top: 32px;
    text-align: center;
}

.btn-save {
    background: rgba(0, 255, 136, 0.3);
    border: 1px solid rgba(0, 255, 136, 0.5);
    color: #00ff88;
    padding: 12px 24px;
    border-radius: 0;
    font-size: 12px;
    font-weight: 600;
    text-transform: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-save:hover {
    background: rgba(0, 255, 136, 0.5);
    border-color: rgba(0, 255, 136, 0.7);
}

/* Creators Page Layout */
.creators-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 32px;
    align-items: start;
}

.creators-sidebar {
    position: sticky;
    top: 20px;
}

.sidebar-section {
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.3);
    border-radius: 0;
    padding: 24px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.sidebar-title {
    margin: 0 0 16px 0;
    font-size: 14px;
    font-weight: 700;
    color: #e0e0e0;
    text-transform: none;
    letter-spacing: 0;
    border-bottom: 1px solid rgba(74, 74, 74, 0.2);
    padding-bottom: 8px;
}

.creators-main {
    min-width: 0;
}

.creators-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.stat-card {
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.3);
    border-radius: 0;
    padding: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: #2a2a2a;
    border-color: rgba(74, 74, 74, 0.5);
    transform: translateY(-2px);
}

.stat-number {
    font-size: 20px;
    font-weight: 700;
    color: #e0e0e0;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 11px;
    color: #a0a0a0;
    text-transform: none;
    letter-spacing: 0;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(74, 74, 74, 0.2);
}

.results-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #e0e0e0;
    text-transform: none;
    letter-spacing: 0;
}

.results-count {
    font-size: 12px;
    color: #a0a0a0;
    font-style: italic;
}

.creators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
}

.empty-creators {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.3);
    border-radius: 0;
}

.empty-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.empty-creators h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    color: #e0e0e0;
}

.empty-creators p {
    margin: 0 0 20px 0;
    color: #a0a0a0;
}

/* Filter Form Enhancements */
.filter-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.filter-label {
    font-size: 12px;
    font-weight: 700;
    color: #e0e0e0;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 4px;
}

.filter-select {
    width: 100%;
    padding: 8px 12px;
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.3);
    border-radius: 0;
    color: #e0e0e0;
    font-size: 12px;
    transition: all 0.2s ease;
}

.filter-select:focus {
    outline: none;
    border-color: rgba(74, 74, 74, 0.6);
    background: #2a2a2a;
}

.recommendation-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.checkbox-option {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: #e0e0e0;
    font-weight: 500;
    padding: 8px 0;
}

.checkbox-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: #e0e0e0;
    cursor: pointer;
    border-radius: 0;
}

.checkbox-option span {
    user-select: none;
    font-weight: 600;
    letter-spacing: 0;
}

.form-help {
    font-size: 11px;
    color: #a0a0a0;
    font-style: italic;
    margin-top: 4px;
    line-height: 1.4;
}

.recommendation-toggle .form-help {
    font-size: 12px;
    color: #b0b0b0;
    margin-top: 2px;
    margin-left: 0;
}

.filter-actions {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.btn-filter {
    background: rgba(74, 74, 74, 0.3);
    border: 1px solid rgba(74, 74, 74, 0.5);
    color: #e0e0e0;
    padding: 8px 12px;
    border-radius: 0;
    font-size: 10px;
    font-weight: 600;
    text-transform: none;
    cursor: pointer;
    transition: all 0.2s ease;
    flex: 1;
}

.btn-filter:hover {
    background: rgba(74, 74, 74, 0.5);
    border-color: rgba(74, 74, 74, 0.7);
    color: #e0e0e0;
}

.btn-clear {
    background: rgba(100, 100, 100, 0.3);
    border: 1px solid rgba(100, 100, 100, 0.5);
    color: #a0a0a0;
    padding: 8px 12px;
    border-radius: 0;
    font-size: 10px;
    font-weight: 600;
    text-transform: none;
    text-decoration: none;
    transition: all 0.2s ease;
    flex: 1;
    text-align: center;
}

.btn-clear:hover {
    background: rgba(100, 100, 100, 0.5);
    border-color: rgba(100, 100, 100, 0.7);
    color: #e0e0e0;
    text-decoration: none;
}

/* Tag Cloud */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag-item {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    background: rgba(74, 74, 74, 0.1);
    border: 1px solid rgba(74, 74, 74, 0.3);
    border-radius: 0;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 10px;
}

.tag-item:hover {
    background: rgba(74, 74, 74, 0.2);
    border-color: rgba(74, 74, 74, 0.5);
    text-decoration: none;
    transform: translateY(-1px);
}

.tag-name {
    color: #e0e0e0;
    font-weight: 600;
    text-transform: none;
}

.tag-count {
    color: #a0a0a0;
    font-size: 9px;
}

/* Creator Dashboard */
.dashboard-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 32px;
    align-items: start;
}

.dashboard-sidebar {
    position: sticky;
    top: 20px;
    z-index: 2;
}

.dashboard-main {
    min-width: 0;
}

.dashboard-section {
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.3);
    border-radius: 0;
    padding: 24px;
    margin-bottom: 24px;
}

.privacy-form {
    max-width: 100%;
}

.privacy-form .form-actions {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid rgba(74, 74, 74, 0.2);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(74, 74, 74, 0.2);
}

.section-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #e0e0e0;
    text-transform: none;
    letter-spacing: 0;
}

.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-actions .btn {
    padding: 12px 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    border-radius: 0;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    line-height: 1.2;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    box-sizing: border-box;
}

.stat-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.stat-cards .stat-card {
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.2);
    border-radius: 0;
    padding: 12px;
    text-align: center;
}

.stat-cards .stat-number {
    font-size: 16px;
    font-weight: 700;
    color: #e0e0e0;
    margin-bottom: 4px;
}

.stat-cards .stat-label {
    font-size: 10px;
    color: #a0a0a0;
    text-transform: none;
    letter-spacing: 0;
}

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

.post-card-small {
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.2);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.post-card-small:hover {
    border-color: rgba(74, 74, 74, 0.4);
    transform: translateY(-2px);
}

.post-card-small .post-media {
    aspect-ratio: 1;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
}

.post-card-small .post-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-card-small .post-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #a0a0a0;
}

.post-card-small .post-info {
    padding: 12px;
}

.post-card-small .post-info h3 {
    margin: 0 0 8px 0;
    font-size: 12px;
    font-weight: 600;
    color: #e0e0e0;
    line-height: 1.3;
}

.post-card-small .post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.post-card-small .post-tier {
    font-size: 9px;
    font-weight: 600;
    color: #00ff88;
    text-transform: none;
}

.post-card-small .post-date {
    font-size: 9px;
    color: #a0a0a0;
}

.post-card-small .post-stats {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 9px;
    color: #a0a0a0;
}

.post-card-small .post-actions {
    display: flex;
    gap: 4px;
}

.btn-small {
    padding: 4px 8px;
    font-size: 9px;
    border-radius: 0;
}

/* Collections and Bookmarks */
.collections-grid, .bookmarks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
}

.collection-card, .bookmark-card {
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.2);
    border-radius: 0;
    padding: 16px;
    transition: all 0.3s ease;
}

.collection-card:hover, .bookmark-card:hover {
    border-color: rgba(74, 74, 74, 0.4);
    transform: translateY(-2px);
}

.collection-card h3, .bookmark-card h3 {
    margin: 0 0 8px 0;
    font-size: 14px;
    font-weight: 600;
    color: #e0e0e0;
}

.collection-card p, .bookmark-card p {
    margin: 0 0 12px 0;
    font-size: 12px;
    color: #a0a0a0;
    line-height: 1.4;
}

.collection-meta, .bookmark-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 10px;
    color: #a0a0a0;
}

.collection-actions, .bookmark-actions {
    display: flex;
    gap: 8px;
}

/* Analytics */
.analytics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.analytics-card {
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.2);
    border-radius: 0;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.analytics-card:hover {
    border-color: rgba(74, 74, 74, 0.4);
    transform: translateY(-2px);
}

.analytics-number {
    font-size: 24px;
    font-weight: 700;
    color: #00ff88;
    margin-bottom: 4px;
}

.analytics-label {
    font-size: 11px;
    color: #a0a0a0;
    text-transform: none;
    letter-spacing: 0;
}

.analytics-period {
    font-size: 12px;
    color: #a0a0a0;
    font-style: italic;
}

.analytics-settings {
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.2);
    border-radius: 0;
    padding: 16px;
}

.analytics-settings h3 {
    margin: 0 0 12px 0;
    font-size: 14px;
    font-weight: 600;
    color: #e0e0e0;
}

.setting-group {
    margin-bottom: 8px;
}

/* Upload Page */
.upload-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    align-items: start;
}

.upload-tabs {
    display: flex;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(74, 74, 74, 0.3);
}

.upload-tab {
    background: none;
    border: none;
    padding: 12px 24px;
    cursor: pointer;
    color: #b0b0b0;
    font-weight: 600;
    font-size: 14px;
    text-transform: none;
    letter-spacing: 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.upload-tab:hover {
    color: #e0e0e0;
    background: rgba(74, 74, 74, 0.1);
}

.upload-tab.active {
    color: #e0e0e0;
    border-bottom-color: #e0e0e0;
    background: rgba(74, 74, 74, 0.1);
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.2);
    border-radius: 0;
    margin-bottom: 8px;
}

.file-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.file-name {
    font-size: 14px;
    color: #e0e0e0;
    font-weight: 500;
}

.file-size {
    font-size: 12px;
    color: #b0b0b0;
}

/* Recommendations */
.recommendations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.recommendation-card {
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.3);
    border-radius: 0;
    padding: 20px;
    transition: all 0.3s ease;
}

.recommendation-card:hover {
    background: #2a2a2a;
    border-color: rgba(74, 74, 74, 0.5);
    transform: translateY(-2px);
}

.recommendation-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.recommendation-header h3 {
    color: #e0e0e0;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.recommendation-description {
    color: #b0b0b0;
    font-size: 14px;
    line-height: 1.5;
    margin: 12px 0;
}

.recommendation-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    font-size: 12px;
    color: #4a9eff;
}


.empty-recommendations {
    text-align: center;
    padding: 60px 20px;
    color: #4a9eff;
}

.empty-recommendations .empty-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.empty-recommendations h3 {
    color: #b0b0b0;
    margin-bottom: 8px;
}

.btn-danger {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.4);
}

.btn-danger:hover {
    background: rgba(220, 53, 69, 0.3);
    border-color: rgba(220, 53, 69, 0.6);
    color: #ffffff;
}

/* Profile Tabs */
.profile-tabs {
    display: flex;
    margin-bottom: 32px;
    border-bottom: 1px solid rgba(74, 74, 74, 0.3);
}

.profile-tab {
    background: none;
    border: none;
    padding: 16px 24px;
    cursor: pointer;
    color: #b0b0b0;
    font-weight: 600;
    font-size: 14px;
    text-transform: none;
    letter-spacing: 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    text-decoration: none;
}

.profile-tab:hover {
    color: #e0e0e0;
    background: rgba(74, 74, 74, 0.1);
}

.profile-tab.active {
    color: #e0e0e0;
    border-bottom-color: #e0e0e0;
    background: rgba(74, 74, 74, 0.1);
}

/* Saved Content */
.saved-content,
.user-collections {
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.3);
    border-radius: 0;
    padding: 32px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.section-title {
    color: #e0e0e0;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.section-subtitle {
    color: #b0b0b0;
    font-size: 14px;
    margin: 0;
}

.saved-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.saved-item {
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.2);
    border-radius: 0;
    padding: 20px;
    transition: all 0.3s ease;
}

.saved-item:hover {
    background: #2a2a2a;
    border-color: rgba(74, 74, 74, 0.4);
    transform: translateY(-2px);
}

.saved-media {
    width: 100%;
    height: 200px;
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 16px;
}

.saved-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.saved-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(74, 74, 74, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #e0e0e0;
}

.saved-info h3 {
    color: #e0e0e0;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.saved-creator {
    color: #b0b0b0;
    font-size: 14px;
    margin: 0 0 12px 0;
}

.saved-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 12px;
    color: #4a9eff;
}

.saved-tier {
    background: rgba(74, 74, 74, 0.2);
    color: #e0e0e0;
    padding: 4px 8px;
    border-radius: 0;
    font-weight: 600;
}

.saved-actions {
    display: flex;
    gap: 8px;
}

.empty-saved,
.empty-collections {
    text-align: center;
    padding: 60px 20px;
    color: #4a9eff;
    grid-column: 1 / -1;
}

.empty-saved .empty-icon,
.empty-collections .empty-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.empty-saved h3,
.empty-collections h3 {
    color: #b0b0b0;
    margin-bottom: 8px;
}

/* User Collections */
.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.collection-card {
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.2);
    border-radius: 0;
    padding: 20px;
    transition: all 0.3s ease;
}

.collection-card:hover {
    background: #2a2a2a;
    border-color: rgba(74, 74, 74, 0.4);
    transform: translateY(-2px);
}

.collection-card h3 {
    color: #e0e0e0;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.collection-card p {
    color: #b0b0b0;
    font-size: 14px;
    margin: 0 0 12px 0;
}

.collection-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 12px;
    color: #4a9eff;
}

.collection-actions {
    display: flex;
    gap: 8px;
}

/* Post Actions */
.post-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.btn-small {
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    border-radius: 0;
    transition: all 0.3s ease;
}

.btn-small:hover {
    transform: translateY(-1px);
}

/* Pinned Content */
.pinned-section {
    margin-bottom: 32px;
}

.pinned-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.pinned-item {
    position: relative;
}

.pinned-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(74, 74, 74, 0.9);
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 0;
    font-size: 10px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    z-index: 10;
}

.regular-section {
    margin-top: 32px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.collection-media {
    width: 100%;
    height: 200px;
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 16px;
}

.collection-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(74, 74, 74, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #e0e0e0;
}

.collection-header {
    margin-bottom: 16px;
}

.collection-header h3 {
    color: #e0e0e0;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.collection-preview {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.collection-item-preview {
    flex: 1;
    min-width: 80px;
    max-width: 120px;
    display: flex;
    flex-direction: column;
}

.collection-item-preview a {
    display: block;
    position: relative;
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 4px;
}

.collection-item-preview img,
.collection-item-preview .post-placeholder {
    width: 100%;
    height: 60px;
    object-fit: cover;
    background: rgba(74, 74, 74, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #e0e0e0;
}

.preview-title {
    font-size: 12px;
    color: #e0e0e0;
    text-align: center;
    line-height: 1.3;
    word-break: break-word;
    margin-top: 6px;
    font-weight: 600;
}

.collection-item-preview.more {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(74, 74, 74, 0.1);
    border-radius: 0;
    height: 60px;
}

.more-count {
    font-size: 12px;
    color: #e0e0e0;
    font-weight: 600;
}

/* Modern UI Enhancements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.pulse {
    animation: pulse 2s infinite;
}

.shimmer {
    background: linear-gradient(90deg, transparent, rgba(74, 74, 74, 0.2), transparent);
    background-size: 200px 100%;
    animation: shimmer 1.5s infinite;
}

/* Enhanced Cards */
.retro-box {
    backdrop-filter: none;
    box-shadow: none;
    border: 1px solid #404040;
    transition: opacity 0.2s ease;
    background: #2a2a2a;
    position: relative;
    z-index: 1;
}

.retro-box:hover {
    transform: none;
    box-shadow: none;
    border-color: #404040;
    opacity: 0.9;
}

/* Enhanced Buttons */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:active {
    background: rgba(74, 74, 74, 0.3);
}

/* Loading States */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 74, 74, 0.1), transparent);
    animation: shimmer 1.5s infinite;
}

/* Enhanced Form Elements */
input, textarea, select {
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

input:focus, textarea:focus, select:focus {
    box-shadow: none;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Enhanced Typography */
h1, h2, h3, h4, h5, h6 {
    text-shadow: none;
    letter-spacing: 0;
    line-height: 1.3;
}

/* Modern Grid Layout */
.grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-item {
    transition: all 0.3s ease;
}

.grid-item:hover {
    transform: translateY(-5px);
}

/* Enhanced Navigation */
.nav a {
    position: relative;
    transition: all 0.3s ease;
}


/* Responsive Design Improvements */
@media (max-width: 768px) {
    .retro-box {
        margin: 10px;
        border-radius: 0;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}


/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Indicators */
*:focus {
    outline: 2px solid #333333;
    outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .retro-box {
        border-width: 2px;
        border-color: #e0e0e0;
    }
    
    .btn {
        border-width: 2px;
    }
}

/* Search Styles */
.search-form {
    margin-bottom: 24px;
}

.search-input-group {
    display: flex;
    flex-direction: row;
    gap: 0;
}

.search-field {
    display: flex;
    gap: 8px;
    align-items: center;
}

.search-field input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(74, 74, 74, 0.3);
    border-radius: 0;
    background: #2a2a2a;
    color: #e0e0e0;
    font-size: 16px;
    backdrop-filter: blur(10px);
}

.search-field input:focus {
    border-color: #e0e0e0;
    box-shadow: none;
}

.search-field button {
    padding: 12px 16px;
    border-radius: 0;
    font-size: 16px;
}

.search-filters {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.search-filters label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 0;
    background: rgba(74, 74, 74, 0.1);
    border: 1px solid rgba(74, 74, 74, 0.2);
    transition: all 0.3s ease;
}

.search-filters label:hover {
    background: rgba(74, 74, 74, 0.2);
}

.search-filters input[type="radio"] {
    margin: 0;
}

.search-filters input[type="radio"]:checked + span {
    color: #e0e0e0;
    font-weight: 600;
}

.search-results-header {
    margin-bottom: 24px;
    padding: 16px;
    background: rgba(74, 74, 74, 0.1);
    border-radius: 0;
    border-left: 4px solid #333333;
}

.search-section {
    margin-bottom: 32px;
}

.search-section h2 {
    color: #e0e0e0;
    margin-bottom: 16px;
    font-size: 20px;
    border-bottom: 2px solid rgba(74, 74, 74, 0.3);
    padding-bottom: 8px;
}

.search-results {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.search-result-item {
    padding: 16px;
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.2);
    border-radius: 0;
    transition: all 0.3s ease;
}

.search-result-item:hover {
    background: rgba(74, 74, 74, 0.1);
    border-color: rgba(74, 74, 74, 0.4);
    transform: translateY(-2px);
}

.search-result-item h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
}

.search-result-item h3 a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.search-result-item h3 a:hover {
    color: #e0e0e0;
}

.search-result-meta {
    margin: 0 0 8px 0;
    font-size: 14px;
    color: #6bb3ff;
}

.search-result-meta a {
    color: #e0e0e0;
    text-decoration: none;
}

.search-result-meta a:hover {
    text-decoration: underline;
}

.search-result-description {
    margin: 0;
    color: #8cc5ff;
    line-height: 1.5;
}

.search-placeholder {
    text-align: center;
    padding: 48px 24px;
    color: #6bb3ff;
    font-style: italic;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    padding: 16px;
}

.pagination-info {
    color: #6bb3ff;
    font-size: 14px;
}

/* Notification System */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 16px 20px;
    border-radius: 0;
    color: #e0e0e0;
    font-weight: 500;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    max-width: 400px;
    box-shadow: none;
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    background: rgba(40, 167, 69, 0.9);
    border-left: 4px solid #28a745;
}

.notification.error {
    background: rgba(220, 53, 69, 0.9);
    border-left: 4px solid #dc3545;
}

.notification.warning {
    background: rgba(255, 193, 7, 0.9);
    border-left: 4px solid #ffc107;
    color: #000000;
}

.notification.info {
    background: rgba(23, 162, 184, 0.9);
    border-left: 4px solid #17a2b8;
}

.notification-close {
    position: absolute;
    top: 8px;
    right: 12px;
    background: none;
    border: none;
    color: inherit;
    font-size: 18px;
    cursor: pointer;
    opacity: 0.7;
}

.notification-close:hover {
    opacity: 1;
}

/* Analytics Dashboard */
.analytics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.analytics-card {
    padding: 24px;
}

.analytics-card h3 {
    color: #e0e0e0;
    margin-bottom: 20px;
    font-size: 18px;
    border-bottom: 2px solid rgba(74, 74, 74, 0.3);
    padding-bottom: 8px;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
}

.metric-item {
    text-align: center;
    padding: 16px;
    background: rgba(74, 74, 74, 0.1);
    border-radius: 0;
    border: 1px solid rgba(74, 74, 74, 0.2);
}

.metric-value {
    font-size: 24px;
    font-weight: 700;
    color: #e0e0e0;
    margin-bottom: 4px;
}

.metric-label {
    font-size: 12px;
    color: #6bb3ff;
    text-transform: none;
    letter-spacing: 0;
}

.top-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.top-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: #2a2a2a;
    border-radius: 0;
    border: 1px solid rgba(74, 74, 74, 0.2);
    transition: all 0.3s ease;
}

.top-item:hover {
    background: rgba(74, 74, 74, 0.1);
    border-color: rgba(74, 74, 74, 0.4);
}

.top-item-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.top-item-info strong {
    color: #e0e0e0;
    font-size: 14px;
}

.top-item-meta {
    color: #6bb3ff;
    font-size: 12px;
}

.top-item-value {
    color: #e0e0e0;
    font-weight: 600;
    font-size: 14px;
}

.recent-activity h4 {
    color: #e0e0e0;
    margin: 16px 0 8px 0;
    font-size: 14px;
    text-transform: none;
    letter-spacing: 0;
}

.recent-activity h4:first-child {
    margin-top: 0;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.activity-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: #2a2a2a;
    border-radius: 0;
    border-left: 3px solid rgba(74, 74, 74, 0.3);
}

.activity-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.activity-content strong {
    color: #e0e0e0;
    font-size: 13px;
}

.activity-meta {
    color: #6bb3ff;
    font-size: 11px;
}

.activity-time {
    color: #6bb3ff;
    font-size: 11px;
    white-space: nowrap;
}

.growth-chart {
    margin-top: 16px;
}

.no-data {
    text-align: center;
    color: #6bb3ff;
    font-style: italic;
    padding: 32px;
}

.chart-container {
    position: relative;
    height: 200px;
    margin-top: 16px;
}

.chart-bars {
    display: flex;
    align-items: end;
    justify-content: space-between;
    height: 200px;
    gap: 4px;
    padding: 0 8px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, #333333, rgba(74, 74, 74, 0.6));
    border-radius: 0;
    position: relative;
    min-height: 20px;
    transition: all 0.3s ease;
}

.chart-bar:hover {
    background: linear-gradient(to top, #333333, #333333);
}

.bar-value {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    color: #e0e0e0;
    font-weight: 600;
    white-space: nowrap;
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    padding: 0 8px;
}

.chart-label {
    flex: 1;
    text-align: center;
    font-size: 10px;
    color: #6bb3ff;
    transform: rotate(-45deg);
    transform-origin: center;
}

.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-actions .btn {
    width: 100%;
    text-align: center;
}

@media (max-width: 768px) {
    .analytics-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .metric-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .chart-bars {
        gap: 2px;
    }
    
    .chart-label {
        font-size: 8px;
    }
}

/* Performance Optimizations */
img {
    max-width: 100%;
    height: auto;
}

.lazy-load {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy-load.loaded {
    opacity: 1;
}

/* Image optimization */
.preview-thumb {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.3s ease;
}

.preview-thumb:hover {
    opacity: 0.8;
}

/* Content optimization */
.content-optimized {
    contain: layout style paint;
}

/* Critical CSS for above-the-fold content */
.above-fold {
    will-change: transform;
}

/* Reduce layout shifts */
.aspect-ratio {
    aspect-ratio: 16/9;
    width: 100%;
}

.aspect-ratio img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
    
    .site-wrapper {
        padding: 0;
    }
    
    header {
        padding: 12px 16px;
    }
    
    .header-inner {
        flex-direction: column;
        gap: 12px;
    }
    
    .logo {
        font-size: 20px;
        text-align: center;
    }
    
    .nav-toggle {
        display: block;
        position: absolute;
        top: 16px;
        right: 16px;
        background: #2a2a2a;
        border: 1px solid rgba(74, 74, 74, 0.3);
        border-radius: 0;
        padding: 8px;
        color: #e0e0e0;
        font-size: 18px;
        cursor: pointer;
    }
    
    .nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #2a2a2a;
        border-radius: 0;
        padding: 16px;
        margin-top: 8px;
        backdrop-filter: blur(10px);
    }
    
    .nav.show {
        display: flex;
    }
    
    .nav a {
        padding: 12px 16px;
        text-align: center;
        border-radius: 0;
        margin: 4px 0;
        transition: all 0.3s ease;
    }
    
    .nav a:hover {
        background: rgba(74, 74, 74, 0.2);
    }
    
    .header-controls {
        flex-direction: row;
        justify-content: center;
        gap: 12px;
    }
    
    .main-content {
        padding: 16px;
    }
    
    .retro-box {
        margin: 16px 0;
        padding: 16px;
        border-radius: 0;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 14px;
        width: 100%;
        margin: 8px 0;
    }
    
    .btn-small {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    /* Grid layouts */
    .grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .metric-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .analytics-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    /* Search */
    .search-field {
        flex-direction: row;
        gap: 0;
    }
    
    .search-field input {
        width: 100%;
    }
    
    .search-filters {
        flex-direction: column;
        gap: 8px;
    }
    
    .search-filters label {
        width: 100%;
        justify-content: center;
    }
    
    /* Forms */
    .form-group {
        margin-bottom: 16px;
    }
    
    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        padding: 12px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Collections */
    .collection-preview {
        flex-direction: column;
        gap: 12px;
    }
    
    .collection-item-preview {
        max-width: 100%;
    }
    
    /* Post cards */
    .post-card {
        margin-bottom: 16px;
    }
    
    .post-card img {
        height: 200px;
    }
    
    /* Creator page */
    .creator-header {
        text-align: center;
        padding: 20px 16px;
    }
    
    .creator-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    /* Admin */
    .admin-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .admin-table {
        overflow-x: auto;
    }
    
    .admin-table table {
        min-width: 600px;
    }
    
    /* Notifications */
    .notification {
        left: 16px;
        right: 16px;
        max-width: none;
        transform: translateY(-100%);
    }
    
    .notification.show {
        transform: translateY(0);
    }
}

/* Touch interactions */
@media (hover: none) and (pointer: coarse) {
    .btn:hover {
        transform: none;
    }
    
    .retro-box:hover {
        transform: none;
    }
    
    .search-result-item:hover {
        transform: none;
    }
    
    .top-item:hover {
        transform: none;
    }
    
    /* Larger touch targets */
    .btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .nav a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .search-filters label {
        min-height: 44px;
    }
    
    /* Remove hover effects on touch devices */
    .theme-toggle:hover,
    .search-link:hover {
        transform: none;
    }
}

/* Landscape mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav a {
        flex: 1;
        min-width: 120px;
        margin: 4px;
    }
    
    .header-controls {
        flex-direction: row;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .main-content {
        padding: 12px;
    }
    
    .retro-box {
        padding: 12px;
        margin: 12px 0;
    }
    
    .metric-grid {
        grid-template-columns: 1fr;
    }
    
    .creator-stats {
        grid-template-columns: 1fr;
    }
    
    .chart-bars {
        gap: 2px;
    }
    
    .chart-label {
        font-size: 8px;
    }
    
    .search-field button {
        padding: 16px;
    }
    
    .btn {
        padding: 16px 20px;
        font-size: 16px;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo {
        font-weight: 600;
    }
    
    .btn {
        font-weight: 500;
    }
    
    .metric-value {
        font-weight: 700;
    }
}


.collection-info h3 {
    color: #e0e0e0;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.collection-description {
    color: #b0b0b0;
    font-size: 14px;
    margin: 0 0 12px 0;
}

/* Creator Tabs */
.creator-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
    border-bottom: 1px solid rgba(74, 74, 74, 0.3);
    overflow-x: auto;
}

.creator-tab {
    background: none;
    border: none;
    padding: 16px 24px;
    cursor: pointer;
    color: #b0b0b0;
    font-weight: 600;
    font-size: 14px;
    text-transform: none;
    letter-spacing: 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.creator-tab:hover {
    color: #e0e0e0;
    background: rgba(74, 74, 74, 0.1);
}

.creator-tab.active {
    color: #e0e0e0;
    border-bottom-color: #e0e0e0;
    background: rgba(74, 74, 74, 0.1);
}

/* Bookmark Section */
.bookmark-section {
    margin-bottom: 32px;
}

.bookmark-description {
    color: #b0b0b0;
    font-size: 14px;
    margin: 8px 0 24px 0;
}

.bookmark-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.empty-bookmark {
    text-align: center;
    padding: 60px 20px;
    color: #4a9eff;
    grid-column: 1 / -1;
}

.empty-bookmark .empty-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.empty-bookmark h3 {
    color: #b0b0b0;
    margin-bottom: 8px;
}

/* Creator Actions */
.creator-actions {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

/* Locked Content */
.post-card.locked {
    position: relative;
}


.post-card.locked .post-media {
    position: relative;
}

.locked-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: 0;
}

.lock-icon {
    font-size: 48px;
    margin-bottom: 8px;
    color: #e0e0e0;
}

.lock-text {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 4px;
}

.lock-tier {
    font-size: 12px;
    color: #b0b0b0;
    text-transform: none;
    letter-spacing: 0;
}

.blurred {
    filter: blur(8px);
    opacity: 0.6;
}

/* Tip System */
.tip-section {
    text-align: left;
    margin-top: 0;
    flex: 0 0 auto;
}

.btn-tip {
    background: rgba(74, 74, 74, 0.2);
    border: 1px solid rgba(74, 74, 74, 0.4);
    color: #e0e0e0;
    padding: 8px 16px;
    border-radius: 0;
    font-weight: 500;
    font-size: 13px;
    text-transform: none;
    letter-spacing: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-tip:hover {
    background: rgba(74, 74, 74, 0.3);
    border-color: rgba(74, 74, 74, 0.6);
    color: #e0e0e0;
    transform: translateY(-2px);
    box-shadow: none;
}

.tip-note {
    color: #b0b0b0;
    font-size: 12px;
    margin-top: 8px;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
    box-sizing: border-box;
}

.modal-content {
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.3);
    border-radius: 0;
    padding: 32px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    margin: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.modal-header h3 {
    color: #e0e0e0;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: #b0b0b0;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #e0e0e0;
}

.tip-form .form-group {
    margin-bottom: 20px;
}

.tip-form label {
    display: block;
    color: #e0e0e0;
    font-weight: 600;
    margin-bottom: 8px;
}

.tip-amounts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

.tip-amount-btn {
    background: rgba(74, 74, 74, 0.2);
    border: 1px solid rgba(74, 74, 74, 0.4);
    color: #e0e0e0;
    padding: 8px 12px;
    border-radius: 0;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tip-amount-btn:hover {
    background: rgba(74, 74, 74, 0.3);
    border-color: rgba(74, 74, 74, 0.6);
    color: #e0e0e0;
}

.tip-form input[type="number"] {
    width: 100%;
    padding: 12px;
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.3);
    border-radius: 0;
    color: #e0e0e0;
    font-size: 16px;
}

.tip-form textarea {
    width: 100%;
    padding: 12px;
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.3);
    border-radius: 0;
    color: #e0e0e0;
    font-size: 14px;
    resize: vertical;
    min-height: 80px;
}

.tip-form .form-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 24px;
}

/* Analytics */
.analytics-period {
    color: #b0b0b0;
    font-size: 14px;
    font-weight: 600;
}

.analytics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.analytics-card {
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.3);
    border-radius: 0;
    padding: 24px;
    text-align: center;
}

.analytics-number {
    font-size: 32px;
    font-weight: 700;
    color: #e0e0e0;
    margin-bottom: 8px;
}

.analytics-label {
    color: #b0b0b0;
    font-size: 14px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
}

.analytics-breakdown {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(74, 74, 74, 0.2);
}

.analytics-breakdown small {
    display: block;
    color: #4a9eff;
    font-size: 12px;
    margin-bottom: 4px;
}

.analytics-settings {
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.3);
    border-radius: 0;
    padding: 24px;
}

.analytics-settings h3 {
    color: #e0e0e0;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.setting-group {
    margin-bottom: 16px;
}

.checkbox-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #e0e0e0;
    font-size: 14px;
    padding: 8px 0;
}

.checkbox-option input[type="checkbox"] {
    margin-right: 12px;
    width: 16px;
    height: 16px;
    accent-color: #e0e0e0;
    flex-shrink: 0;
}

.checkbox-option span {
    flex: 1;
    line-height: 1.4;
}

/* Post Interactions */
.post-interactions {
    display: flex;
    gap: 12px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(74, 74, 74, 0.2);
}

.like-btn {
    background: none;
    border: 1px solid #404040;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 0;
    transition: all 0.2s ease;
    color: #b0b0b0;
    font-size: 14px;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.like-btn:hover {
    background: #2a2a2a;
    color: #e0e0e0;
}

.like-btn.liked {
    color: #e0e0e0;
    background: #4a4a4a;
}

.like-icon {
    font-size: 16px;
}

.like-count {
    font-size: 12px;
    font-weight: 700;
}

.comment-btn {
    background: none;
    border: 1px solid #404040;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 0;
    transition: all 0.2s ease;
    color: #b0b0b0;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.comment-btn:hover {
    background: #2a2a2a;
    color: #e0e0e0;
}

.comment-icon {
    font-size: 16px;
}

.upload-form-section {
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.3);
    border-radius: 0;
    padding: 24px;
}

.upload-info-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-card {
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.3);
    border-radius: 0;
    padding: 16px;
}

.info-card h3 {
    margin: 0 0 12px 0;
    font-size: 14px;
    font-weight: 600;
    color: #e0e0e0;
    text-transform: none;
    letter-spacing: 0;
}

.info-card ul {
    margin: 0;
    padding-left: 16px;
    font-size: 12px;
    color: #a0a0a0;
    line-height: 1.5;
}

.info-card li {
    margin-bottom: 4px;
}

.form-section {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(74, 74, 74, 0.2);
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #e0e0e0;
    text-transform: none;
    letter-spacing: 0;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 8px 12px;
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.3);
    border-radius: 0;
    color: #e0e0e0;
    font-size: 12px;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: rgba(74, 74, 74, 0.6);
    background: #2a2a2a;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-group select[multiple] {
    min-height: 120px;
}

.form-group select[multiple] option {
    padding: 4px 8px;
    background: #2a2a2a;
    color: #e0e0e0;
}

.form-group select[multiple] option:checked {
    background: rgba(74, 74, 74, 0.3);
    color: #e0e0e0;
}

.form-help {
    font-size: 10px;
    color: #a0a0a0;
    font-style: italic;
    margin-top: 4px;
}

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

.file-preview {
    margin-top: 12px;
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.3);
    border-radius: 0;
    padding: 12px;
}

.preview-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.preview-content img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 0;
}

.preview-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.preview-info span {
    font-size: 11px;
    color: #a0a0a0;
}

.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(74, 74, 74, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Subscription Plans */
.plans-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    align-items: start;
}

.plans-main {
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.3);
    border-radius: 0;
    padding: 24px;
}

.plans-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.plans-section {
    margin-bottom: 0;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.plan-card {
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.3);
    border-radius: 0;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.plan-card:hover {
    border-color: rgba(74, 74, 74, 0.5);
    transform: translateY(-2px);
}

.plan-card.active {
    border-color: rgba(0, 255, 136, 0.4);
}

.plan-card.inactive {
    opacity: 0.7;
    border-color: rgba(100, 100, 100, 0.3);
}

.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.plan-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #e0e0e0;
    flex: 1;
}

.plan-price {
    font-size: 20px;
    font-weight: 700;
    color: #00ff88;
    margin-left: 12px;
}

.plan-status {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 9px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 0;
    text-transform: none;
    letter-spacing: 0;
}

.plan-card.active .plan-status {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
}

.plan-card.inactive .plan-status {
    background: rgba(100, 100, 100, 0.2);
    color: #a0a0a0;
}

.plan-description {
    margin: 0 0 16px 0;
    font-size: 12px;
    color: #a0a0a0;
    line-height: 1.4;
}

.plan-benefits {
    margin-bottom: 16px;
}

.plan-benefits h4 {
    margin: 0 0 8px 0;
    font-size: 11px;
    font-weight: 600;
    color: #e0e0e0;
    text-transform: none;
    letter-spacing: 0;
}

.plan-benefits ul {
    margin: 0;
    padding-left: 16px;
    font-size: 11px;
    color: #a0a0a0;
    line-height: 1.4;
}

.plan-benefits li {
    margin-bottom: 4px;
}

.plan-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
    font-size: 9px;
    color: #a0a0a0;
}

.plan-actions {
    display: flex;
    gap: 8px;
}

.btn-danger {
    background: rgba(255, 100, 100, 0.3);
    border: 1px solid rgba(255, 100, 100, 0.5);
    color: #ff6464;
}

.btn-danger:hover {
    background: rgba(255, 100, 100, 0.5);
    border-color: rgba(255, 100, 100, 0.7);
    color: #ffffff;
}

.empty-plans {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.2);
    border-radius: 0;
}

.empty-plans .empty-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.empty-plans h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    color: #e0e0e0;
}

.empty-plans p {
    margin: 0;
    color: #a0a0a0;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
    font-size: 12px;
    gap: 8px;
}

.stat-label {
    color: #a0a0a0;
    flex-shrink: 0;
    min-width: 80px;
}

.stat-value {
    color: #e0e0e0;
    font-weight: 600;
    text-align: right;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
    box-sizing: border-box;
}

.modal-content {
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.4);
    border-radius: 0;
    padding: 24px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    margin: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(74, 74, 74, 0.2);
}

.modal-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #e0e0e0;
    text-transform: none;
    letter-spacing: 0;
}

.modal-close {
    background: none;
    border: none;
    color: #a0a0a0;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.modal-close:hover {
    color: #e0e0e0;
}

/* Profile Pictures and Verified Badges */
.user-avatar,
.creator-avatar {
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(74, 74, 74, 0.3);
    transition: border-color 0.3s ease;
}

.user-avatar:hover,
.creator-avatar:hover {
    border-color: rgba(74, 74, 74, 0.6);
}

.avatar-small {
    width: 32px;
    height: 32px;
}

.avatar-medium {
    width: 48px;
    height: 48px;
}

.avatar-large {
    width: 64px;
    height: 64px;
}

.avatar-xlarge {
    width: 96px;
    height: 96px;
}

.creator-avatar-container {
    position: relative;
    display: inline-block;
}

.verified-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    background: #00ff88;
    color: #001a2e;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    border: 2px solid #ffffff;
    box-shadow: none;
}

.avatar-large .verified-badge,
.avatar-xlarge .verified-badge {
    width: 20px;
    height: 20px;
    font-size: 12px;
}

.avatar-medium .verified-badge {
    width: 18px;
    height: 18px;
    font-size: 11px;
}

/* Profile picture in navigation */
.nav-user-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-user-info .user-avatar {
    border-color: rgba(74, 74, 74, 0.5);
}

/* Creator cards with avatars */
.creator-card-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.creator-card-header .creator-avatar-container {
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

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

.creator-card-info h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 700;
    color: #e0e0e0;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.creator-card-info h3 a {
    color: inherit;
    text-decoration: none;
}

.creator-card-info h3 a:hover {
    color: #00ff88;
    text-decoration: underline;
}

.creator-card-info .verified-badge {
    position: static;
    margin-left: 6px;
}

.creator-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
    flex-wrap: wrap;
}

.status-badge {
    padding: 4px 8px;
    border-radius: 0;
    font-size: 10px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    border: 1px solid;
}

.status-approved {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
    border-color: rgba(0, 255, 136, 0.4);
}

.status-pending {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border-color: rgba(255, 193, 7, 0.4);
}

.plan-badge {
    background: rgba(74, 74, 74, 0.2);
    color: #e0e0e0;
    border: 1px solid rgba(74, 74, 74, 0.4);
    padding: 4px 8px;
    border-radius: 0;
    font-size: 10px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
}

/* Post cards with creator avatars */
.post-creator-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.post-creator-info .creator-avatar-container {
    flex-shrink: 0;
}

.post-creator-name {
    font-size: 12px;
    font-weight: 600;
    color: #a0a0a0;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Comment avatars */
.comment-avatar {
    margin-right: 8px;
    flex-shrink: 0;
}

.comment-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.comment-user-info {
    display: flex;
    align-items: center;
    gap: 6px;
}

.comment-username {
    font-size: 11px;
    font-weight: 600;
    color: #e0e0e0;
}

.comment-time {
    font-size: 9px;
    color: #a0a0a0;
}

/* Default avatars */
.creator-avatar-default,
.user-avatar-default {
    background: rgba(74, 74, 74, 0.3);
    color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.avatar-small .creator-avatar-default,
.avatar-small .user-avatar-default {
    font-size: 12px;
}

.avatar-medium .creator-avatar-default,
.avatar-medium .user-avatar-default {
    font-size: 16px;
}

.avatar-large .creator-avatar-default,
.avatar-large .user-avatar-default {
    font-size: 64px;
}

.avatar-xlarge .creator-avatar-default,
.avatar-xlarge .user-avatar-default {
    font-size: 24px;
}

/* Profile header */
.profile-header-content {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.profile-header-info h1 {
    margin: 0 0 4px 0;
    font-size: 24px;
    font-weight: 700;
    color: #e0e0e0;
    text-transform: none;
    letter-spacing: 0;
}

.profile-subtitle {
    margin: 0;
    font-size: 14px;
    color: #a0a0a0;
    font-style: italic;
}

/* 2FA Status */
.twofa-section {
    margin-top: 8px;
}

.qr-code-container {
    display: flex;
    justify-content: center;
    margin: 16px 0;
    padding: 16px;
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.3);
    border-radius: 0;
}

.qr-code img {
    display: block;
    margin: 0 auto;
    background: #2a2a2a;
    padding: 8px;
    border-radius: 0;
}

.twofa-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    border-radius: 0;
    border: 1px solid;
}

.twofa-status.enabled {
    background: rgba(0, 255, 136, 0.1);
    border-color: rgba(0, 255, 136, 0.3);
}

.twofa-status.disabled {
    background: rgba(255, 165, 0, 0.1);
    border-color: rgba(255, 165, 0, 0.3);
}

.status-icon {
    font-size: 16px;
    font-weight: bold;
}

.twofa-status.enabled .status-icon {
    color: #00ff88;
}

.twofa-status.disabled .status-icon {
    color: #ffa500;
}

.status-text {
    font-size: 12px;
    font-weight: 600;
    color: #e0e0e0;
    flex: 1;
}

/* Password Section */
.password-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.password-input {
    width: 100%;
    padding: 8px 12px;
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.3);
    border-radius: 0;
    color: #e0e0e0;
    font-size: 12px;
}

.password-input:focus {
    outline: none;
    border-color: rgba(74, 74, 74, 0.6);
}

/* Avatar Preview */
.avatar-preview {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar-preview img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(74, 74, 74, 0.3);
}

/* Creator Banner Preview */
.banner-preview {
    margin-top: 8px;
}

.banner-preview img {
    width: 100%;
    max-width: 400px;
    height: 120px;
    object-fit: cover;
    border-radius: 0;
    border: 1px solid rgba(74, 74, 74, 0.3);
}

/* Creator Status */
.creator-status {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding: 12px;
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.3);
    border-radius: 0;
}

.status-badge {
    font-size: 10px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 0;
    text-transform: none;
    letter-spacing: 0;
}

.status-badge.status-approved {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
}

.status-badge.status-pending {
    background: rgba(255, 165, 0, 0.2);
    color: #ffa500;
}

.creator-name {
    font-size: 14px;
    font-weight: 600;
    color: #e0e0e0;
}

/* Profile Form */
.profile-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.profile-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.profile-section {
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.3);
    border-radius: 0;
    padding: 24px;
}

.section-title {
    margin: 0 0 20px 0;
    font-size: 16px;
    font-weight: 700;
    color: #e0e0e0;
    text-transform: none;
    letter-spacing: 0;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(74, 74, 74, 0.2);
}

.form-group {
    margin-bottom: 20px;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #e0e0e0;
    text-transform: none;
    letter-spacing: 0;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.3);
    border-radius: 0;
    color: #e0e0e0;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(74, 74, 74, 0.6);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-help {
    display: block;
    margin-top: 6px;
    font-size: 11px;
    color: #a0a0a0;
    font-style: italic;
}

.btn-small {
    padding: 6px 12px;
    font-size: 11px;
    border-radius: 0;
}

.btn-success {
    background: rgba(0, 255, 136, 0.3);
    border: 1px solid rgba(0, 255, 136, 0.5);
    color: #00ff88;
}

.btn-success:hover {
    background: rgba(0, 255, 136, 0.5);
    border-color: rgba(0, 255, 136, 0.7);
    color: #e0e0e0;
}

/* 2FA Setup */
.twofa-setup {
    margin-top: 16px;
    padding: 16px;
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.3);
    border-radius: 0;
}

.twofa-setup h4 {
    margin: 0 0 12px 0;
    font-size: 14px;
    font-weight: 600;
    color: #e0e0e0;
    text-transform: none;
    letter-spacing: 0;
}

.twofa-setup p {
    margin: 0 0 12px 0;
    font-size: 12px;
    color: #a0a0a0;
    line-height: 1.4;
}

.qr-code-container {
    text-align: center;
    margin: 16px 0;
}

.qr-code img {
    border: 1px solid rgba(74, 74, 74, 0.3);
    border-radius: 0;
    padding: 8px;
    background: #2a2a2a;
}

.secret-key {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 12px 0;
    padding: 8px 12px;
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.3);
    border-radius: 0;
}

.secret-key code {
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: #00ff88;
    flex: 1;
    word-break: break-all;
}

.btn-copy {
    padding: 4px 8px;
    font-size: 10px;
    background: rgba(74, 74, 74, 0.3);
    border: 1px solid rgba(74, 74, 74, 0.5);
    color: #e0e0e0;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-copy:hover {
    background: rgba(74, 74, 74, 0.5);
    border-color: rgba(74, 74, 74, 0.7);
    color: #e0e0e0;
}

.verification-form {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(74, 74, 74, 0.2);
}

.verification-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #e0e0e0;
}

.verification-form input {
    width: 100%;
    padding: 8px 12px;
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.3);
    border-radius: 0;
    color: #e0e0e0;
    font-size: 14px;
    text-align: center;
    letter-spacing: 0;
    margin-bottom: 12px;
}

.verification-form input:focus {
    outline: none;
    border-color: rgba(74, 74, 74, 0.6);
}

/* Backup Codes */
.backup-codes-section {
    margin-top: 16px;
    padding: 16px;
    background: #2a2a2a;
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 0;
}

.backup-codes-section h4 {
    margin: 0 0 8px 0;
    font-size: 14px;
    font-weight: 600;
    color: #00ff88;
    text-transform: none;
    letter-spacing: 0;
}

.backup-codes-section p {
    margin: 0 0 12px 0;
    font-size: 11px;
    color: #a0a0a0;
    line-height: 1.4;
}

.backup-codes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 8px;
    margin-top: 12px;
}

.backup-code {
    padding: 6px 8px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 0;
    font-family: 'Courier New', monospace;
    font-size: 11px;
    color: #00ff88;
    text-align: center;
    font-weight: 600;
}

/* 2FA Verification Page */
.verify-form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    padding: 20px;
}

.verify-form-card {
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.3);
    border-radius: 0;
    padding: 32px;
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.verify-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.verify-form {
    margin-bottom: 24px;
}

.verify-form .form-group {
    margin-bottom: 16px;
    text-align: left;
}

.verify-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #e0e0e0;
    text-transform: none;
    letter-spacing: 0;
}

.verify-form input {
    width: 100%;
    padding: 12px 16px;
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.3);
    border-radius: 0;
    color: #e0e0e0;
    font-size: 16px;
    text-align: center;
    letter-spacing: 0;
    transition: border-color 0.3s ease;
}

.verify-form input:focus {
    outline: none;
    border-color: rgba(74, 74, 74, 0.6);
}

.verify-form input[type="text"] {
    letter-spacing: 0;
}

.form-divider {
    position: relative;
    margin: 20px 0;
    text-align: center;
}

.form-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(74, 74, 74, 0.2);
}

.form-divider span {
    background: #2a2a2a;
    padding: 0 16px;
    font-size: 12px;
    color: #a0a0a0;
    text-transform: none;
    letter-spacing: 0;
}

.verify-help {
    text-align: left;
    padding-top: 20px;
    border-top: 1px solid rgba(74, 74, 74, 0.2);
}

.verify-help h4 {
    margin: 0 0 12px 0;
    font-size: 12px;
    font-weight: 600;
    color: #e0e0e0;
    text-transform: none;
    letter-spacing: 0;
}

.verify-help ul {
    margin: 0;
    padding-left: 16px;
    font-size: 11px;
    color: #a0a0a0;
    line-height: 1.4;
}

.verify-help li {
    margin-bottom: 4px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .creators-layout,
    .dashboard-layout,
    .upload-layout,
    .plans-layout {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .creators-sidebar,
    .dashboard-sidebar {
        position: static;
    }
    
    .creators-grid,
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .creators-stats,
    .stat-cards {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    
    .collections-grid,
    .bookmarks-grid {
        grid-template-columns: 1fr;
    }
    
    .analytics-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
}

a {
    color: #e0e0e0;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    color: #e0e0e0;
}

.site-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #2a2a2a;
    position: relative;
}

.site-wrapper::before,
.site-wrapper::after {
    content: '';
    position: fixed;
    bottom: 0;
    width: 300px;
    height: 100vh;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
    opacity: 0.4;
    pointer-events: none;
    z-index: 50;
}

.site-wrapper::before {
    left: -50px;
    background-image: url('left.png');
}

.site-wrapper::after {
    right: -50px;
    background-image: url('right.png');
}

header {
    background: rgba(42, 42, 42, 0.98);
    padding: 16px 40px;
    border-bottom: 1px solid #404040;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

footer {
    background: #2a2a2a;
    padding: 24px 40px;
    border-top: 1px solid #404040;
}

.header-inner,
.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 32px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0;
    color: #e0e0e0;
    text-decoration: none;
    line-height: 1;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.nav {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.nav a {
    font-weight: 500;
    text-transform: none;
    font-size: 13px;
    letter-spacing: 0;
    color: #b0b0b0;
    padding: 8px 0;
    text-decoration: none;
    transition: color 0.2s ease;
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.nav a:hover,
.nav a.active {
    color: #e0e0e0;
}

.main-content {
    flex: 1;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 32px 40px;
    box-sizing: border-box;
    background: #2a2a2a;
    position: relative;
    z-index: 10;
}

.hero {
    background: transparent;
    border: none;
    padding: 30px 40px;
    text-align: center;
    box-shadow: none;
}

.hero h1 {
    font-size: 28px;
    margin: 0 0 12px;
    letter-spacing: 0;
    color: #e0e0e0;
    text-shadow: none;
    line-height: 1.2;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.hero p {
    color: #b0b0b0;
    margin: 0 0 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.age-warning {
    background: #2a2a2a;
    border: 1px solid #404040;
    padding: 12px;
    margin-bottom: 26px;
    font-weight: 500;
    color: #b0b0b0;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 24px;
}

.btn {
    background: #4a4a4a;
    border: none;
    color: #ffffff;
    padding: 10px 20px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    border-radius: 0;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-decoration: none;
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    font-size: 14px;
    box-shadow: none;
    position: relative;
}

.btn:hover {
    background: #3a3a3a;
    color: #ffffff;
    box-shadow: none;
}

.btn:active {
    background: #2a2a2a;
    color: #ffffff;
    box-shadow: none;
}

.search-form {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    border: 1px solid #404040;
    position: relative;
    z-index: 1;
}

/* Ensure browse search input + button align in one row */
.search-inputs {
    display: flex;
    align-items: stretch;
    width: 100%;
}

.search-inputs .search-input {
    flex: 1;
}

.search-inputs .search-btn {
    flex: 0 0 auto;
}

.search-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #404040;
    border-right: none;
    background: #2a2a2a;
    color: #e0e0e0;
    font-size: 14px;
    transition: border-color 0.2s ease;
    margin: 0;
    box-sizing: border-box;
    border-radius: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.search-input:focus {
    outline: none;
    border-color: #606060;
    box-shadow: none;
}

.search-input::placeholder {
    color: #707070;
    opacity: 0.8;
}

.search-btn {
    padding: 12px 24px;
    border: none;
    background: #4a4a4a;
    color: #ffffff;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0;
    text-transform: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-radius: 0;
    margin: 0;
    box-sizing: border-box;
    flex-shrink: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    box-shadow: none;
    white-space: nowrap;
    min-width: 120px;
}

.search-btn:hover {
    background: #3a3a3a;
    color: #ffffff;
    box-shadow: none;
}

.latest-section {
    margin-top: 48px;
}

.section-title {
    text-transform: none;
    letter-spacing: 0;
    color: #e0e0e0;
    margin-bottom: 18px;
    text-align: center;
    text-shadow: none;
    line-height: 1.3;
    font-size: 24px;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 600px) {
    .posts-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

.post-card {
    background: #2a2a2a;
    border: none;
    border-radius: 0;
    overflow: hidden;
    transition: opacity 0.2s ease;
    box-shadow: none;
    display: flex;
    flex-direction: column;
}

.post-card:hover {
    transform: none;
    box-shadow: none;
    opacity: 0.9;
}

.post-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: #2a2a2a;
}

.post-media img,
.post-media video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: none;
}

.post-card:hover .post-media img,
.post-card:hover .post-media video {
    transform: none;
}

.post-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: #2a2a2a;
    color: #a0a0a0;
    font-weight: 500;
    font-size: 14px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.2s;
}

.post-media:hover .video-overlay {
    opacity: 1;
}

.post-type {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    font-size: 11px;
    padding: 4px 8px;
    font-weight: 600;
    border-radius: 0;
    text-transform: none;
    letter-spacing: 0;
}

.post-info {
    padding: 12px 0 0 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.post-info h3,
.post-info h4 {
    margin: 0 0 4px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    font-size: 14px;
    font-weight: 500;
    color: #2a2a2a;
    line-height: 1.4;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.post-info h3,
.post-info h4 {
    color: #e0e0e0;
}

.post-info h3 a {
    color: inherit;
    text-decoration: none;
}

.post-info h3 a:hover {
    text-decoration: underline;
}

.post-category {
    font-size: 12px;
    color: #b0b0b0;
    margin-top: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.post-category a {
    color: inherit;
    text-decoration: none;
}

.post-meta {
    font-size: 12px;
    color: #a0a0a0;
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    gap: 8px;
    align-items: flex-start;
}

.post-meta span:first-child {
    flex-shrink: 0;
    white-space: nowrap;
}

.post-meta span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
    min-width: 0;
    text-align: right;
}

.community-section,
.retro-box,
.form-panel {
    background: #2a2a2a;
    padding: 24px;
    border: 1px solid #404040;
    margin-top: 32px;
    box-shadow: none;
    text-align: center;
    position: relative;
    z-index: 1;
}

.retro-box,
.form-panel {
    background: #2a2a2a;
    border-color: #404040;
}

.flash {
    padding: 12px;
    margin-bottom: 16px;
    font-weight: 600;
    text-align: center;
}

.flash-success {
    background: rgba(74, 74, 74, 0.3);
    border: 1px solid rgba(74, 74, 74, 0.7);
}

.flash-error {
    background: rgba(74, 74, 74, 0.3);
    border: 1px solid rgba(74, 74, 74, 0.7);
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 12px;
    table-layout: auto;
    min-width: 600px;
}

.table-wrapper {
    overflow-x: auto;
    width: 100%;
    max-width: 100%;
}

.table th,
.table td {
    padding: 10px 12px;
    border: 1px solid rgba(74, 74, 74, 0.4);
}

.table th {
    text-transform: none;
    font-size: 12px;
    background: rgba(26, 26, 26, 0.6);
}

form label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    letter-spacing: 0;
}

form input,
form textarea,
form select {
    width: 100%;
    box-sizing: border-box;
    padding: 12px;
    margin-bottom: 16px;
    border: 1px solid #404040;
    background: #2a2a2a;
    color: #e0e0e0;
    border-radius: 0;
    font-size: 14px;
    transition: border-color 0.2s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

form input,
form textarea,
form select {
    border-color: #404040;
    background: #2a2a2a;
    color: #e0e0e0;
}

form input:focus,
form textarea:focus,
form select:focus {
    outline: none;
    border-color: #606060;
    box-shadow: none;
}

form input:focus,
form textarea:focus,
form select:focus {
    border-color: #606060;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-cloud .tag {
    background: #2a2a2a;
    padding: 6px 12px;
    border-radius: 0;
    text-transform: none;
    letter-spacing: 0;
    font-size: 11px;
    border: 1px solid #404040;
    color: #b0b0b0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.auth-links {
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
}

/* Profile Dropdown */
.profile-dropdown {
    position: relative;
}

.profile-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: #2a2a2a;
    border: 1px solid #404040;
    border-radius: 0;
    color: #e0e0e0;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    font-size: 13px;
    text-transform: none;
}

.profile-trigger:hover {
    background: #3a3a3a;
    border-color: #606060;
}

.profile-trigger .username {
    font-weight: 600;
}

.profile-trigger .dropdown-arrow {
    font-size: 8px;
    transition: transform 0.2s ease;
}

.profile-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.profile-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 220px;
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.3);
    border-radius: 0;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1000;
    overflow: hidden;
}

.profile-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-header {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(74, 74, 74, 0.2);
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.role-badge {
    display: inline-block;
    padding: 4px 8px;
    background: rgba(74, 74, 74, 0.2);
    border: 1px solid rgba(74, 74, 74, 0.4);
    border-radius: 0;
    font-size: 9px;
    font-weight: 700;
    color: #e0e0e0;
    text-transform: none;
    letter-spacing: 0;
}

.dropdown-item {
    display: block;
    padding: 12px 16px;
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 12px;
    font-weight: 500;
    border-bottom: 1px solid rgba(74, 74, 74, 0.1);
}

.dropdown-item:hover {
    background: rgba(74, 74, 74, 0.1);
    color: #e0e0e0;
    padding-left: 20px;
}

.dropdown-item.dropdown-danger {
    color: #e0e0e0;
}

.notification-badge {
    display: inline-block;
    background: #333333;
    color: #001a2e;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 0;
    margin-left: 8px;
    min-width: 18px;
    text-align: center;
    line-height: 1.4;
}

.dropdown-item.dropdown-danger:hover {
    background: rgba(74, 74, 74, 0.2);
    color: #e0e0e0;
}

.dropdown-divider {
    height: 1px;
    background: rgba(74, 74, 74, 0.2);
    margin: 8px 0;
}

/* Navigation Dropdowns */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-trigger {
    background: none;
    border: none;
    color: #a0a0a0;
    padding: 8px 0;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-dropdown-trigger:hover {
    color: #e0e0e0;
}

.nav-dropdown.active .nav-dropdown-trigger {
    color: #e0e0e0;
}

.nav-dropdown-trigger .dropdown-arrow {
    font-size: 8px;
    transition: transform 0.2s ease;
}

.nav-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    min-width: 200px;
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.3);
    border-radius: 0;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1000;
    overflow: hidden;
}

.nav-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu .dropdown-item {
    display: block;
    padding: 10px 16px;
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 12px;
    font-weight: 500;
    border-bottom: 1px solid rgba(74, 74, 74, 0.1);
}

.nav-dropdown-menu .dropdown-item:hover {
    background: rgba(74, 74, 74, 0.1);
    color: #e0e0e0;
    padding-left: 20px;
}

.nav-dropdown-menu .dropdown-divider {
    height: 1px;
    background: rgba(74, 74, 74, 0.2);
    margin: 6px 0;
}

.btn-pill {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 0;
    font-weight: bold;
    letter-spacing: 0;
    background: #4a4a4a;
    color: #e0e0e0;
    transition: all 0.2s ease;
    text-decoration: none;
    border: 2px solid #606060;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    text-transform: none;
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

.btn-pill:hover,
.btn-pill.active {
    background: #3a3a3a;
    color: #e0e0e0;
    border-color: #505050;
    box-shadow: none;
    text-decoration: none;
}

.welcome {
    font-size: 12px;
    letter-spacing: 0;
    color: #b0b0b0;
}

.nav-toggle {
    display: none;
    background: #4a4a4a;
    border: 2px solid #606060;
    color: #e0e0e0;
    padding: 8px 12px;
    border-radius: 0;
    cursor: pointer;
    font-weight: bold;
    letter-spacing: 0;
    font-family: 'Courier New', monospace;
    font-size: 11px;
    text-transform: none;
    box-shadow: none;
}

.nav-toggle:hover {
    background: #3a3a3a;
    border-color: #505050;
    color: #e0e0e0;
    box-shadow: none;
}

.footer-links {
    display: flex;
    gap: 24px;
    font-size: 13px;
    letter-spacing: 0;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
}

.footer-links a:hover {
    color: #e0e0e0;
}

.retro-text {
    font-size: 14px;
    letter-spacing: 0;
    color: #a0a0a0;
    text-align: center;
    margin-bottom: 16px;
    font-weight: 500;
}

.grid-two {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

@media (max-width: 640px) {
    .grid-two {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.video-preview {
    margin-top: 12px;
    font-size: 12px;
    color: #7db3ff;
}

.status-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 0;
    font-size: 11px;
    text-transform: none;
}

.status-pending {
    background: rgba(255, 168, 53, 0.3);
    color: #b0b0b0;
}

.status-approved {
    background: rgba(106, 218, 140, 0.3);
    color: #cdffe4;
}

.status-rejected {
    background: rgba(216, 67, 101, 0.3);
    color: #b0b0b0;
}

.ticket-list {
    list-style: none;
    padding: 0;
}

.ticket-item {
    border-bottom: 1px solid rgba(74, 74, 74, 0.4);
    padding: 16px 0;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.small-note {
    font-size: 12px;
    color: #b0b0b0;
}

.preview-thumb {
    width: 100%;
    max-width: 200px;
    display: block;
    margin-top: 12px;
    border: 1px solid rgba(255, 123, 195, 0.4);
    box-shadow: none;
}

.ticket-thread {
    background: rgba(42, 42, 42, 0.9);
    border: 1px solid rgba(74, 74, 74, 0.4);
    padding: 16px;
    max-height: 360px;
    overflow-y: auto;
}

.ticket-message {
    margin-bottom: 16px;
    padding: 12px;
    border-left: 3px solid rgba(74, 74, 74, 0.4);
    background: rgba(42, 42, 42, 0.6);
}

.ticket-message-admin {
    border-left-color: rgba(74, 74, 74, 0.6);
}

.ticket-message-meta {
    font-size: 12px;
    color: #b0b0b0;
    margin-bottom: 6px;
}

.ticket-message-body {
    color: #e0e0e0;
    white-space: pre-wrap;
}

.ticket-reply-form {
    margin-top: 20px;
}

.admin-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
}

.btn-small {
    padding: 8px 12px;
    font-size: 11px;
    letter-spacing: 0;
}

.inline-form {
    display: block;
}

.ticket-table textarea {
    width: 100%;
}

.ticket-table td {
    vertical-align: top;
}

.post-interactions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.like-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.comment-item {
    border-bottom: 1px solid rgba(122, 60, 148, 0.4);
    padding: 12px 0;
}

.comment-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #8cc5ff;
}

.comment-body {
    margin-top: 6px;
    color: #cce5ff;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.comment-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Removed duplicate creator-card styles */

.creator-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 16px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 12px;
    color: #b0b0b0;
    line-height: 1.4;
    gap: 8px;
}

.stat-label {
    font-weight: 600;
    color: #a0a0a0;
    flex-shrink: 0;
    min-width: 80px;
}

.stat-value {
    font-weight: 700;
    color: #e0e0e0;
    text-align: right;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.creator-stats > div {
    margin-bottom: 4px;
}

.tier-card {
    border: 1px dashed rgba(178, 72, 196, 0.6);
    padding: 16px;
    margin-top: 12px;
}

.subscription-bar {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: auto;
    flex-wrap: wrap;
    padding-top: 16px;
    border-top: 1px solid rgba(74, 74, 74, 0.2);
}

.subscription-note {
    font-size: 11px;
    color: #a0a0a0;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
    max-width: 550px;
    margin: 0 auto;
    width: 100%;
}

.content-grid .post-card {
    max-width: 100%;
}

@media (max-width: 600px) {
    .content-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

.content-preview {
    background: rgba(19, 8, 31, 0.95);
    border: 1px solid rgba(255, 91, 150, 0.2);
    padding: 16px;
}

.content-preview h4 {
    margin: 0 0 6px;
    color: #b0b0b0;
    text-transform: none;
    letter-spacing: 0;
}

.content-preview .tags {
    font-size: 11px;
    letter-spacing: 0;
    color: #5ba3ff;
}

.retro-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(74, 74, 74, 0.6), transparent);
    margin: 24px 0;
}

.messages-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 24px;
    margin-top: 24px;
}

.messages-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-height: 650px;
}

.thread-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.thread-filters .pill {
    cursor: pointer;
}

.thread-filters .pill.active {
    background: rgba(74, 74, 74, 0.6);
    color: #e0e0e0;
}

.broadcast-thread textarea {
    resize: vertical;
}

.start-thread {
    position: relative;
}

.dm-search-results {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 20;
    margin-top: 8px;
    background: rgba(26, 26, 26, 0.95);
    border: 1px solid rgba(74, 74, 74, 0.5);
    border-radius: 0;
    max-height: 220px;
    overflow-y: auto;
}

.dm-search-item {
    padding: 10px 12px;
    cursor: pointer;
    font-size: 13px;
    letter-spacing: 0;
}

.dm-search-item:hover {
    background: rgba(74, 74, 74, 0.25);
}

.dm-search-empty {
    padding: 10px 12px;
    font-size: 12px;
    letter-spacing: 0;
    color: #b0b0b0;
}

.message-thread-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid rgba(74, 74, 74, 0.4);
    max-height: 260px;
    overflow-y: auto;
}

.message-thread-item {
    border-bottom: 1px solid rgba(94, 39, 130, 0.4);
}

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

.message-thread-item a {
    display: block;
    padding: 12px;
    color: #a3d0ff;
}

.message-thread-item.active a,
.message-thread-item a:hover {
    background: rgba(113, 45, 148, 0.3);
}

.thread-title {
    font-weight: 600;
    letter-spacing: 0;
}

.thread-meta {
    font-size: 11px;
    color: #5ba3ff;
    margin-top: 6px;
}

.start-thread textarea {
    resize: vertical;
}

.messages-thread {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 520px;
}

.thread-participants {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.participant-tag {
    padding: 6px 12px;
    border-radius: 0;
    font-size: 11px;
    letter-spacing: 0;
    background: rgba(74, 74, 74, 0.3);
}

.participant-creator {
    background: rgba(74, 74, 74, 0.25);
    color: #b0b0b0;
}

.participant-user {
    background: rgba(74, 74, 74, 0.25);
    color: #e0e0e0;
}

.thread-messages {
    flex: 1;
    border: 1px solid rgba(74, 74, 74, 0.4);
    padding: 16px;
    max-height: 460px;
    overflow-y: auto;
    background: rgba(26, 26, 26, 0.85);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.thread-message {
    background: rgba(42, 42, 42, 0.7);
    border-left: 3px solid rgba(74, 74, 74, 0.5);
    padding: 10px 12px;
}

.thread-message.mine {
    align-self: flex-end;
    border-left-color: rgba(74, 74, 74, 0.6);
    background: rgba(42, 42, 42, 0.7);
}

.thread-message-meta {
    font-size: 11px;
    color: #b0b0b0;
    margin-bottom: 4px;
}

.thread-message-body {
    color: #e0e0e0;
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.thread-reply textarea {
    resize: vertical;
}

.empty-thread {
    padding: 60px;
    text-align: center;
    color: #b0b0b0;
}

.small-note {
    text-align: center;
}

.auth-panel {
    text-align: center;
}

/* Profile Page Styles */
.profile-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.profile-header {
    text-align: center;
    margin-bottom: 32px;
}

.profile-header h1 {
    font-size: 32px;
    letter-spacing: 0;
    color: #e0e0e0;
    margin-bottom: 16px;
    text-shadow: none;
    line-height: 1.2;
}

.profile-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.profile-section {
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.4);
    border-radius: 0;
    padding: 24px;
}

.profile-section .section-title {
    margin-bottom: 20px;
    font-size: 18px;
    color: #e0e0e0;
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #b0b0b0;
    font-size: 12px;
    letter-spacing: 0;
    text-transform: none;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.4);
    border-radius: 0;
    color: #e0e0e0;
    font-size: 14px;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e0e0e0;
    box-shadow: none;
}

.avatar-preview {
    margin-top: 12px;
}

.avatar-preview img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 0;
    border: 2px solid rgba(74, 74, 74, 0.5);
}

.creator-status {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding: 12px;
    background: #2a2a2a;
    border-radius: 0;
    border: 1px solid rgba(74, 74, 74, 0.3);
}

.status-badge {
    background: rgba(74, 74, 74, 0.2);
    color: #b0b0b0;
    padding: 4px 8px;
    border-radius: 0;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 0;
    text-transform: none;
}

.creator-name {
    color: #e0e0e0;
    font-weight: bold;
    font-size: 14px;
}

.plans-section {
    margin-top: 24px;
}

.plans-title {
    color: #e0e0e0;
    font-size: 16px;
    margin-bottom: 16px;
    text-align: left;
}

.plans-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
}

.plan-item {
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.4);
    border-radius: 0;
    padding: 16px;
}

.plan-header {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 12px;
}

.plan-name-input {
    flex: 1;
    padding: 8px;
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.4);
    border-radius: 0;
    color: #e0e0e0;
    font-size: 12px;
    height: 36px;
    box-sizing: border-box;
}

.plan-price-input {
    width: 100px;
    padding: 8px;
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.4);
    border-radius: 0;
    color: #e0e0e0;
    font-size: 12px;
    height: 36px;
    box-sizing: border-box;
}

.plan-benefits-input {
    width: 100%;
    padding: 8px;
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.4);
    border-radius: 0;
    color: #e0e0e0;
    font-size: 12px;
    resize: vertical;
    min-height: 60px;
}

.btn-remove {
    padding: 8px 12px;
    font-size: 10px;
    background: rgba(74, 74, 74, 0.2);
    border: 1px solid rgba(74, 74, 74, 0.4);
    color: #b0b0b0;
    height: 36px;
    flex-shrink: 0;
}

.btn-remove:hover {
    background: rgba(74, 74, 74, 0.3);
    border-color: rgba(74, 74, 74, 0.6);
    color: #e0e0e0;
}

.btn-add-plan {
    background: rgba(74, 74, 74, 0.2);
    border: 1px solid rgba(74, 74, 74, 0.4);
    color: #b0b0b0;
    padding: 10px 16px;
    font-size: 11px;
}

.btn-add-plan:hover {
    background: rgba(74, 74, 74, 0.3);
    border-color: rgba(74, 74, 74, 0.6);
}

.creator-pending {
    text-align: center;
    padding: 24px;
    background: #2a2a2a;
    border-radius: 0;
    border: 1px solid rgba(74, 74, 74, 0.3);
}

.creator-pending p {
    color: #b0b0b0;
    margin-bottom: 16px;
}

.form-actions {
    text-align: center;
    margin-top: 32px;
}

.btn-save {
    padding: 14px 28px;
    font-size: 12px;
    background: rgba(74, 74, 74, 0.2);
    border: 1px solid rgba(74, 74, 74, 0.4);
    color: #e0e0e0;
}

.btn-save:hover {
    background: rgba(74, 74, 74, 0.3);
    border-color: rgba(74, 74, 74, 0.6);
}

/* Creator Page Styles */
.creator-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.creator-profile-header {
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.4);
    border-radius: 0;
    padding: 32px;
    margin-bottom: 24px;
}

.creator-hero {
    display: flex;
    gap: 32px;
    align-items: center;
    margin-bottom: 32px;
}

.creator-avatar-section {
    flex-shrink: 0;
}

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

.creator-title-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.creator-name-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.creator-name {
    font-size: 42px;
    font-weight: 700;
    color: #e0e0e0;
    margin: 0;
    letter-spacing: 0;
    line-height: 1.2;
    text-shadow: none;
}

.creator-badges {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.creator-stats-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px 20px;
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.3);
    border-radius: 0;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: #2a2a2a;
    border-color: rgba(74, 74, 74, 0.5);
    transform: translateY(-2px);
}

.stat-card .stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #e0e0e0;
    line-height: 1;
}

.stat-card .stat-label {
    font-size: 12px;
    color: #a0a0a0;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 600;
}

.creator-bio {
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.3);
    border-radius: 0;
    padding: 20px;
    margin-top: 24px;
}

.creator-bio p {
    margin: 0;
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.6;
    font-style: italic;
}

.creator-actions {
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.4);
    border-radius: 0;
    padding: 24px;
    margin-bottom: 24px;
}

.subscription-status {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}

.status-badge.active {
    background: rgba(74, 74, 74, 0.2);
    color: #b0b0b0;
    padding: 8px 16px;
    border-radius: 0;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 0;
    text-transform: none;
}

.subscription-plans {
    text-align: center;
    width: 100%;
}

.plans-title {
    color: #e0e0e0;
    font-size: 18px;
    margin-bottom: 20px;
    text-transform: none;
    letter-spacing: 0;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
    width: 100%;
}

.plan-card {
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.4);
    border-radius: 0;
    padding: 20px;
    text-align: left;
}

.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.plan-name {
    font-size: 16px;
    font-weight: bold;
    color: #e0e0e0;
    margin: 0;
    text-transform: none;
    letter-spacing: 0;
}

.plan-price {
    font-size: 18px;
    font-weight: bold;
    color: #b0b0b0;
}

.plan-benefits {
    margin-bottom: 20px;
}

.benefit-item {
    color: #b0b0b0;
    font-size: 12px;
    margin-bottom: 4px;
    line-height: 1.4;
}

.btn-subscribe {
    width: 100%;
    padding: 12px;
    font-size: 11px;
    background: rgba(74, 74, 74, 0.2);
    border: 1px solid rgba(74, 74, 74, 0.4);
    color: #e0e0e0;
}

.btn-subscribe:hover {
    background: rgba(74, 74, 74, 0.3);
    border-color: rgba(74, 74, 74, 0.6);
    color: #e0e0e0;
}

.default-subscription {
    text-align: center;
}

.subscription-note {
    color: #b0b0b0;
    font-size: 12px;
    margin-top: 12px;
}

.message-section {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(74, 74, 74, 0.3);
}

.btn-primary {
    background: #4a4a4a;
    border: none;
    color: #ffffff;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.btn-primary:hover {
    background: #3a3a3a;
    border: none;
    color: #ffffff;
}

.btn-secondary {
    background: #4a4a4a;
    border: none;
    color: #e0e0e0;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.btn-secondary:hover {
    background: #3a3a3a;
    border: none;
    color: #e0e0e0;
}

/* Standardized Page Layout */
.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

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

.page-title {
    font-size: 32px;
    font-weight: bold;
    color: #e0e0e0;
    margin: 0 0 8px 0;
    letter-spacing: 0;
    text-transform: none;
    text-align: center;
}

.page-subtitle {
    color: #b0b0b0;
    margin: 0 0 20px 0;
    font-size: 14px;
    text-align: center;
    line-height: 1.5;
}

.page-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.content-section {
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.4);
    border-radius: 0;
    padding: 16px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(74, 74, 74, 0.3);
}

.section-title {
    font-size: 20px;
    color: #e0e0e0;
    margin: 0;
    text-transform: none;
    letter-spacing: 0;
}

.section-link {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0;
    transition: color 0.2s ease;
}

.section-link:hover {
    color: #e0e0e0;
}

/* Hero Section */
.hero-section {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 40px 0;
    text-align: center;
    box-shadow: none;
}

.hero-title {
    font-size: 32px;
    margin: 0 0 16px;
    letter-spacing: 0;
    color: #e0e0e0;
    font-weight: 700;
    text-shadow: none;
    line-height: 1.2;
}

.hero-subtitle {
    color: #b0b0b0;
    margin: 0 0 24px;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
}

.age-warning {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #2a2a2a;
    border: 1px solid #404040;
    padding: 12px 16px;
    border-radius: 0;
    font-weight: 500;
    color: #b0b0b0;
    font-size: 14px;
    margin-bottom: 24px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.warning-icon {
    font-size: 16px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.hero-help {
    color: #b0b0b0;
    font-size: 13px;
    margin-top: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.hero-help a {
    color: #e0e0e0;
    text-decoration: none;
}

.hero-help a:hover {
    text-decoration: underline;
    color: #e0e0e0;
}

/* Browse Page */
.browse-header {
    background: #2a2a2a;
    border: 1px solid #404040;
    border-radius: 0;
    padding: 32px;
    text-align: center;
}

.browse-filters {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 8px;
}

.filter-section {
    background: #2a2a2a;
    border: 1px solid #404040;
    border-radius: 0;
    padding: 8px;
}

.filter-title {
    color: #e0e0e0;
    font-size: 16px;
    margin: 0 0 4px;
    text-transform: none;
    letter-spacing: 0;
}

.filter-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.filter-label {
    color: #b0b0b0;
    font-size: 12px;
    font-weight: bold;
    text-transform: none;
    letter-spacing: 0;
}

.filter-select {
    padding: 10px 12px;
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.4);
    border-radius: 0;
    color: #e0e0e0;
    font-size: 14px;
}

.filter-select:focus {
    outline: none;
    border-color: #e0e0e0;
    box-shadow: none;
}

.tag-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    align-items: flex-start;
    line-height: 1;
}

.tag-filter {
    display: inline-block;
    padding: 6px 12px;
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.4);
    border-radius: 0;
    color: #b0b0b0;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 0;
    text-transform: none;
    cursor: pointer;
    transition: all 0.2s ease;
    line-height: 1;
    margin: 0;
}

.tag-filter:hover {
    background: rgba(74, 74, 74, 0.2);
    border-color: rgba(74, 74, 74, 0.6);
    color: #e0e0e0;
}

.tag-filter.selected {
    background: rgba(74, 74, 74, 0.3);
    border-color: rgba(74, 74, 74, 0.8);
    color: #e0e0e0;
}

.filter-actions {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.btn-filter {
    background: rgba(74, 74, 74, 0.2);
    border: 1px solid rgba(74, 74, 74, 0.4);
    color: #e0e0e0;
    padding: 10px 16px;
    font-size: 11px;
}

.btn-filter:hover {
    background: rgba(74, 74, 74, 0.3);
    border-color: rgba(74, 74, 74, 0.6);
    color: #e0e0e0;
}

.btn-clear {
    background: rgba(74, 74, 74, 0.2);
    border: 1px solid rgba(74, 74, 74, 0.4);
    color: #b0b0b0;
    padding: 10px 16px;
    font-size: 11px;
    text-decoration: none;
}

.btn-clear:hover {
    background: rgba(74, 74, 74, 0.3);
    border-color: rgba(74, 74, 74, 0.6);
    color: #e0e0e0;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.tag-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.3);
    border-radius: 0;
    color: #b0b0b0;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.2s ease;
}

.tag-item:hover {
    background: rgba(74, 74, 74, 0.2);
    border-color: rgba(74, 74, 74, 0.5);
    color: #e0e0e0;
}

.tag-name {
    font-weight: bold;
}

.tag-count {
    color: #4a9eff;
    font-size: 10px;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(74, 74, 74, 0.3);
}

.results-title {
    color: #e0e0e0;
    font-size: 18px;
    margin: 0;
    text-transform: none;
    letter-spacing: 0;
}

.results-count {
    color: #b0b0b0;
    font-size: 12px;
    font-weight: bold;
}

/* Creators Page */
.creators-header {
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.4);
    border-radius: 0;
    padding: 32px;
    text-align: center;
}

.creators-info {
    color: #b0b0b0;
    font-size: 12px;
    margin-top: 12px;
}

.creators-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.stat-card {
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.3);
    border-radius: 0;
    padding: 20px;
    text-align: center;
}

.stat-card .stat-number {
    font-size: 24px;
    font-weight: bold;
    color: #b0b0b0;
    margin-bottom: 8px;
}

.stat-card .stat-label {
    font-size: 11px;
    color: #b0b0b0;
    text-transform: none;
    letter-spacing: 0;
}

.creators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

/* Empty States */
.empty-state,
.empty-results,
.empty-creators {
    text-align: center;
    padding: 48px 24px;
    color: #b0b0b0;
    grid-column: 1 / -1;
}

.empty-icon {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.6;
}

.empty-state h3,
.empty-results h3,
.empty-creators h3 {
    color: #b0b0b0;
    margin: 0 0 8px;
    font-size: 18px;
}

.empty-state p,
.empty-results p,
.empty-creators p {
    margin: 0 0 20px;
    font-size: 14px;
    line-height: 1.5;
}

.empty-state a,
.empty-results a,
.empty-creators a {
    color: #e0e0e0;
    text-decoration: none;
}

.empty-state a:hover,
.empty-results a:hover,
.empty-creators a:hover {
    text-decoration: underline;
}

.empty-tags {
    text-align: center;
    padding: 20px;
    color: #a0a0a0;
}

.empty-tags p {
    margin: 0 0 8px 0;
    font-size: 14px;
}

.empty-tags small {
    font-size: 12px;
    opacity: 0.7;
}

/* Auth Pages */
.auth-header,
.apply-header {
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.4);
    border-radius: 0;
    padding: 24px;
    text-align: center;
}

.apply-info {
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.3);
    border-radius: 0;
    padding: 16px;
    margin-top: 16px;
}

.apply-info p {
    margin: 0;
    color: #b0b0b0;
    font-size: 14px;
    line-height: 1.5;
}

.auth-form,
.apply-form {
    max-width: 400px;
    margin: 0 auto;
}

.auth-note {
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.3);
    border-radius: 0;
    padding: 12px;
    margin-bottom: 16px;
}

.auth-note p {
    margin: 0;
    color: #b0b0b0;
    font-size: 12px;
    line-height: 1.4;
}

.auth-link {
    text-align: center;
    margin-top: 16px;
    color: #b0b0b0;
    font-size: 12px;
}

.auth-link a {
    color: #e0e0e0;
    text-decoration: none;
}

.auth-link a:hover {
    text-decoration: underline;
}

/* Subscriptions Page */
.subscriptions-header {
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.4);
    border-radius: 0;
    padding: 24px;
    text-align: center;
}

.subscriptions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
}

.subscription-card {
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.3);
    border-radius: 0;
    padding: 16px;
}

.subscription-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.subscription-header .creator-name {
    margin: 0;
    font-size: 16px;
}

.subscription-header .creator-name a {
    color: #e0e0e0;
    text-decoration: none;
}

.subscription-header .creator-name a:hover {
    text-decoration: underline;
}

.status-badge.expired {
    background: rgba(74, 74, 74, 0.2);
    color: #b0b0b0;
    padding: 4px 8px;
    border-radius: 0;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 0;
    text-transform: none;
}

.subscription-details {
    margin-bottom: 12px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
}

.detail-label {
    color: #b0b0b0;
    font-size: 11px;
    text-transform: none;
    letter-spacing: 0;
}

.detail-value {
    color: #b0b0b0;
    font-size: 12px;
}

.subscription-actions {
    text-align: center;
}

.renewal-note {
    color: #b0b0b0;
    font-size: 11px;
}

/* Upload Page */
.upload-header {
    background: #2a2a2a;
    border: 1px solid rgba(74, 74, 74, 0.4);
    border-radius: 0;
    padding: 24px;
    text-align: center;
}

.upload-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

    .messages-sidebar {
        max-height: none;
    }

    .thread-messages {
        max-height: none;
    }
}

.auth-panel {
    max-width: 420px;
    margin: 0 auto;
}

.admin-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
    max-width: 100%;
}

.admin-grid .retro-box {
    overflow-x: auto;
    overflow-y: visible;
    min-width: 0;
    max-width: 100%;
    padding: 16px;
}

.admin-grid .retro-box h3 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

.admin-grid h3 {
    margin-top: 0;
    letter-spacing: 0;
    color: #e0e0e0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.ticket-status {
    font-size: 12px;
    color: #b0b0b0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.pill {
    display: inline-block;
    padding: 4px 8px;
    font-size: 11px;
    border-radius: 0;
    background: #2a2a2a;
    border: 1px solid #404040;
    color: #b0b0b0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.grid-three {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
}


.tag-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    max-height: 120px;
    overflow-y: auto;
    padding: 6px;
    background: #2a2a2a;
    border: 1px solid #404040;
}

.tag-checkbox {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 0;
    background: #2a2a2a;
    padding: 6px 10px;
    border-radius: 0;
    border: 1px solid rgba(74, 74, 74, 0.4);
    cursor: pointer;
    transition: all 0.2s ease;
    color: #b0b0b0;
    text-decoration: none;
}

.tag-checkbox:hover {
    background: rgba(74, 74, 74, 0.2);
    border-color: rgba(74, 74, 74, 0.6);
    transform: translateY(-1px);
    color: #e0e0e0;
}

.tag-checkbox input {
    display: none;
}

.tag-checkbox.selected {
    background: rgba(74, 74, 74, 0.3);
    border-color: rgba(74, 74, 74, 0.8);
    color: #e0e0e0;
    font-weight: 600;
}

.creator-header {
    background: rgba(42, 42, 42, 0.9);
    border: 1px solid rgba(74, 74, 74, 0.5);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: none;
}

.creator-header h1 {
    margin: 0 0 12px;
    letter-spacing: 0;
    color: #e0e0e0;
}

.creator-header p {
    color: #b0b0b0;
}

@media (max-width: 768px) {
    .header-inner,
    .footer-inner,
    .main-content {
        padding: 20px;
    }

    .hero {
        padding: 20px 20px;
    }

    .hero h1 {
        font-size: 28px;
        letter-spacing: 0;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .admin-grid {
        grid-template-columns: 1fr;
    }
    
    .admin-grid .retro-box {
        overflow-x: visible;
    }
    
    .table {
        min-width: 100%;
        font-size: 11px;
    }
    
    .table th,
    .table td {
        padding: 6px 8px;
    }

    .creator-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .creator-hero {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    
    .creator-stats-section {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .creator-name {
        font-size: 32px;
    }
    
    .header-controls {
        justify-content: center;
        gap: 12px;
    }
    
    .theme-toggle {
        min-width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .search-form {
        flex-direction: row;
        gap: 0;
    }

    .search-input {
        font-size: 16px; /* Prevent zoom on iOS */
    }

    .header-inner {
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "logo toggle"
            "nav nav"
            "auth auth";
        gap: 16px;
    }

    .logo {
        grid-area: logo;
    }

    .nav-toggle {
        grid-area: toggle;
        display: inline-block;
        justify-self: end;
    }

    .nav {
        grid-area: nav;
        display: none;
        flex-direction: column;
        gap: 10px;
        background: rgba(22, 9, 34, 0.95);
        padding: 16px;
        border: 1px solid rgba(74, 74, 74, 0.4);
        border-radius: 0;
    }

    .nav[aria-expanded="true"] {
        display: flex;
    }

    .auth-links {
        grid-area: auth;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 12px;
    }

    .nav a {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .header-inner,
    .footer-inner,
    .main-content {
        padding: 16px;
    }

    .hero {
        padding: 16px;
    }

    .hero h1 {
        font-size: 24px;
        letter-spacing: 0;
    }

    .logo {
        font-size: 24px;
        letter-spacing: 0;
    }

    .nav a {
        padding: 12px;
        font-size: 12px;
        min-height: 44px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 12px;
        letter-spacing: 0;
    }

/* Locked content styles */
.locked-content {
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.blurred-preview {
    filter: blur(20px);
    transform: scale(1.1);
    transition: filter 0.3s ease;
}

.blurred-media {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
}

.retro-box video,
.retro-box video[controls] {
    max-width: 800px;
    width: 100%;
    height: auto;
    display: block;
}

.video-container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    display: block;
}

.unlock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.unlock-content {
    text-align: center;
    color: #e0e0e0;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 0;
    border: 2px solid #e0e0e0;
    max-width: 400px;
    width: 90%;
}

.unlock-content h3 {
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
    color: #b0b0b0;
}

.unlock-content p {
    margin: 0 0 1.5rem 0;
    font-size: 1.1rem;
}

.unlock-content .btn {
    font-size: 1.1rem;
    padding: 12px 24px;
    border-radius: 0;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
}

.unlock-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: none;
}

/* Responsive unlock overlay */
@media (max-width: 768px) {
    .unlock-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .unlock-content h3 {
        font-size: 1.3rem;
    }
    
    .unlock-content p {
        font-size: 1rem;
    }
    
/* Recommendations section */
.recommendations-section {
    margin-bottom: 2rem;
}

.recommendations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.recommendation-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 0;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.recommendation-card:hover {
    transform: translateY(-2px);
    box-shadow: none;
    border-color: var(--accent-color);
}

.recommendation-avatar {
    margin-bottom: 1rem;
    text-align: center;
}

.recommendation-info h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    color: var(--text-primary);
}

.recommendation-description {
    margin: 0 0 1rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
}

.recommendation-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.recommendation-meta span {
    background: var(--bg-tertiary);
    padding: 0.25rem 0.5rem;
    border-radius: 0;
}

.recommendation-actions {
    text-align: center;
}

.empty-recommendations {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-muted);
}

.empty-recommendations .empty-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.empty-recommendations h3 {
    margin: 0 0 0.5rem 0;
    color: var(--text-secondary);
}

.empty-recommendations p {
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive recommendations */
@media (max-width: 768px) {
    .recommendations-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .recommendation-card {
        padding: 1rem;
    }
    
    .recommendation-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}


