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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #1e1e3f 0%, #2d1b69 50%, #1a1a2e 100%);
    color: #ffffff;
    min-height: 100vh;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header Styles */
.header {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left .logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.logo i {
    font-size: 24px;
    color: #e91e63;
}

.header-center {
    flex: 1;
    max-width: 500px;
    margin: 0 40px;
}

.search-bar {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    overflow: hidden;
}

.search-bar input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 20px;
    color: #fff;
    font-size: 14px;
}

.search-bar input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-bar input:focus {
    outline: none;
}

.search-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    padding: 12px 16px;
    cursor: pointer;
    transition: color 0.2s;
}

.search-btn:hover {
    color: #fff;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.notification-btn,
.settings-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    padding: 8px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s;
}

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

/* Main Content */
.main-content {
    display: flex;
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    gap: 24px;
    padding: 24px;
}

/* Sidebar */
.sidebar {
    width: 60px;
    background: rgba(26, 26, 46, 0.8);
    border-radius: 16px;
    padding: 16px 0;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.nav-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.2s;
    border-radius: 12px;
    margin: 0 8px;
}

.nav-item:hover,
.nav-item.active {
    background: rgba(233, 30, 99, 0.2);
    color: #e91e63;
}

.nav-item i {
    font-size: 20px;
}

/* Feed Section */
.feed-section {
    flex: 1;
    max-width: 600px;
}

/* Create Post Section */
.create-post {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.post-input-area {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}

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

.post-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 15px 20px;
    color: white;
    font-size: 16px;
    resize: none;
    min-height: 50px;
    max-height: 150px;
    overflow-y: auto;
    transition: all 0.3s ease;
}

.post-input:focus {
    outline: none;
    border-color: #e91e63;
    box-shadow: 0 0 0 2px rgba(233, 30, 99, 0.2);
}

.post-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* Media Preview Area */
.media-preview {
    margin: 15px 0;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    border: 2px dashed rgba(255, 255, 255, 0.3);
}

.media-container {
    position: relative;
    width: 100%;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-container img {
    max-width: 100%;
    max-height: 400px;
    border-radius: 10px;
    object-fit: cover;
}

.media-container video {
    max-width: 100%;
    max-height: 400px;
    border-radius: 10px;
    background: #000;
}

.media-container audio {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
}

.remove-media-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(233, 30, 99, 0.9);
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
    z-index: 10;
}

.remove-media-btn:hover {
    background: #e91e63;
    transform: scale(1.1);
}

.post-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.action-buttons {
    display: flex;
    gap: 15px;
}

.action-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 10px 15px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #e91e63;
    color: #e91e63;
    transform: translateY(-2px);
}

.action-btn i {
    font-size: 16px;
}

.action-btn span {
    font-weight: 500;
}

.post-btn {
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.post-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
}

.post-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* File Upload Styles */
.file-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* Media Upload Animation */
.media-preview.uploading .media-container {
    background: linear-gradient(45deg, transparent 30%, rgba(233, 30, 99, 0.1) 50%, transparent 70%);
    background-size: 200% 200%;
    animation: uploadShimmer 1.5s infinite;
}

@keyframes uploadShimmer {
    0% { background-position: -200% -200%; }
    100% { background-position: 200% 200%; }
}

/* Drag and Drop Styles */
.media-preview.drag-over {
    border-color: #e91e63;
    background: rgba(233, 30, 99, 0.1);
}

.media-preview.drag-over .media-container::before {
    content: "Drop your file here";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #e91e63;
    font-size: 18px;
    font-weight: 600;
    z-index: 5;
}

/* Post Content Media Styles */
.post-media {
    margin: 15px 0;
    border-radius: 15px;
    overflow: hidden;
}

.post-media img {
    width: 100%;
    height: auto;
    display: block;
}

.post-media video {
    width: 100%;
    height: auto;
    background: #000;
}

.post-media audio {
    width: 100%;
    border-radius: 10px;
}

