<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --primary: #2c3e50;
    --secondary: #34495e;
    --accent: #3498db;
    --light: #ecf0f1;
    --dark: #1a252f;
    --success: #2ecc71;
    --warning: #f39c12;
    --danger: #e74c3c;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    
    /* Transition speeds */
    --transition-speed: 0.3s;
}

/* Dark mode variables */
[data-theme="dark"] {
    --primary: #375a7f;
    --secondary: #444;
    --accent: #0ea5e9;
    --light: #222;
    --dark: #111;
    --success: #00bc8c;
    --warning: #f39c12;
    --danger: #e74c3c;
    --gray-100: #222;
    --gray-200: #333;
    --gray-300: #444;
    --gray-400: #555;
    --gray-500: #666;
    --gray-600: #888;
    --gray-700: #aaa;
    --gray-800: #ccc;
    --gray-900: #eee;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--gray-800);
    background-color: var(--gray-100);
    transition: background-color var(--transition-speed) ease, color var(--transition-speed) ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

/* Navbar */
.navbar {
    background-color: var(--light);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary);
}

/* Buttons */
.btn-primary {
    background-color: var(--accent);
    border-color: var(--accent);
}

.btn-primary:hover {
    background-color: #2980b9;
    border-color: #2980b9;
}

.btn-outline-primary {
    color: var(--accent);
    border-color: var(--accent);
}

.btn-outline-primary:hover {
    background-color: var(--accent);
    border-color: var(--accent);
}

.btn-secondary {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background-color: #2c3e50;
    border-color: #2c3e50;
}

.btn {
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Cards */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--accent), var(--primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.card:hover::before {
    transform: scaleX(1);
}

.card-header {
    background-color: var(--primary);
    color: white;
    border-radius: 12px 12px 0 0 !important;
    padding: 1.25rem 1.5rem;
    border-bottom: none;
}

.card-title {
    font-weight: 600;
    margin-bottom: 0;
}

.card-body {
    padding: 1.5rem;
}

/* Forms */
.form-label {
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.form-control {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    font-size: 1rem;
}

.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
}

.form-select {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    font-size: 1rem;
}

.form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
}

.form-text {
    color: var(--gray-600);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

/* Updates/Posts */
.update-post {
    margin-bottom: 3rem;
}

.update-post-title {
    margin-bottom: 0.5rem;
    color: var(--primary);
    font-weight: 700;
}

.update-post-meta {
    margin-bottom: 1.5rem;
    color: var(--gray-600);
    font-size: 0.9rem;
}

.update-post-content {
    color: var(--gray-700);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Badges */
.badge {
    padding: 0.5em 0.8em;
    font-weight: 500;
}

.badge-category {
    background-color: var(--secondary);
}

/* Images */
.img-fluid {
    border-radius: 12px;
}

/* Skeleton loading effect */
.skeleton-loader {
    position: relative;
    overflow: hidden;
    background-color: var(--gray-200);
    border-radius: 12px;
}

.skeleton-loader::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: translateX(-100%);
    background-image: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0,
        rgba(255, 255, 255, 0.2) 20%,
        rgba(255, 255, 255, 0.5) 60%,
        rgba(255, 255, 255, 0)
    );
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

.skeleton-image {
    width: 100%;
    height: 250px;
    margin-bottom: 15px;
}

.skeleton-line {
    height: 20px;
    margin-bottom: 10px;
    width: 100%;
}

.skeleton-line.short {
    width: 60%;
}

.preview-image {
    max-height: 120px;
    margin: 5px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.preview-image:hover {
    transform: scale(1.05);
}

#image-preview, #additional-images-preview {
    display: flex;
    flex-wrap: wrap;
    margin-top: 15px;
    gap: 10px;
}

/* Photo Album */
.photo-album {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-gap: 15px;
    margin-bottom: 25px;
}

.photo-album img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.photo-album img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.photo-album-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    grid-gap: 10px;
    margin: 15px 0;
}

.photo-album-preview img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.photo-album-preview img:hover {
    transform: scale(1.05);
}

.photo-count {
    position: relative;
}

.photo-count::after {
    content: "+" attr(data-count);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    border-radius: 8px;
}

/* Video */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

