     /* Improved font-face declaration with multiple formats for cross-platform compatibility */
        @font-face {
            font-family: 'CustomFont';
            src: url('assets/fonts/f.woff2') format('woff2'),
                 url('assets/fonts/f.otf') format('opentype');
            font-display: swap; 
            font-weight: normal;
            font-style: normal;
        }
        
        @font-face {
            font-family: 'Wolff2';
            src: url('assets/fonts/wolff2.woff2') format('woff2'),
                 url('assets/fonts/wolff2.woff') format('woff'),
                 url('assets/fonts/wolff2.ttf') format('truetype');
            font-display: swap;
            font-weight: normal;
            font-style: normal;
        }
        
        /* Font fallback system */
        body {
            font-family: 'Wolff2', 'CustomFont', 'Helvetica Neue', Arial, sans-serif;
        }
        
        /* Main container layout */
        .blog-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .blog-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            align-items: start;
        }
        
        @media (max-width: 768px) {
            .blog-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .blog-container {
                padding: 15px;
            }
        }
        
        /* Main article styling */
        .main-content {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .article-header {
            padding: 40px 40px 20px;
            border-bottom: 1px solid #f0f0f0;
        }
        
        @media (max-width: 768px) {
            .article-header {
                padding: 30px 20px 15px;
            }
        }
        
        .back-to-blog {
            display: inline-flex;
            align-items: center;
            background: linear-gradient(45deg, #f8a5c2, #e66a93);
            color: white;
            padding: 10px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            margin-bottom: 30px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(248, 165, 194, 0.3);
        }
        
        .back-to-blog:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(248, 165, 194, 0.4);
        }
        
        .back-to-blog::before {
            content: "←";
            margin-right: 8px;
            font-size: 1.2em;
        }
        
        .post-title {
            color: #2c3e50;
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
        }
        
        @media (max-width: 768px) {
            .post-title {
                font-size: 2rem;
            }
        }
        
        .post-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 20px;
        }
        
        .meta-item {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .meta-item i {
            color: #e66a93;
            width: 16px;
        }
        
        .meta-item a {
            color: #e66a93;
            text-decoration: none;
            font-weight: 500;
        }
        
        .meta-item a:hover {
            text-decoration: underline;
        }
        
        /* Featured image styling */
        .featured-image-section {
            margin: 30px 0;
            text-align: center;
        }
        
        .featured-image-container {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0,0,0,0.12);
            display: inline-block;
            max-width: 100%;
        }
        
        .featured-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            display: block;
        }
        
        @media (max-width: 768px) {
            .featured-image {
                height: 250px;
            }
        }
        
        /* Article content */
        .article-content {
            padding: 40px;
            line-height: 1.8;
            font-size: 1.1rem;
            color: #333;
        }
        
        @media (max-width: 768px) {
            .article-content {
                padding: 30px 20px;
                font-size: 1rem;
            }
        }
        
        .article-content p {
            margin-bottom: 1.5rem;
        }
        
        .article-content h1,
        .article-content h2,
        .article-content h3 {
            color: #e66a93;
            margin: 2rem 0 1rem;
            font-weight: 600;
        }
        
        .article-content h1 { font-size: 2rem; }
        .article-content h2 { font-size: 1.7rem; }
        .article-content h3 { font-size: 1.4rem; }
        
        .article-content ul,
        .article-content ol {
            margin-bottom: 1.5rem;
            padding-left: 2rem;
        }
        
        .article-content li {
            margin-bottom: 0.5rem;
        }
        
        .article-content img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 2rem 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        
        .article-content a {
            color: #e66a93;
            text-decoration: none;
            border-bottom: 1px solid rgba(230, 106, 147, 0.3);
            transition: all 0.3s ease;
        }
        
        .article-content a:hover {
            border-bottom-color: #e66a93;
        }
        
        .article-content blockquote {
            background: #f8f9fa;
            border-left: 4px solid #e66a93;
            padding: 20px 30px;
            margin: 2rem 0;
            font-style: italic;
            border-radius: 0 8px 8px 0;
        }
        
        /* Post engagement section */
        .post-engagement {
            background: linear-gradient(135deg, #ffeef5, #fff8f8);
            margin: 0 40px;
            padding: 25px;
            border-radius: 12px;
            border: 1px solid #ffcce0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        @media (max-width: 768px) {
            .post-engagement {
                margin: 0 20px;
                padding: 20px;
                flex-direction: column;
                text-align: center;
            }
        }
        
        .like-section,
        .share-section {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        @media (max-width: 768px) {
            .like-section,
            .share-section {
                justify-content: center;
            }
        }
        
        .like-button,
        .share-button {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }
        
        .like-button {
            background: white;
            color: #e66a93;
            border: 2px solid #e66a93;
        }
        
        .like-button:hover,
        .like-button.liked {
            background: #e66a93;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(230, 106, 147, 0.3);
        }
        
        .share-button {
            background: #e66a93;
            color: white;
        }
        
        .share-button:hover {
            background: #d04477;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(208, 68, 119, 0.3);
        }
        
        /* Comments section */
        .comments-section {
            margin: 40px 40px 0;
            padding-bottom: 40px;
        }
        
        @media (max-width: 768px) {
            .comments-section {
                margin: 30px 20px 0;
                padding-bottom: 30px;
            }
        }
        
        .comments-header {
            border-bottom: 2px solid #f0f0f0;
            padding-bottom: 20px;
            margin-bottom: 30px;
        }
        
        .comments-title {
            color: #2c3e50;
            font-size: 1.8rem;
            font-weight: 600;
            margin: 0;
        }
        
        /* iOS-style comment bubbles */
        .comment {
            margin-bottom: 30px;
            position: relative;
        }
        
        .comment-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 10px;
        }
        
        .comment-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: linear-gradient(45deg, #e66a93, #f8a5c2);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.1rem;
            flex-shrink: 0;
            box-shadow: 0 2px 8px rgba(230, 106, 147, 0.2);
            border: 2px solid #fff;
        }
        
        .comment-user-info {
            flex: 1;
        }
        
        .comment-author {
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 2px;
            font-size: 1rem;
        }
        
        .comment-date {
            color: #666;
            font-size: 0.9rem;
        }
        
        /* iOS-style message bubble for main comments */
        .comment-content {
            position: relative;
            background-color: #f1f0f0; /* iOS gray bubble */
            border-radius: 20px;
            padding: 15px 20px;
            margin-left: 65px;
            color: #333;
            line-height: 1.6;
            font-size: 1rem;
            max-width: 80%;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
            border-top-left-radius: 4px;
        }
        
        /* Message bubble tail */
        .comment-content:before {
            content: "";
            position: absolute;
            top: 0;
            left: -10px;
            width: 20px;
            height: 20px;
            background-color: #f1f0f0;
            border-bottom-right-radius: 16px;
            clip-path: polygon(0 0, 100% 0, 100% 100%);
        }
        
        .comment-actions {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-left: 65px;
            margin-top: 8px;
        }
        
        .reply-count {
            color: #666;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .reply-count i {
            color: #e66a93;
        }
        
        /* Comment replies - iOS style */
        .comment-replies {
            margin-left: 65px;
            margin-top: 20px;
            position: relative;
        }
        
        .reply {
            position: relative;
            margin-bottom: 15px;
        }
        
        .reply .comment-header {
            justify-content: flex-end;
            margin-right: 15px;
        }
        
        .reply .comment-user-info {
            text-align: right;
            margin-right: 15px;
        }
        
        .reply .comment-avatar {
            width: 36px;
            height: 36px;
            font-size: 0.9rem;
            order: 2;
        }
        
        /* iOS-style bubble for replies - different color */
        .reply .comment-content {
            background-color: #e8f8ff; /* Soft blue for replies */
            color: #333;
            margin-left: 0;
            margin-right: 15px; 
            float: right;
            border-top-right-radius: 4px;
            border-top-left-radius: 20px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
            position: relative;
        }
        
        /* Right-side tail for reply bubbles */
        .reply .comment-content:before {
            left: auto;
            right: -10px;
            background-color: #e8f8ff;
            border-bottom-right-radius: 0;
            border-bottom-left-radius: 16px;
            clip-path: polygon(0 0, 100% 0, 0 100%);
        }
        
        /* Clear floats */
        .reply:after {
            content: "";
            display: table;
            clear: both;
        }
        
        /* Comment form */
        .comment-form {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 40px;
            border: 1px solid #e9ecef;
        }
        
        @media (max-width: 768px) {
            .comment-form {
                padding: 20px;
            }
        }
        
        .comment-form textarea {
            width: 100%;
            min-height: 120px;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            padding: 15px;
            font-family: inherit;
            font-size: 1rem;
            resize: vertical;
            transition: border-color 0.3s ease;
            background: white;
        }
        
        .comment-form textarea:focus {
            outline: none;
            border-color: #e66a93;
            box-shadow: 0 0 0 3px rgba(230, 106, 147, 0.1);
        }
        
        .comment-form-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 20px;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        @media (max-width: 768px) {
            .comment-form-footer {
                flex-direction: column;
                align-items: stretch;
            }
        }
        
        .comment-submit {
            background: linear-gradient(45deg, #e66a93, #f8a5c2);
            color: white;
            border: none;
            border-radius: 25px;
            padding: 12px 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .comment-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(230, 106, 147, 0.3);
        }
        
        .login-prompt {
            text-align: center;
            padding: 40px;
            background: linear-gradient(135deg, #ffeef5, #fff8f8);
            border-radius: 12px;
            border: 2px dashed #f8a5c2;
            color: #666;
        }
        
        .login-prompt a {
            color: #e66a93;
            text-decoration: none;
            font-weight: 600;
        }
        
        .login-prompt a:hover {
            text-decoration: underline;
        }
        
        /* Individual comments */
        .comments-list {
            space-y: 20px;
        }
        
        .comment {
            background: white;
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 20px;
            border: 1px solid #e9ecef;
            transition: all 0.3s ease;
        }
        
        .comment:hover {
            border-color: #f8a5c2;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }
        
        .comment-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }
        
        .comment-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: linear-gradient(45deg, #e66a93, #f8a5c2);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.1rem;
            flex-shrink: 0;
        }
        
        .comment-user-info {
            flex: 1;
        }
        
        .comment-author {
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 2px;
            font-size: 1rem;
        }
        
        .comment-date {
            color: #666;
            font-size: 0.9rem;
        }
        
        .comment-content {
            color: #444;
            line-height: 1.6;
            margin-bottom: 15px;
            font-size: 1rem;
        }
        
        .comment-actions {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .reply-count {
            color: #666;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .reply-count i {
            color: #e66a93;
        }
        
        /* Comment replies */
        .comment-replies {
            margin-left: 40px;
            margin-top: 20px;
            border-left: 3px solid #f0f0f0;
            padding-left: 25px;
        }
        
        @media (max-width: 768px) {
            .comment-replies {
                margin-left: 20px;
                padding-left: 15px;
            }
        }
        
        .reply {
            background: #f8f9fa;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 15px;
            border: 1px solid #e9ecef;
        }
        
        .reply .comment-avatar {
            width: 36px;
            height: 36px;
            font-size: 0.9rem;
        }
        
        .reply .comment-author {
            font-size: 0.9rem;
        }
        
        .reply .comment-date {
            font-size: 0.8rem;
        }
        
        .reply .comment-content {
            font-size: 0.95rem;
        }
        
        /* Sidebar styling */
        .blog-sidebar {
            position: sticky;
            top: 30px;
        }
        
        .sidebar-card {
            background: white;
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            border: 1px solid #f0f0f0;
        }
        
        .sidebar-title {
            color: #2c3e50;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f0f0f0;
        }
        
        .recent-post-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .recent-post-item {
            padding: 12px 0;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .recent-post-item:last-child {
            border-bottom: none;
        }
        
        .recent-post-link {
            color: #2c3e50;
            text-decoration: none;
            font-weight: 500;
            line-height: 1.4;
            display: block;
            transition: color 0.3s ease;
        }
        
        .recent-post-link:hover {
            color: #e66a93;
        }
        
        .recent-post-date {
            color: #666;
            font-size: 0.85rem;
            margin-top: 5px;
        }
        
        .sidebar-about {
            color: #666;
            line-height: 1.6;
            font-size: 0.95rem;
        }
        
        /* Related posts */
        .related-posts {
            margin: 40px 40px 0;
            padding: 40px 0;
            border-top: 2px solid #f0f0f0;
        }
        
        @media (max-width: 768px) {
            .related-posts {
                margin: 30px 20px 0;
                padding: 30px 0;
            }
        }
        
        .related-title {
            color: #2c3e50;
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 30px;
            text-align: center;
        }
        
        .related-posts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }
        
        .related-post-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            border: 1px solid #f0f0f0;
            transition: all 0.3s ease;
        }
        
        .related-post-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        }
        
        .related-post-image-container {
            height: 180px;
            overflow: hidden;
        }
        
        .related-post-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .related-post-card:hover .related-post-image {
            transform: scale(1.05);
        }
        
        .related-post-content {
            padding: 20px;
        }
        
        .related-post-title {
            margin-bottom: 10px;
        }
        
        .related-post-title a {
            color: #2c3e50;
            text-decoration: none;
            font-weight: 600;
            line-height: 1.3;
        }
        
        .related-post-title a:hover {
            color: #e66a93;
        }
        
        .related-post-date {
            color: #666;
            font-size: 0.9rem;
        }
        
        /* Post not found */
        .post-not-found {
            text-align: center;
            padding: 80px 40px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            margin: 20px;
        }
        
        .post-not-found .emoji {
            font-size: 4rem;
            margin-bottom: 20px;
            display: block;
        }
        
        .post-not-found h2 {
            color: #2c3e50;
            font-size: 2rem;
            margin-bottom: 15px;
        }
        
        .post-not-found p {
            color: #666;
            max-width: 600px;
            margin: 0 auto 30px;
            line-height: 1.6;
        }
        
        /* Desktop navigation styles remain the same */
        .desktop-nav-overlay {
            display: none;
        }
        
        @media (min-width: 769px) {
            .hamburger-menu {
                display: none !important;
            }
            
            .nav-menu {
                display: none !important;
            }
            
            .desktop-nav-overlay {
                display: block;
                position: relative;
                margin-top: -15px;
                width: 100%;
            }
            
            .desktop-nav {
                display: flex;
                justify-content: center;
                background-color: rgba(255, 245, 250, 0.95);
                padding: 0.8rem 0;
                border-radius: 15px;
                box-shadow: 0 4px 8px rgba(0,0,0,0.1);
                margin: 0 auto;
                max-width: 800px;
                border: 2px solid #f8a5c2;
            }
            
            .desktop-nav ul {
                display: flex;
                list-style: none;
                margin: 0;
                padding: 0;
                align-items: center;
            }
            
            .desktop-nav li {
                margin: 0 1.5rem;
            }
            
            .desktop-nav a {
                text-decoration: none;
                color: #e66a93;
                font-weight: bold;
                font-size: 1.1rem;
                transition: all 0.3s ease;
                padding: 0.5rem 1rem;
                border-radius: 8px;
            }
            
            .desktop-nav a:hover {
                background-color: #ffeef5;
                color: #d04477;
            }
        }
        
        /* User menu styles - keeping existing styles */
        .user-menu {
            position: relative;
        }
        
        .user-dropdown {
            position: relative;
        }
        
        .user-toggle {
            background: none;
            border: none;
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            cursor: pointer;
            color: #e66a93;
            font-size: 1.1rem;
            font-weight: bold;
            height: auto;
        }
        
        .user-toggle:hover {
            background-color: #ffeef5;
            color: #d04477;
        }
        
        .user-avatar {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: linear-gradient(135deg, #e66a93, #f8a5c2);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 0.7rem;
        }
        
        .user-name {
            font-weight: bold;
            color: inherit;
            max-width: 80px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .user-dropdown-menu {
            position: absolute;
            top: 100%;
            right: 0;
            background: white;
            border-radius: 10px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            border: 1px solid rgba(230, 106, 147, 0.2);
            min-width: 200px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1000;
            overflow: hidden;
            margin-top: 5px;
        }
        
        .user-dropdown:hover .user-dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .user-info {
            padding: 15px;
            display: flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, #ffeef5, #fff8f8);
        }
        
        .user-avatar-large {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, #e66a93, #f8a5c2);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1rem;
        }
        
        .user-display-name {
            font-weight: 600;
            color: #333;
            margin-bottom: 2px;
            font-size: 0.9rem;
        }
        
        .user-email {
            font-size: 0.75rem;
            color: #666;
        }
        
        .dropdown-divider {
            margin: 0;
            border: none;
            border-top: 1px solid rgba(230, 106, 147, 0.2);
        }
        
        .dropdown-item {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 15px;
            color: #333;
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
            font-size: 0.9rem;
        }
        
        .dropdown-item:hover {
            background: rgba(230, 106, 147, 0.1);
            color: #e66a93;
        }
        
        /* Account menu styles for logged out users */
        .account-menu {
            position: relative;
        }
        
        .account-dropdown {
            position: relative;
        }
        
        .account-toggle {
            background: none;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            cursor: pointer;
            color: #e66a93;
            font-size: 1.1rem;
            font-weight: bold;
        }
        
        .account-toggle:hover {
            background-color: #ffeef5;
            color: #d04477;
        }
        
        .account-dropdown-menu {
            position: absolute;
            top: 100%;
            right: 0;
            background: white;
            border-radius: 10px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            border: 1px solid rgba(230, 106, 147, 0.2);
            min-width: 140px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1000;
            overflow: hidden;
            margin-top: 5px;
        }
        
        .account-dropdown:hover .account-dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .account-dropdown-item {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 15px;
            color: #333;
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
            font-size: 0.9rem;
        }
        
        .account-dropdown-item:hover {
            background: rgba(230, 106, 147, 0.1);
            color: #e66a93;
        }
        
        .account-dropdown-item i {
            width: 16px;
            text-align: center;
            font-size: 0.85rem;
        }
        
        /* Reply button styling */
        .reply-button {
            background: none;
            border: none;
            color: #e66a93;
            font-size: 0.9rem;
            cursor: pointer;
            padding: 5px 0;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: color 0.3s ease;
        }
        
        .reply-button:hover {
            color: #d04477;
        }
        
        /* Reply form styling */
        .reply-form {
            margin-top: 15px;
            margin-left: 65px;
            background: #f8f9fa;
            border-radius: 12px;
            padding: 20px;
            border: 1px solid #e9ecef;
        }
        
        .reply-form textarea {
            width: 100%;
            min-height: 80px;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            padding: 12px;
            font-family: inherit;
            font-size: 0.95rem;
            resize: vertical;
            transition: border-color 0.3s ease;
            background: white;
            margin-bottom: 15px;
        }
        
        .reply-form textarea:focus {
            outline: none;
            border-color: #e66a93;
            box-shadow: 0 0 0 3px rgba(230, 106, 147, 0.1);
        }
        
        .reply-form-footer {
            display: flex;
            justify-content: flex-end;
            gap: 10px;
            align-items: center;
        }
        
        @media (max-width: 768px) {
            .reply-form {
                margin-left: 20px;
                padding: 15px;
            }
            
            .reply-form-footer {
                flex-direction: column;
                gap: 10px;
            }
            
            .cancel-reply,
            .reply-submit {
                width: 100%;
                justify-content: center;
            }
        }
        
        .cancel-reply {
            background: none;
            border: 1px solid #6c757d;
            color: #6c757d;
            padding: 8px 16px;
            border-radius: 20px;
            cursor: pointer;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        
        .cancel-reply:hover {
            background: #6c757d;
            color: white;
        }
        
        .reply-submit {
            background: linear-gradient(45deg, #e66a93, #f8a5c2);
            color: white;
            border: none;
            border-radius: 20px;
            padding: 8px 20px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.9rem;
        }
        
        .reply-submit:hover {
            transform: translateY(-1px);
            box-shadow: 0 3px 10px rgba(230, 106, 147, 0.3);
        }