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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a1a 25%, #2a0a2a 50%, #1a0a1a 75%, #0a0a0a 100%);
    background-attachment: fixed;
    color: #f0e6f0;
    line-height: 1.6;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(255, 20, 147, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(255, 105, 180, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.navbar {
    background: rgba(26, 10, 26, 0.95);
    border-bottom: 1px solid rgba(255, 20, 147, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(255, 20, 147, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #ff1493, #ff69b4, #da70d6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 20, 147, 0.3);
}

.brand-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.nav-search {
    flex: 1;
    max-width: 500px;
    margin: 0 40px;
    position: relative;
}

.nav-search i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #8b949e;
}

.nav-search input {
    width: 100%;
    padding: 10px 15px 10px 45px;
    background: rgba(33, 20, 33, 0.8);
    border: 1px solid rgba(255, 20, 147, 0.3);
    border-radius: 25px;
    color: #f0e6f0;
    font-size: 14px;
    transition: all 0.3s ease;
}

.nav-search input:focus {
    outline: none;
    border-color: #ff1493;
    box-shadow: 0 0 0 3px rgba(255, 20, 147, 0.2), 0 0 20px rgba(255, 20, 147, 0.1);
    background: rgba(33, 20, 33, 0.95);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-search-filter {
    display: none;
    gap: 10px;
}

.mobile-search-btn, .mobile-filter-btn {
    background: #21262d;
    border: 1px solid #30363d;
    color: #e4e6ea;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.mobile-search-btn:hover, .mobile-filter-btn:hover {
    background: #30363d;
    border-color: #00d4ff;
}

.user-avatar {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.main-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 250px 1fr 300px;
    gap: 20px;
    padding: 20px;
    min-height: calc(100vh - 60px);
}

.sidebar {
    background: rgba(26, 10, 26, 0.8);
    border-radius: 16px;
    padding: 20px;
    height: fit-content;
    position: sticky;
    top: 80px;
    border: 1px solid rgba(255, 20, 147, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(255, 20, 147, 0.1);
}

.sidebar-section {
    margin-bottom: 30px;
}

.sidebar-section h3 {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    color: #8b949e;
}

.category-item:hover {
    background: rgba(255, 20, 147, 0.1);
    color: #f0e6f0;
    transform: translateX(5px);
    border-left: 3px solid #ff1493;
}

.category-item.active {
    background: rgba(255, 20, 147, 0.15);
    color: #ff69b4;
    font-weight: 500;
    border-left: 3px solid #ff1493;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.2);
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background: rgba(255, 20, 147, 0.1);
    color: #ff69b4;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 20, 147, 0.3);
    font-weight: 500;
}

.tag:hover {
    background: rgba(255, 20, 147, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3);
    color: #ff1493;
}

.content {
    background: rgba(26, 10, 26, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(255, 20, 147, 0.2);
    min-height: 600px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(255, 20, 147, 0.1);
    overflow: hidden;
}

.feed-header {
    padding: 20px;
    border-bottom: 1px solid #2d3748;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sort-options {
    display: flex;
    gap: 10px;
}

.sort-btn {
    background: none;
    border: none;
    color: #8b949e;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
}

.sort-btn:hover {
    background: #21262d;
    color: #e4e6ea;
}

.sort-btn.active {
    background: rgba(255, 20, 147, 0.15);
    color: #ff69b4;
    font-weight: 500;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.2);
}

.posts-container {
    padding: 0;
}

.post-card {
    background: rgba(26, 10, 26, 0.6);
    border-bottom: 1px solid rgba(255, 20, 147, 0.1);
    padding: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.post-card:hover {
    background: rgba(255, 20, 147, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.15);
}

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

.post-card:hover::before {
    left: 100%;
}

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

.post-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #ff1493, #ff69b4, #da70d6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3);
    transition: all 0.3s ease;
}

.post-avatar:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 20, 147, 0.4);
}

.post-avatar img {
    width: 32px;
    height: 32px;
    object-fit: cover;
    border-radius: 50%;
}

.post-meta {
    flex: 1;
}

.post-author {
    font-weight: 600;
    color: #e4e6ea;
    font-size: 14px;
    cursor: pointer;
}

.post-author:hover {
    color: #ff69b4;
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
}

.post-time {
    color: #8b949e;
    font-size: 12px;
}

.post-title {
    font-size: 18px;
    font-weight: 600;
    color: #f0e6f0;
    margin-bottom: 8px;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.post-title:hover {
    color: #ff69b4;
    text-shadow: 0 0 15px rgba(255, 105, 180, 0.3);
}

.post-description {
    color: #8b949e;
    margin-bottom: 15px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.post-description.expanded {
    -webkit-line-clamp: unset;
    overflow: visible;
}

.description-toggle {
    color: #00d4ff;
    cursor: pointer;
    font-size: 12px;
    margin-top: 2px;
    display: none;
}

.description-toggle:hover {
    text-decoration: underline;
}

/* Image and video size limits */
.file-preview img {
    max-width: 100%;
    max-height: 175px;
    width: auto;
    height: auto;
    border-radius: 8px;
    object-fit: contain;
}

.file-preview video {
    max-width: 100%;
    max-height: 250px;
    width: auto;
    height: auto;
}

.post-file {
    background: rgba(33, 20, 33, 0.8);
    border: 1px solid rgba(255, 20, 147, 0.2);
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.post-file:hover {
    border-color: rgba(255, 20, 147, 0.4);
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.1);
    transform: translateY(-1px);
}

.file-icon {
    font-size: 24px;
    color: #ff69b4;
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.3);
}

.file-info {
    flex: 1;
}

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

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

.post-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 10px;
    border-top: 1px solid #2d3748;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: #8b949e;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    transition: all 0.2s ease;
}

.action-btn:hover {
    background: #21262d;
    color: #e4e6ea;
}

.action-btn.active {
    color: #ff69b4;
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
}

.right-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: fit-content;
    position: sticky;
    top: 80px;
}

.widget {
    background: rgba(26, 10, 26, 0.8);
    border: 1px solid rgba(255, 20, 147, 0.2);
    border-radius: 16px;
    padding: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(255, 20, 147, 0.1);
}

.widget h3 {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
}

.stats {
    display: flex;
    justify-content: space-between;
}

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

.stat-number {
    display: block;
    font-size: 20px;
    font-weight: bold;
    color: #ff69b4;
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.3);
}

.stat-label {
    font-size: 12px;
    color: #8b949e;
    text-transform: uppercase;
}

.contributors {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contributor {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.contributor i {
    color: #ff69b4;
    font-size: 16px;
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.3);
}

.contribution {
    margin-left: auto;
    color: #8b949e;
    font-size: 12px;
}

.btn-primary {
    background: linear-gradient(135deg, #ff1493, #ff69b4, #da70d6);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.4);
    background: linear-gradient(135deg, #ff1493, #ff69b4, #da70d6, #ff1493);
    background-size: 200% 200%;
    animation: gradientShift 2s ease infinite;
}

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

.btn-secondary {
    background: rgba(33, 20, 33, 0.8);
    color: #f0e6f0;
    border: 1px solid rgba(255, 20, 147, 0.3);
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: rgba(255, 20, 147, 0.1);
    border-color: #ff69b4;
    color: #ff69b4;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.2);
    transform: translateY(-1px);
}

.btn-warning {
    background: #f59e0b;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-warning:hover {
    background: #d97706;
}

.btn-danger {
    background: #ef4444;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-danger:hover {
    background: #dc2626;
}

input[type="text"], input[type="email"], input[type="password"], input[type="date"], textarea {
    background: rgba(33, 20, 33, 0.8);
    border: 1px solid rgba(255, 20, 147, 0.3);
    border-radius: 12px;
    padding: 12px 15px;
    color: #f0e6f0;
    font-size: 14px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, input[type="date"]:focus, textarea:focus {
    outline: none;
    border-color: #ff1493;
    box-shadow: 0 0 0 3px rgba(255, 20, 147, 0.2), 0 0 20px rgba(255, 20, 147, 0.1);
    background: rgba(33, 20, 33, 0.95);
    transform: translateY(-1px);
}

input[type="text"]::placeholder, input[type="email"]::placeholder, input[type="password"]::placeholder, textarea::placeholder {
    color: #8b949e;
}

input[type="date"] {
    color-scheme: dark;
}

/* Toggle Switch */
.toggle-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: #e4e6ea;
}

.toggle-checkbox {
    display: none;
}

.toggle-slider {
    position: relative;
    width: 50px;
    height: 24px;
    background: #30363d;
    border-radius: 24px;
    transition: background 0.3s ease;
}

.toggle-slider::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: #8b949e;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.toggle-checkbox:checked + .toggle-slider {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    box-shadow: 0 0 15px rgba(255, 20, 147, 0.4);
}

.toggle-checkbox:checked + .toggle-slider::before {
    transform: translateX(26px);
    background: white;
}

/* Mobile Search Bar */
.mobile-search-bar {
    display: none;
    background: rgba(26, 10, 26, 0.95);
    border-bottom: 1px solid rgba(255, 20, 147, 0.2);
    padding: 15px 20px;
    backdrop-filter: blur(20px);
}

.mobile-search-container {
    display: flex;
    gap: 10px;
    align-items: center;
}

.search-input-wrapper {
    flex: 1;
    position: relative;
}

.search-input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #8b949e;
}

.search-input-wrapper input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    background: rgba(33, 20, 33, 0.8);
    border: 1px solid rgba(255, 20, 147, 0.3);
    border-radius: 12px;
    color: #f0e6f0;
    font-size: 16px;
    backdrop-filter: blur(5px);
}

.filter-btn {
    background: #21262d;
    border: 1px solid #30363d;
    color: #e4e6ea;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.filter-btn:hover {
    background: #30363d;
    border-color: #00d4ff;
}

/* Auth Modal */
.auth-modal {
    max-width: 400px;
}

.auth-form {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.auth-switch {
    text-align: center;
    color: #8b949e;
    font-size: 14px;
    margin-top: 10px;
}

.auth-switch a {
    color: #00d4ff;
    text-decoration: none;
}

.auth-switch a:hover {
    text-decoration: underline;
}

/* Mobile Search & Filter */
.mobile-modal .modal-content {
    margin: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    max-height: 100vh;
}

.mobile-search-content {
    display: flex;
    flex-direction: column;
}

.mobile-search-header {
    display: flex;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #2d3748;
    gap: 15px;
}

.mobile-search-header input {
    flex: 1;
    background: #21262d;
    border: 1px solid #30363d;
    border-radius: 8px;
    padding: 12px 15px;
    color: #e4e6ea;
    font-size: 16px;
}

.mobile-filter-content {
    display: flex;
    flex-direction: column;
}

.mobile-filter-body {
    padding: 20px;
    flex: 1;
}

.filter-section {
    margin-bottom: 30px;
}

.filter-section h4 {
    color: #00d4ff;
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
}

.mobile-sort-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.mobile-sort-btn {
    background: #21262d;
    border: 1px solid #30363d;
    color: #8b949e;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
}

.mobile-sort-btn.active {
    background: rgba(0, 212, 255, 0.1);
    border-color: #00d4ff;
    color: #00d4ff;
}

.mobile-category-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-category-btn {
    background: #21262d;
    border: 1px solid #30363d;
    color: #8b949e;
    padding: 15px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.mobile-category-btn.active {
    background: rgba(0, 212, 255, 0.1);
    border-color: #00d4ff;
    color: #00d4ff;
}

/* Profile Page Styles */
.profile-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 20px;
    padding: 20px;
    min-height: calc(100vh - 60px);
}

.profile-sidebar {
    background: #1a1f3a;
    border-radius: 12px;
    padding: 20px;
    height: fit-content;
    position: sticky;
    top: 80px;
    border: 1px solid #2d3748;
}

.profile-nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    color: #8b949e;
}

.nav-item:hover {
    background: #21262d;
    color: #e4e6ea;
}

.nav-item.active {
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
    font-weight: 500;
}

.nav-item.danger {
    color: #ef4444;
}

.nav-item.danger:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.profile-content {
    background: #1a1f3a;
    border-radius: 12px;
    border: 1px solid #2d3748;
    padding: 30px;
}

.profile-section {
    display: none;
}

.profile-section.active {
    display: block;
}

.profile-section h2 {
    color: #e4e6ea;
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 600;
}

.settings-form {
    max-width: 600px;
}

.profile-picture-section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: #21262d;
    border-radius: 12px;
    border: 1px solid #30363d;
}