/* Comments */
.comment {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.comment:last-child {
    border-bottom: none;
}

.comment-meta {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.comment-content {
    color: var(--gray-700);
    line-height: 1.6;
}

/* Sidebar */
.sidebar-section {
    background-color: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.sidebar-section h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gray-200);
}

.category-link {
    display: block;
    padding: 0.5rem 0;
    color: var(--gray-700);
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid var(--gray-200);
}

.category-link:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.category-link:last-child {
    border-bottom: none;
}

/* Modal */
.modal-content {
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.modal-header {
    background-color: var(--primary);
    color: white;
    border-radius: 15px 15px 0 0;
}

.modal-title {
    font-weight: 600;
}

.btn-close {
    filter: brightness(0) invert(1);
}

/* Carousel */
.carousel-item img {
    height: 70vh;
    object-fit: contain;
    border-radius: 10px;
}

.carousel-control-prev, .carousel-control-next {
    width: 10%;
    opacity: 0.8;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: var(--primary);
    border-radius: 50%;
    padding: 1.5rem;
}

/* Alerts */
.alert-success {
    background-color: var(--success);
    color: white;
    border: none;
    border-radius: 8px;
}

/* Stats Cards */
.stat-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.stat-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.stat-card .stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.stat-card .stat-label {
    font-size: 1rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
}

footer a {
    transition: all 0.2s ease;
}

footer a:hover {
    color: var(--accent) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-item img {
        height: 50vh;
    }
    
    .stat-card {
        margin-bottom: 1.5rem;
    }
}

/* Floating Action Button */
.fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 999;
    transition: all 0.3s ease;
}

.fab:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
    color: white;
}

.fab i {
    font-size: 24px;
}

.fab-menu {
    position: fixed;
    bottom: 100px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 998;
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

.fab-menu.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.fab-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.fab-item .fab-label {
    background-color: var(--gray-800);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    margin-right: 10px;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.fab-item .fab-button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.fab-item .fab-button:hover {
    transform: scale(1.1);
}

.fab-item .fab-button.create {
    background-color: var(--success);
}

.fab-item .fab-button.dashboard {
    background-color: var(--primary);
}

.fab-item .fab-button.profile {
    background-color: var(--warning);
}

.fab-item .fab-button.files {
    background-color: #e67e22;
}

/* Dark Mode Toggle */
.theme-toggle {
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
}

.theme-toggle:hover {
    background-color: var(--gray-200);
}

[data-theme="dark"] .theme-toggle-light {
    display: block;
}

[data-theme="dark"] .theme-toggle-dark {
    display: none;
}

.theme-toggle-light {
    display: none;
}

.theme-toggle-dark {
    display: block;
}

/* Dark Mode Specific Styles */
[data-theme="dark"] .navbar {
    background-color: var(--dark);
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

[data-theme="dark"] .navbar-brand,
[data-theme="dark"] .nav-link {
    color: var(--gray-300);
}

[data-theme="dark"] .card {
    background-color: var(--secondary);
    color: var(--gray-300);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

[data-theme="dark"] .card-header {
    background-color: var(--primary);
}

[data-theme="dark"] .form-control,
[data-theme="dark"] .form-select {
    background-color: var(--gray-200);
    border-color: var(--gray-400);
    color: var(--gray-800);
}

[data-theme="dark"] .form-control:focus,
[data-theme="dark"] .form-select:focus {
    background-color: var(--gray-300);
}

[data-theme="dark"] .input-group-text {
    background-color: var(--primary);
    color: var(--light);
    border-color: var(--gray-400);
}

[data-theme="dark"] footer {
    background-color: var(--dark);
}

/* Additional Dark Mode Styles */
[data-theme="dark"] .update-post-title {
    color: var(--gray-200);
}

[data-theme="dark"] .update-post-meta {
    color: var(--gray-500);
}

[data-theme="dark"] .update-post-content {
    color: var(--gray-400);
}

[data-theme="dark"] .sidebar-section {
    background-color: var(--secondary);
}

[data-theme="dark"] .sidebar-section h4 {
    color: var(--gray-200);
    border-bottom-color: var(--gray-600);
}

[data-theme="dark"] .category-link {
    color: var(--gray-400);
    border-bottom-color: var(--gray-600);
}

[data-theme="dark"] .category-link:hover {
    color: var(--accent);
}

[data-theme="dark"] .modal-content {
    background-color: var(--secondary);
    color: var(--gray-300);
}

[data-theme="dark"] .modal-header {
    border-bottom-color: var(--gray-600);
}

[data-theme="dark"] .modal-footer {
    border-top-color: var(--gray-600);
}

[data-theme="dark"] .skeleton-loader {
    background-color: var(--gray-700);
}

[data-theme="dark"] .skeleton-loader::after {
    background-image: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0,
        rgba(255, 255, 255, 0.1) 20%,
        rgba(255, 255, 255, 0.2) 60%,
        rgba(255, 255, 255, 0)
    );
}

[data-theme="dark"] .comment {
    border-bottom-color: var(--gray-600);
}

[data-theme="dark"] .comment-meta {
    color: var(--gray-500);
}

[data-theme="dark"] .comment-content {
    color: var(--gray-400);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}

.scroll-to-top i {
    font-size: 20px;
}

/* Hide duplicate scroll buttons */
body &gt; .scroll-to-top:nth-of-type(2) {
    display: none !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--light) 0%, var(--gray-100) 100%);
    border-bottom: 1px solid var(--gray-200);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    color: var(--primary);
}

.stat-label {
    margin: 0;
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* Quick Access Bar */
.quick-access-bar {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.quick-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--gray-100);
    border-radius: 8px;
    text-decoration: none;
    color: var(--gray-700);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.quick-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-1px);
}