/* Posts Feed */
.posts-feed {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.post {
    background: rgba(26, 26, 46, 0.8);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

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

.post-time {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.more-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

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

.post-content {
    margin-bottom: 16px;
}

.post-content p {
    line-height: 1.5;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.post-image {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
}

.synthwave-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(45deg, #ff006e, #8338ec, #3a86ff);
    position: relative;
    overflow: hidden;
}

.synthwave-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 0, 110, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(131, 56, 236, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, transparent 40%, rgba(58, 134, 255, 0.2) 60%);
}

.music-player {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.music-info i {
    color: #e91e63;
    font-size: 20px;
}

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

.track-details span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.play-btn {
    background: #e91e63;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: background-color 0.2s;
}

.play-btn:hover {
    background: #c2185b;
}

.post-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.engagement-stats {
    display: flex;
    gap: 24px;
}

.stat-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: color 0.2s;
    font-size: 14px;
}

.stat-btn:hover {
    color: #e91e63;
}

/* Liked and Favorited States */
.stat-btn.liked {
    color: #e91e63 !important;
}

.stat-btn.favorited {
    color: #ffd700 !important;
}

.stat-btn.liked:hover {
    color: #d81b60 !important;
}

.stat-btn.favorited:hover {
    color: #ffcc02 !important;
}

/* Favorite button specific styling */
.favorite-btn {
    transition: all 0.3s ease;
}

.favorite-btn.favorited i {
    transform: scale(1.1);
}

.more-options {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

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

/* Right Sidebar */
.right-sidebar {
    width: 300px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.profile-card,
.friends-widget,
.music-widget,
.events-widget {
    background: rgba(26, 26, 46, 0.8);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.profile-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 2px;
}

.profile-info span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

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

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #e91e63;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.edit-profile-btn {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 25px;
    padding: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}

.edit-profile-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Widget Headers */
.widget-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.widget-header i {
    color: #e91e63;
    font-size: 16px;
}

.widget-header h4 {
    font-size: 16px;
    font-weight: 600;
}

/* Friends Widget */
.friends-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

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

.friend-item img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 4px;
}

.friend-item span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

/* Music Widget */
.now-playing {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.album-art {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
}

.album-gradient {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #e91e63, #ff6b9d);
}

.track-info h5 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.track-info span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.music-controls {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.progress-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: #e91e63;
    border-radius: 2px;
    width: 45%;
}

.time-info {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.control-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.control-buttons button {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.2s;
}

.control-buttons button:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.play-pause {
    color: #e91e63 !important;
}

/* Events Widget */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.event-item {
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.event-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.event-info h5 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.event-info span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.event-status {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.status {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.status.interested {
    background: rgba(233, 30, 99, 0.2);
    color: #e91e63;
    border: 1px solid #e91e63;
}

.status.going {
    background: rgba(233, 30, 99, 0.2);
    color: #e91e63;
    border: 1px solid #e91e63;
}

.status.not-going {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Footer */
.footer {
    background: rgba(26, 26, 46, 0.8);
    padding: 20px 24px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

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

.footer-copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .right-sidebar {
        display: none;
    }
    
    .main-content {
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .sidebar {
        display: none;
    }
    
    .main-content {
        padding: 16px;
    }
    
    .header-center {
        margin: 0 20px;
    }
    
    .feed-section {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 8px 16px;
    }
    
    .header-center {
        display: none;
    }
    
    .main-content {
        padding: 12px;
    }
    
    .create-post,
    .post {
        padding: 16px;
    }
}

/* Authentication Styles */
.auth-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.auth-buttons {
    display: flex;
    gap: 10px;
}

.login-btn, .signup-btn {
    padding: 8px 16px;
    border-radius: 20px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.login-btn {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.login-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.signup-btn {
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: white;
}

.signup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

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

.user-name {
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.logout-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s;
}

.logout-btn:hover {
    color: #e91e63;
    background: rgba(233, 30, 99, 0.1);
}

/* Modal Styles */
.auth-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.modal-content {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(15, 15, 35, 0.95));
    border-radius: 20px;
    padding: 0;
    max-width: 400px;
    width: 90%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

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

.modal-title {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.close-modal {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.2s;
}

.close-modal:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.modal-body {
    padding: 0 24px 24px 24px;
}

.auth-form h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

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

.form-group label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #e91e63;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.auth-submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.auth-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
}

.auth-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.auth-switch {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
}

.auth-switch a {
    color: #e91e63;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.auth-switch a:hover {
    color: #ff4081;
}

/* Delete Modal Styles */
.delete-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.delete-modal .modal-content {
    max-width: 350px;
}

.delete-modal .modal-body p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    line-height: 1.5;
}

.modal-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.btn-cancel, .btn-delete {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
}

.btn-cancel {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-cancel:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.btn-delete {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-delete:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

.btn-delete:active {
    transform: translateY(0);
}

/* Delete Button for Posts */
.delete-post-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.delete-post-btn:hover {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
}

/* Post Actions Container */
.post-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Admin Delete Indicator */
.admin-delete-indicator {
    font-size: 10px;
    margin-left: 2px;
    opacity: 0.8;
}

.delete-post-btn:hover .admin-delete-indicator {
    opacity: 1;
}

/* Comment System Styles */
.comments-section {
    margin-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 16px;
    display: none;
}

.comments-section.show {
    display: block;
}

.comments-list {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 16px;
}

.comment-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comment-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

.comment-author {
    font-weight: 600;
    color: #fff;
    font-size: 14px;
}

.comment-time {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.comment-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.4;
    word-wrap: break-word;
}

.comment-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.delete-comment-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.delete-comment-btn:hover {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
}

.comment-input-area {
    display: flex;
    gap: 12px;
    align-items: flex-end;
}

.comment-input-container {
    flex: 1;
    position: relative;
}

.comment-input {
    width: 100%;
    min-height: 40px;
    max-height: 120px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: white;
    font-size: 14px;
    font-family: inherit;
    resize: none;
    overflow-y: auto;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.comment-input:focus {
    outline: none;
    border-color: #e91e63;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.comment-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.comment-submit-btn {
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.comment-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
}

.comment-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.no-comments {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    padding: 20px;
    font-size: 14px;
}

/* Comment scrollbar styling */
.comments-list::-webkit-scrollbar {
    width: 6px;
}

.comments-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.comments-list::-webkit-scrollbar-thumb {
    background: rgba(233, 30, 99, 0.5);
    border-radius: 3px;
}

.comments-list::-webkit-scrollbar-thumb:hover {
    background: rgba(233, 30, 99, 0.7);
}