.current-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    font-size: 32px;
    color: white;
    flex-shrink: 0;
}

.current-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.avatar-controls {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.form-group label {
    display: block;
    color: #e4e6ea;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input, .form-group textarea {
    width: 100%;
}

.posts-stats, .library-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    padding: 20px;
    background: #21262d;
    border-radius: 12px;
    border: 1px solid #30363d;
}

.stat {
    color: #8b949e;
    font-size: 14px;
}

.stat strong {
    color: #00d4ff;
    font-size: 18px;
}

.user-posts-list, .library-list, .saved-posts-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.user-post-item, .library-item, .saved-post-item {
    background: #21262d;
    border: 1px solid #30363d;
    border-radius: 12px;
    padding: 20px;
    transition: background 0.2s ease;
}

.user-post-item:hover, .library-item:hover, .saved-post-item:hover {
    background: #2a2f45;
}

.user-post-item h3, .saved-post-item h3 {
    color: #e4e6ea;
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 600;
}

.user-post-item p, .saved-post-item p {
    color: #8b949e;
    margin-bottom: 12px;
    line-height: 1.5;
}

.post-meta {
    display: flex;
    gap: 20px;
    font-size: 12px;
    color: #8b949e;
}

.post-files {
    margin-top: 10px;
    font-size: 12px;
    color: #00d4ff;
}