/* Post Cards */
.posts-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.post-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.post-header {
    padding: 1.5rem 1.5rem 0;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
}

.author-details h6 {
    margin: 0;
    font-weight: 600;
    color: var(--gray-800);
}

.post-date {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.category-badge {
    background: linear-gradient(135deg, var(--accent), var(--primary));
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.post-content {
    padding: 0 1.5rem 1.5rem;
}

.post-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
    line-height: 1.4;
}

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

.post-image img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
}

.post-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
}

.post-video {
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.post-video iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.post-excerpt {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.post-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

.post-stats {
    display: flex;
    gap: 1rem;
}

.post-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-500);
    font-size: 0.9rem;
    padding: 0;
    background: none;
    box-shadow: none;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.empty-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--gray-400);
}

.empty-state h3 {
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: var(--gray-500);
    margin-bottom: 2rem;
}

/* Sidebar */
.sidebar-sticky {
    position: sticky;
    top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.sidebar-header {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 1rem 1.5rem;
}

.sidebar-header h5 {
    margin: 0;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.sidebar-content {
    padding: 1.5rem;
}

/* Category Grid */
.category-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.category-tag {
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-tag:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-1px);
}

/* Donation Cards */
.donation-card {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.donation-card:hover {
    transform: translateY(-2px);
}

.donation-image {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
    aspect-ratio: 16/9;
}

.donation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.donation-content h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.progress-info {
    margin-bottom: 1rem;
}

.progress-bar-custom {
    background: var(--gray-200);
    border-radius: 10px;
    height: 8px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--success), #2ecc71);
    transition: width 0.3s ease;
}

.progress-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--gray-600);
}

/* Action Grid */
.action-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 12px;
    text-decoration: none;
    color: var(--gray-700);
    transition: all 0.3s ease;
}

.action-item:hover {
    transform: translateY(-2px);
    color: var(--gray-700);
}

.action-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.action-item span {
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
}

/* Dark Mode Enhancements */
[data-theme="dark"] .hero-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--gray-800) 100%);
    border-bottom-color: var(--gray-700);
}

[data-theme="dark"] .stat-item,
[data-theme="dark"] .post-card,
[data-theme="dark"] .sidebar-card,
[data-theme="dark"] .quick-access-bar,
[data-theme="dark"] .empty-state {
    background: var(--secondary);
    border-color: var(--gray-600);
}

[data-theme="dark"] .post-title,
[data-theme="dark"] .author-details h6 {
    color: var(--gray-200);
}

[data-theme="dark"] .post-excerpt {
    color: var(--gray-400);
}

[data-theme="dark"] .quick-link,
[data-theme="dark"] .category-tag,
[data-theme="dark"] .action-item {
    background: var(--gray-700);
    color: var(--gray-300);
}

[data-theme="dark"] .donation-card {
    background: var(--gray-700);
}

/* Responsive Design */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-links {
        justify-content: center;
    }
    
    .post-gallery {
        grid-template-columns: 1fr 1fr;
    }
    
    .action-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-access-bar .d-flex {
        flex-direction: column;
        align-items: stretch !important;
        gap: 1rem;
    }
}

/* ===== ENHANCED MODERN DESIGN STYLES ===== */