.library-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.library-item .file-icon {
    font-size: 24px;
    color: #00d4ff;
}

.library-item .file-info h4 {
    color: #e4e6ea;
    font-size: 14px;
    margin-bottom: 4px;
}

.library-item .file-info p {
    color: #8b949e;
    font-size: 12px;
    margin-bottom: 4px;
}

.library-item .file-size {
    color: #8b949e;
    font-size: 11px;
}

.danger-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.danger-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #21262d;
    border: 1px solid #30363d;
    border-radius: 12px;
}

.danger-info h3 {
    color: #e4e6ea;
    font-size: 16px;
    margin-bottom: 5px;
}

.danger-info p {
    color: #8b949e;
    font-size: 14px;
}

/* User Profile Modal */
.user-profile-modal {
    max-width: 500px;
}

.user-profile-detail {
    padding: 30px;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #2d3748;
}

.profile-avatar-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    flex-shrink: 0;
    overflow: hidden;
}

.profile-avatar-large img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-info h2 {
    color: #e4e6ea;
    font-size: 24px;
    margin-bottom: 8px;
}

.profile-bio {
    color: #8b949e;
    margin-bottom: 8px;
    line-height: 1.5;
}

.profile-email {
    color: #00d4ff;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.profile-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
    padding: 20px;
    background: #21262d;
    border-radius: 12px;
    border: 1px solid #30363d;
}

.user-recent-posts h3 {
    color: #e4e6ea;
    margin-bottom: 15px;
    font-size: 18px;
}

.mini-post {
    background: #21262d;
    border: 1px solid #30363d;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.mini-post:hover {
    background: #2a2f45;
}

.mini-post h4 {
    color: #e4e6ea;
    font-size: 14px;
    margin-bottom: 5px;
}

.mini-post p {
    color: #8b949e;
    font-size: 12px;
    margin-bottom: 5px;
}

.mini-post-time {
    color: #8b949e;
    font-size: 11px;
}

.no-posts {
    color: #8b949e;
    text-align: center;
    padding: 20px;
    font-style: italic;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #8b949e;
}

.empty-state i {
    font-size: 48px;
    margin-bottom: 20px;
    color: #30363d;
}

.empty-state h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #e4e6ea;
}

.empty-state p {
    font-size: 14px;
    line-height: 1.5;
}

.empty-subtitle {
    font-size: 12px;
    color: #8b949e;
    margin-top: 5px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.modal-content {
    background: rgba(26, 10, 26, 0.95);
    border: 1px solid rgba(255, 20, 147, 0.3);
    margin: 3% auto;
    border-radius: 20px;
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(255, 20, 147, 0.2);
}

.create-modal {
    max-width: 600px;
}

.post-modal {
    max-width: 800px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid #2d3748;
}

.modal-header h2 {
    color: #e4e6ea;
    font-size: 20px;
    font-weight: 600;
}

.create-form {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.file-upload-area {
    border: 2px dashed rgba(255, 20, 147, 0.3);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    background: rgba(255, 20, 147, 0.02);
}

.file-upload-area:hover {
    border-color: #ff69b4;
    background: rgba(255, 20, 147, 0.08);
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.1);
    transform: translateY(-2px);
}

.file-upload-area input {
    display: none;
}

.upload-placeholder i {
    font-size: 32px;
    color: #ff69b4;
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(255, 105, 180, 0.3);
}

.upload-placeholder p {
    color: #e4e6ea;
    font-size: 16px;
    margin-bottom: 5px;
}

.upload-placeholder small {
    color: #8b949e;
    font-size: 12px;
}

.form-footer {
    display: flex;
    gap: 15px;
    align-items: center;
}

.form-footer input {
    flex: 1;
}

.close {
    color: #8b949e;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.close:hover {
    color: #e4e6ea;
    background: #21262d;
}

.post-detail {
    padding: 30px;
}

.post-detail-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #2d3748;
}