/* Hero Section Enhanced */
.hero-section-enhanced {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.min-vh-75 {
    min-height: 75vh;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 10%;
    animation-delay: 7s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: 14s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 30%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(-20px) rotate(240deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.text-gradient {
    background: linear-gradient(45deg, #fff, #f8f9fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary-enhanced {
    position: relative;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(255, 107, 107, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary-enhanced:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
    color: white;
}

.btn-glow {
    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;
}

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

.btn-outline-enhanced {
    position: relative;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline-enhanced:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: white;
}

/* Hero Stats Container */
.hero-stats-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stats-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stat-item-enhanced {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
}

.stat-icon-enhanced {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    font-size: 1.5rem;
}

.stat-icon-enhanced.updates {
    background: rgba(52, 152, 219, 0.2);
}

.stat-icon-enhanced.files {
    background: rgba(46, 204, 113, 0.2);
}

.icon-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    animation: pulse-enhanced 2s infinite;
}

@keyframes pulse-enhanced {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.1); opacity: 0; }
}

.stat-content {
    flex: 1;
}

.stat-number-enhanced {
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-label-enhanced {
    font-size: 0.875rem;
    opacity: 0.9;
    margin: 0;
}

.stat-trend {
    font-size: 0.75rem;
    opacity: 0.8;
    margin-top: 0.25rem;
}

/* Enhanced Navigation Section */
.enhanced-nav-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 2rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.enhanced-nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
    color: #2c3e50;
}

.title-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    border-radius: 12px;
    color: white;
    font-size: 1.25rem;
}

.section-subtitle {
    color: #6c757d;
    margin: 0.5rem 0 0 0;
    font-size: 0.875rem;
}

.nav-controls {
    display: flex;
    align-items: center;
}

.quick-links-enhanced {
    display: flex;
    gap: 1rem;
}

.quick-link-enhanced {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: #f8f9fa;
    border-radius: 50px;
    text-decoration: none;
    color: #495057;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e9ecef;
}

.quick-link-enhanced:hover {
    color: white;
    background: linear-gradient(45deg, #667eea, #764ba2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
    border-color: transparent;
}

.link-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Main Content Section */
.main-content-section {
    background: #f8f9fa;
    padding: 3rem 0;
    min-height: 100vh;
}

/* Enhanced Post Cards */
.posts-feed {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.post-card-enhanced {
    position: relative;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.post-card-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.post-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #ff6b6b);
    background-size: 200% 100%;
    animation: glow-animation 3s ease-in-out infinite;
}

@keyframes glow-animation {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.post-header-enhanced {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #f1f3f4;
}

.author-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar-enhanced {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 15px;
    color: white;
    font-size: 1.25rem;
}

.avatar-ring {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid #667eea;
    border-radius: 18px;
    animation: rotate-ring 3s linear infinite;
    opacity: 0.3;
}

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

.online-indicator {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 16px;
    height: 16px;
    background: #10b981;
    border-radius: 50%;
    border: 3px solid white;
}

.author-info-enhanced {
    flex: 1;
}

.author-name-enhanced {
    margin: 0;
    font-weight: 600;
    color: #1f2937;
    font-size: 1rem;
}

.post-meta-enhanced {
    display: flex;
    gap: 1rem;
    margin-top: 0.25rem;
}

.post-time, .post-category-enhanced {
    font-size: 0.75rem;
    color: #6b7280;
    display: flex;
    align-items: center;
}

.post-category-enhanced {
    background: #f3f4f6;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-weight: 500;
}

.post-actions-top {
    display: flex;
    gap: 0.5rem;
}

.action-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border: none;
    border-radius: 10px;
    color: #6b7280;
    transition: all 0.2s ease;
    cursor: pointer;
}

.action-btn:hover {
    background: #667eea;
    color: white;
    transform: scale(1.1);
}

/* Post Content Enhanced */
.post-content-enhanced {
    padding: 0 2rem 2rem;
}

.post-title-enhanced {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.post-media {
    margin-bottom: 1.5rem;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.media-container {
    position: relative;
    overflow: hidden;
}

.media-container img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.media-container:hover .media-overlay {
    opacity: 1;
}

.media-container:hover img {
    transform: scale(1.05);
}

.media-expand-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    color: #1f2937;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.media-expand-btn:hover {
    background: white;
    transform: scale(1.1);
}

/* Enhanced Gallery */
.post-gallery-enhanced {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border-radius: 16px;
    overflow: hidden;
}

.gallery-item-enhanced {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.gallery-item-enhanced img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item-enhanced:hover img {
    transform: scale(1.1);
}

.gallery-more-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.more-count {
    font-size: 1.5rem;
    font-weight: 700;
}

.more-text {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Enhanced Video */
.post-video-enhanced {
    margin-bottom: 1.5rem;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.video-container-enhanced {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
}

.video-container-enhanced iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Post Footer Enhanced */
.post-excerpt-enhanced {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.post-footer-enhanced {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #f1f3f4;
}

.engagement-stats {
    display: flex;
    gap: 1rem;
}

.stat-group {
    display: flex;
    gap: 0.75rem;
}

.engagement-btn {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0.75rem;
    background: #f8f9fa;
    border: none;
    border-radius: 20px;
    color: #6b7280;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.engagement-btn:hover {
    background: #e5e7eb;
    color: #374151;
}

.engagement-btn.like-btn:hover {
    background: #fef2f2;
    color: #dc2626;
}

.engagement-btn.comment-btn:hover {
    background: #f0f9ff;
    color: #2563eb;
}

.read-more-btn {
    position: relative;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    overflow: hidden;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
    color: white;
}

.btn-shine {
    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;
}

.read-more-btn:hover .btn-shine {
    left: 100%;
}

/* Enhanced Empty State */
.empty-state-enhanced {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.empty-illustration {
    position: relative;
    margin-bottom: 2rem;
}

.empty-icon-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    opacity: 0.1;
    animation: pulse-enhanced 2s infinite;
}

.empty-icon-container i {
    font-size: 3rem;
    color: #667eea;
    z-index: 1;
}

.empty-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #667eea;
    border-radius: 50%;
    opacity: 0.6;
    animation: particle-float 3s infinite ease-in-out;
}

.particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 30%;
    right: 20%;
    animation-delay: 1s;
}

.particle:nth-child(3) {
    bottom: 20%;
    left: 30%;
    animation-delay: 2s;
}

@keyframes particle-float {
    0%, 100% { transform: translateY(0px); opacity: 0.6; }
    50% { transform: translateY(-20px); opacity: 1; }
}

.empty-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.empty-content p {
    color: #6b7280;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

/* Enhanced Sidebar */
.sidebar-enhanced {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.widget-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.widget-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.widget-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1.5rem 1rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-bottom: 1px solid #e9ecef;
}

.widget-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 10px;
    color: white;
    font-size: 1.25rem;
}

.widget-header h5 {
    margin: 0;
    font-weight: 700;
    color: #1f2937;
}

.widget-content {
    padding: 1.5rem;
}

.community-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.875rem;
}

.highlight-item i {
    color: #10b981;
}

/* Enhanced Categories */
.categories-enhanced {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.category-chip {
    position: relative;
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    text-decoration: none;
    color: #495057;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out forwards;
    animation-delay: var(--delay);
    opacity: 0;
    transform: translateY(20px);
}

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

.category-chip:hover {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.chip-text {
    position: relative;
    z-index: 2;
}

.chip-glow {
    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;
}

.category-chip:hover .chip-glow {
    left: 100%;
}

/* Enhanced Donations */
.donation-card-enhanced {
    background: #f8f9fa;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.donation-card-enhanced:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.donation-image-enhanced {
    position: relative;
    height: 120px;
    overflow: hidden;
}

.donation-image-enhanced img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.donation-card-enhanced:hover .donation-image-enhanced img {
    transform: scale(1.05);
}

.donation-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: rgba(239, 68, 68, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
}

.donation-info {
    padding: 1rem;
}

.donation-info h6 {
    margin: 0 0 1rem 0;
    font-weight: 600;
    color: #1f2937;
}

.progress-section {
    margin-bottom: 1rem;
}

.progress-bar-enhanced {
    position: relative;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-track {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #e5e7eb;
}

.progress-fill-enhanced {
    height: 100%;
    background: linear-gradient(45deg, #10b981, #059669);
    border-radius: 4px;
    transition: width 0.3s ease;
    position: relative;
    overflow: hidden;
}

.progress-fill-enhanced::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer-enhanced 2s infinite;
}

@keyframes shimmer-enhanced {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-indicator {
    position: absolute;
    top: -4px;
    width: 16px;
    height: 16px;
    background: #10b981;
    border: 3px solid white;
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 2px 10px rgba(16, 185, 129, 0.3);
}

.progress-details {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
}

.progress-percentage {
    font-weight: 600;
    color: #10b981;
}

.progress-amount {
    color: #6b7280;
}

.donation-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem;
    background: linear-gradient(45deg, #10b981, #059669);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.donation-btn:hover {
    background: linear-gradient(45deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
    color: white;
}

.widget-footer {
    padding: 0 1.5rem 1.5rem;
}

.view-all-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem;
    background: #f8f9fa;
    color: #495057;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.view-all-btn:hover {
    background: #667eea;
    color: white;
    border-color: transparent;
}

/* Enhanced Quick Actions */
.actions-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.action-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.action-card:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
    color: inherit;
}

.action-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: white;
    font-size: 1.125rem;
}

.action-icon.primary { background: linear-gradient(45deg, #667eea, #764ba2); }
.action-icon.success { background: linear-gradient(45deg, #10b981, #059669); }
.action-icon.warning { background: linear-gradient(45deg, #f59e0b, #d97706); }
.action-icon.info { background: linear-gradient(45deg, #3b82f6, #2563eb); }

.action-content {
    flex: 1;
}

.action-content h6 {
    margin: 0;
    font-weight: 600;
    color: #1f2937;
}

.action-content p {
    margin: 0;
    font-size: 0.75rem;
    color: #6b7280;
}

.action-arrow {
    color: #9ca3af;
    transition: all 0.3s ease;
}

.action-card:hover .action-arrow {
    color: #667eea;
    transform: translateX(3px);
}

/* Enhanced FAB */
.fab-enhanced {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(255, 107, 107, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.fab-enhanced:hover {
    transform: scale(1.1) rotate(45deg);
    box-shadow: 0 12px 40px rgba(255, 107, 107, 0.5);
}

.fab-icon {
    color: white;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.fab-enhanced:hover .fab-icon {
    transform: rotate(-45deg);
}

.fab-ripple {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: scale(0);
    animation: ripple-enhanced 2s infinite;
}

@keyframes ripple-enhanced {
    to {
        transform: scale(1.5);
        opacity: 0;
    }
}

.fab-menu-enhanced {
    position: fixed;
    bottom: 100px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.fab-menu-enhanced.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fab-item-enhanced {
    display: flex;
    align-items: center;
    gap: 15px;
    transform: translateX(100px);
    transition: transform 0.3s ease;
}

.fab-menu-enhanced.show .fab-item-enhanced {
    transform: translateX(0);
}

.fab-menu-enhanced.show .fab-item-enhanced:nth-child(1) { transition-delay: 0.1s; }
.fab-menu-enhanced.show .fab-item-enhanced:nth-child(2) { transition-delay: 0.2s; }
.fab-menu-enhanced.show .fab-item-enhanced:nth-child(3) { transition-delay: 0.3s; }
.fab-menu-enhanced.show .fab-item-enhanced:nth-child(4) { transition-delay: 0.4s; }
.fab-menu-enhanced.show .fab-item-enhanced:nth-child(5) { transition-delay: 0.5s; }

.fab-label-enhanced {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    backdrop-filter: blur(10px);
}

.fab-button-enhanced {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.fab-button-enhanced.create { background: linear-gradient(45deg, #667eea, #764ba2); }
.fab-button-enhanced.dashboard { background: linear-gradient(45deg, #f59e0b, #d97706); }
.fab-button-enhanced.files { background: linear-gradient(45deg, #3b82f6, #2563eb); }
.fab-button-enhanced.donations { background: linear-gradient(45deg, #ef4444, #dc2626); }
.fab-button-enhanced.profile { background: linear-gradient(45deg, #10b981, #059669); }

.fab-button-enhanced:hover {
    transform: scale(1.1);
    color: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.fab-button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.fab-button-enhanced:hover .fab-button-glow {
    left: 100%;
}

/* Enhanced Tooltips */
[data-tooltip] {
    position: relative;
}

[data-tooltip]::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    margin-bottom: 0.5rem;
}

[data-tooltip]:hover::before {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .enhanced-nav-bar {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .quick-links-enhanced {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .post-header-enhanced {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .post-actions-top {
        align-self: flex-end;
    }
    
    .post-footer-enhanced {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .engagement-stats {
        justify-content: center;
    }
    
    .fab-enhanced {
        bottom: 20px;
        right: 20px;
    }
    
    .fab-menu-enhanced {
        bottom: 90px;
        right: 20px;
    }
    
    .stats-card {
        margin-bottom: 1rem;
    }
    
    .hero-stats-container {
        margin-top: 2rem;
    }
    
    .nav-title {
        text-align: center;
    }
    
    .nav-controls {
        width: 100%;
        justify-content: center;
    }
} </pre></body></html>