.post-detail-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    overflow: hidden;
    flex-shrink: 0;
}

.post-detail-avatar img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 50%;
}

.post-detail-title {
    font-size: 24px;
    font-weight: 600;
    color: #e4e6ea;
    margin-bottom: 10px;
}

.post-detail-description {
    color: #8b949e;
    line-height: 1.6;
    margin-bottom: 20px;
}

.rating-section {
    background: rgba(33, 20, 33, 0.8);
    border: 1px solid rgba(255, 20, 147, 0.2);
    border-radius: 16px;
    padding: 20px;
    margin: 20px 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.1);
}

.rating-section h3 {
    color: #e4e6ea;
    margin-bottom: 15px;
    font-size: 16px;
}

.rating-input {
    display: flex;
    gap: 5px;
    margin: 15px 0;
}

.star-btn {
    background: none;
    border: none;
    font-size: 20px;
    color: #30363d;
    cursor: pointer;
    padding: 5px;
    transition: color 0.2s ease;
}

.star-btn.active, .star-btn:hover {
    color: #ffc107;
}

.comments-section {
    margin-top: 30px;
}

.comments-section h3 {
    color: #e4e6ea;
    margin-bottom: 20px;
    font-size: 18px;
}

.comment-form {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.comment-input {
    flex: 1;
}

.comment {
    background: rgba(33, 20, 33, 0.8);
    border: 1px solid rgba(255, 20, 147, 0.2);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.comment:hover {
    border-color: rgba(255, 20, 147, 0.4);
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.1);
}

.comment-author {
    font-weight: 600;
    color: #ff69b4;
    margin-bottom: 8px;
    font-size: 14px;
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.3);
}

.comment-text {
    color: #e4e6ea;
    line-height: 1.5;
    margin-bottom: 8px;
}

.comment-time {
    font-size: 12px;
    color: #8b949e;
}

.file-attached {
    background: rgba(33, 20, 33, 0.8);
    border: 1px solid rgba(255, 20, 147, 0.2);
    border-radius: 12px;
    padding: 15px;
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.file-attached:hover {
    border-color: rgba(255, 20, 147, 0.4);
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.1);
}

.file-attached .file-icon {
    font-size: 28px;
    color: #ff69b4;
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.3);
}

.file-attached .file-info {
    flex: 1;
}

.file-attached .file-name {
    font-weight: 500;
    color: #e4e6ea;
    margin-bottom: 4px;
}

.file-attached .file-size {
    color: #8b949e;
    font-size: 12px;
}

.rating-display {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #8b949e;
    font-size: 14px;
}

.rating-stars {
    color: #ffc107;
}

@media (max-width: 1024px) {
    .main-layout {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .profile-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .profile-sidebar {
        position: static;
    }
    
    .profile-nav {
        flex-direction: row;
        overflow-x: auto;
        gap: 10px;
    }
    
    .nav-item {
        white-space: nowrap;
        min-width: fit-content;
    }
    
    .sidebar, .right-sidebar {
        display: none;
    }
    
    .nav-search {
        margin: 0 20px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-search {
        display: none;
    }
    
    .mobile-search-bar {
        display: block;
    }
    
    .mobile-icon-btn .btn-text {
        display: none;
    }
    
    .mobile-icon-btn {
        min-width: 40px;
        padding: 10px;
    }
    
    .main-layout, .profile-container {
        padding: 15px;
    }
    
    .modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .create-form, .profile-content {
        padding: 20px;
    }
    
    .profile-picture-section {
        flex-direction: column;
        text-align: center;
    }
    
    .posts-stats, .library-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .danger-item {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .profile-container {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
    }
    
    .profile-sidebar {
        position: static;
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-top: none;
        margin: 0;
        padding: 10px 15px;
        background: #1a1f3a;
    }
    
    .profile-content {
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-top: none;
        margin: 0;
        padding: 15px;
    }
    
    .profile-nav {
        flex-direction: row;
        overflow-x: auto;
        gap: 8px;
        padding: 0;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-item {
        white-space: nowrap;
        min-width: fit-content;
        font-size: 11px;
        padding: 8px 12px;
        border-radius: 20px;
        flex-shrink: 0;
    }
    
    .nav-item i {
        display: none;
    }
    
    .profile-section h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .settings-form {
        max-width: none;
    }
    
    .profile-picture-section {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 15px;
    }
    
    .current-avatar {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin: 0 auto;
    }
    
    .avatar-controls {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    
    .avatar-controls button {
        font-size: 12px;
        padding: 8px 16px;
        width: 100%;
        max-width: 200px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group label {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .posts-stats, .library-stats {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
        text-align: center;
    }
    
    .user-post-item, .library-item, .saved-post-item {
        padding: 15px;
        margin-bottom: 10px;
    }
    
    .user-post-item h3, .saved-post-item h3 {
        font-size: 14px;
    }
    
    .user-post-item p, .saved-post-item p {
        font-size: 12px;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 5px;
        font-size: 11px;
    }
    
    .library-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .library-item .file-info h4 {
        font-size: 13px;
    }
    
    .library-item .file-info p {
        font-size: 11px;
    }
    
    .danger-actions {
        gap: 15px;
    }
    
    .danger-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 15px;
    }
    
    .danger-info h3 {
        font-size: 14px;
    }
    
    .danger-info p {
        font-size: 12px;
    }
    
    .toggle-label {
        justify-content: center;
        font-size: 12px;
    }
    
    .empty-state {
        padding: 40px 15px;
    }
    
    .empty-state i {
        font-size: 36px;
    }
    
    .empty-state h3 {
        font-size: 16px;
    }
    
    .empty-state p {
        font-size: 12px;
    }
    
    .btn-small {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .save-btn.saved {
        color: #00d4ff;
    }
    
    .nav-text {
        display: block;
        font-size: 9px;
        line-height: 1;
    }
    
    @media (min-width: 769px) {
        .nav-text {
            display: none;
        }
    }
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a1a 25%, #2a0a2a 50%, #1a0a1a 75%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-content {
    text-align: center;
    color: #e4e6ea;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 20, 147, 0.2);
    border-top: 3px solid #ff1493;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.3);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-content h2 {
    font-size: 24px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 20, 147, 0.3);
}

.loading-content p {
    color: #8b949e;
    font-size: 14px;
}

/* Custom Alerts */
.alert-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.custom-alert {
    min-width: 300px;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.alert-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    color: white;
}

.alert-success {
    background: linear-gradient(135deg, #10b981, #059669);
    border-left: 4px solid #047857;
}

.alert-error {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-left: 4px solid #b91c1c;
}

.alert-info {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-left: 4px solid #1d4ed8;
}

.alert-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

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

/* Auth Modal Improvements */
.auth-buttons {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.auth-buttons .btn-primary {
    width: 100%;
    justify-content: center;
}

/* Pin Icon */
.pin-icon {
    color: #ffc107;
    margin-right: 8px;
    font-size: 14px;
    transform: rotate(45deg);
}

/* Mention Styles */
.mention {
    color: #ff69b4;
    cursor: pointer;
    text-decoration: none;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.3);
}

.mention:hover {
    text-decoration: underline;
}

/* Age Verification Modal */
.age-verification-modal {
    display: none;
    z-index: 10001;
}

.age-verification-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-verification-content {
    max-width: 500px;
    width: 90%;
    margin: 0;
    text-align: center;
    background: rgba(26, 10, 26, 0.95);
    border: 1px solid rgba(255, 20, 147, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(255, 20, 147, 0.3);
}

.age-verification-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid #2d3748;
}

.age-verification-header h2 {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 0 20px rgba(255, 20, 147, 0.3);
}

.age-verification-body {
    padding: 30px;
}

.age-verification-body p {
    color: #c9a9c9;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.age-verification-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.age-verification-buttons button {
    min-width: 140px;
    padding: 12px 24px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .alert-container {
        top: 10px;
        right: 10px;
        left: 10px;
    }
    
    .custom-alert {
        min-width: auto;
        max-width: none;
    }
    
    .age-verification-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .age-verification-buttons button {
        width: 100%;
        max-width: 200px;
    }
}

/* Enhanced Romantic/Adult Content Styling */

/* Floating particles animation */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(120deg); }
    66% { transform: translateY(5px) rotate(240deg); }
}

/* Subtle glow effects */
.post-card, .sidebar, .widget, .content {
    position: relative;
}

.post-card::after, .sidebar::after, .widget::after, .content::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(45deg, transparent, rgba(255, 20, 147, 0.1), transparent);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.post-card:hover::after {
    opacity: 1;
}

/* Enhanced button animations */
.btn-primary {
    position: relative;
    overflow: hidden;
}

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

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

/* Sensual text shadows and glows */
.post-title, .nav-brand, .widget h3, .sidebar-section h3 {
    position: relative;
}

/* Enhanced scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(26, 10, 26, 0.5);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(255, 20, 147, 0.3);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ff69b4, #da70d6);
    box-shadow: 0 0 15px rgba(255, 20, 147, 0.5);
}

/* Enhanced profile elements */
.profile-sidebar, .profile-content {
    background: rgba(26, 10, 26, 0.8);
    border: 1px solid rgba(255, 20, 147, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(255, 20, 147, 0.1);
}

.nav-item.active {
    background: rgba(255, 20, 147, 0.15);
    color: #ff69b4;
    font-weight: 500;
    border-left: 3px solid #ff1493;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.2);
}

.nav-item:hover {
    background: rgba(255, 20, 147, 0.1);
    color: #f0e6f0;
    transform: translateX(5px);
}

/* Enhanced form styling */
.profile-picture-section, .posts-stats, .library-stats, .danger-item {
    background: rgba(33, 20, 33, 0.8);
    border: 1px solid rgba(255, 20, 147, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.profile-picture-section:hover, .posts-stats:hover, .library-stats:hover {
    border-color: rgba(255, 20, 147, 0.4);
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.1);
}

.current-avatar {
    background: linear-gradient(135deg, #ff1493, #ff69b4, #da70d6);
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3);
    transition: all 0.3s ease;
}

.current-avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 20, 147, 0.4);
}

/* Enhanced user posts and library items */
.user-post-item, .library-item, .saved-post-item {
    background: rgba(33, 20, 33, 0.8);
    border: 1px solid rgba(255, 20, 147, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.user-post-item:hover, .library-item:hover, .saved-post-item:hover {
    background: rgba(255, 20, 147, 0.05);
    border-color: rgba(255, 20, 147, 0.4);
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.15);
    transform: translateY(-2px);
}

/* Enhanced mobile responsiveness with romantic theme */
@media (max-width: 768px) {
    body::before {
        background: radial-gradient(circle at 50% 50%, rgba(255, 20, 147, 0.08) 0%, transparent 70%);
    }
    
    .mobile-search-bar {
        background: rgba(26, 10, 26, 0.98);
        backdrop-filter: blur(20px);
        box-shadow: 0 4px 20px rgba(255, 20, 147, 0.1);
    }
}

/* Romantic color adjustments for better readability */
.post-description, .loading-content p, .stat-label, .post-time, .comment-time {
    color: #c9a9c9;
}

.post-meta, .file-size, .contribution, .empty-subtitle {
    color: #b399b3;
}

/* Enhanced empty states */
.empty-state i {
    color: rgba(255, 20, 147, 0.3);
    text-shadow: 0 0 20px rgba(255, 20, 147, 0.2);
}

.empty-state h3 {
    color: #ff69b4;
    text-shadow: 0 0 15px rgba(255, 105, 180, 0.3);
}

/* Enhanced alert styling */
.alert-success {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    border-left: 4px solid #ff1493;
}

.alert-error {
    background: linear-gradient(135deg, #dc143c, #b22222);
    border-left: 4px solid #8b0000;
}

.alert-info {
    background: linear-gradient(135deg, #ff69b4, #da70d6);
    border-left: 4px solid #ff1493;
}

/* Enhanced modal backdrop */
.modal {
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
}

/* Romantic hover effects for interactive elements */
.category-item, .tag, .sort-btn, .action-btn, .nav-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced focus states */
button:focus, input:focus, textarea:focus {
    outline: 2px solid rgba(255, 20, 147, 0.5);
    outline-offset: 2px;
}

/* Subtle animations for better UX */
.post-card, .widget, .sidebar, .content {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Enhanced typography */
h1, h2, h3, h4, h5, h6 {
    color: #f0e6f0;
    font-weight: 600;
}

/* Romantic selection styling */
::selection {
    background: rgba(255, 20, 147, 0.3);
    color: #fff;
}

::-moz-selection {
    background: rgba(255, 20, 147, 0.3);
    color: #fff;
}