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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background-color: #f0f2f5;
            color: #1c1e21;
            line-height: 1.5;
        }
        
        /* Header */
        .header {
            background: white;
            border-bottom: 1px solid #ddd;
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 8px 0;
        }

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

        .header-left {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        /* Burger Menu */
        .burger-menu {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 24px;
            height: 18px;
            cursor: pointer;
            margin-right: 16px;
        }

        .burger-line {
            width: 100%;
            height: 2px;
            background-color: #65676b;
            border-radius: 2px;
            transition: all 0.3s;
        }

        .burger-menu.active .burger-line:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .burger-menu.active .burger-line:nth-child(2) {
            opacity: 0;
        }

        .burger-menu.active .burger-line:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 64px;
            left: 0;
            width: 100%;
            background: white;
            padding: 16px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            z-index: 99;
        }

        .mobile-menu.active {
            display: block;
        }

        .mobile-nav {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .mobile-nav-link {
            text-decoration: none;
            color: #65676b;
            font-size: 16px;
            font-weight: 500;
            padding: 12px;
            border-radius: 6px;
            transition: all 0.2s;
        }

        .mobile-nav-link:hover,
        .mobile-nav-link.active {
            color: #1877f2;
            background-color: #e7f3ff;
        }

        /* Mobile Navigation Bar */
        .mobile-nav-bar {
            display: none;
            background: white;
            border-bottom: 1px solid #ddd;
            padding: 12px 16px;
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .mobile-nav-bar::-webkit-scrollbar {
            display: none;
        }

        .mobile-nav-buttons {
            display: flex;
            gap: 12px;
            min-width: max-content;
        }

        .mobile-nav-btn {
            background: #f0f2f5;
            border: none;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
            color: #65676b;
            white-space: nowrap;
            cursor: pointer;
            transition: all 0.2s;
        }

        .mobile-nav-btn.active,
        .mobile-nav-btn:hover {
            background: #1877f2;
            color: white;
        }

        .logo {
            font-size: 22px;
            font-weight: 700;
            color: #1877f2;
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo .heart {
            color: #e74c3c;
            margin: 0 2px;
        }

        .nav {
            display: flex;
            gap: 8px;
        }

        .nav-link {
            text-decoration: none;
            color: #65676b;
            font-size: 14px;
            font-weight: 500;
            padding: 6px 12px;
            border-radius: 6px;
            transition: all 0.2s;
        }

        .nav-link:hover {
            background-color: #f0f2f5;
        }

        .nav-link.active {
            color: #1877f2;
            background-color: #e7f3ff;
        }

        .search-container {
            position: relative;
            margin-left: 100px;
        }

        .search-input {
            width: 250px;
            padding: 10px 16px 10px 36px;
            border: none;
            border-radius: 8px;
            background-color: #f0f2f5;
            font-size: 14px;
            outline: none;
            transition: all 0.2s;
        }

        .search-input::placeholder {
            color: #65676b;
        }

        .search-input:focus {
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            background-color: white;
        }

        .search-icon {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: #65676b;
            pointer-events: none;
        }

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

        .icon-btn {
            position: relative;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: #e4e6eb;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background-color 0.2s;
            border: none;
            color: #65676b;
        }

        .icon-btn:hover {
            background-color: #d8dadf;
        }

        .icon-btn .badge {
            position: absolute;
            top: -2px;
            right: -2px;
            background-color: #e74c3c;
            color: white;
            font-size: 11px;
            font-weight: 600;
            padding: 1px 5px;
            border-radius: 10px;
            min-width: 18px;
            text-align: center;
            border: 2px solid white;
        }

        .icon-btn .badge.green {
            background-color: #42b883;
        }

        .language-selector {
            display: flex;
            align-items: center;
            gap: 4px;
            padding: 6px 10px;
            border-radius: 6px;
            cursor: pointer;
            color: #1c1e21;
            font-size: 13px;
            font-weight: 500;
            transition: background-color 0.2s;
            border: none;
            background: none;
        }

        .language-selector:hover {
            background-color: #f0f2f5;
        }

        .add-story-btn {
            background: #1877f2;
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 24px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
            white-space: nowrap;
        }

        .add-story-btn:hover {
            background: #166fe5;
        }

        .profile-btn {
            display: flex;
            align-items: center;
            background: none;
            border: none;
            padding: 0;
            cursor: pointer;
        }

        .profile-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            object-fit: cover;
            border: 1px solid #ddd;
            cursor: pointer;
        }

        /* Main Layout */
        .main-container {
            max-width: 1200px;
            margin: 20px auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 360px;
            gap: 24px;
        }

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

        /* Sidebar */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 20px;
            position: sticky;
            top: 68px;
            height: fit-content;
        }

        .sidebar-mobile {
            display: none;
        }

        @media (max-width: 768px) {
            .sidebar {
                position: static;
                top: auto;
                height: auto;
            }
        }

        .sidebar-section {
            background: white;
            border-radius: 8px;
            padding: 16px;
            box-shadow: 0 1px 2px rgba(0,0,0,0.1);
        }

        .sidebar-mobile .sidebar-section {
            background: white;
            border-radius: 8px;
            padding: 16px;
            box-shadow: 0 1px 2px rgba(0,0,0,0.1);
            margin-bottom: 16px;
        }

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

        .section-header h3 {
            font-size: 16px;
            font-weight: 600;
            color: #1c1e21;
        }

        .filter-btn, .view-all {
            background: none;
            border: none;
            color: #1877f2;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            text-decoration: none;
        }

        .filter-btn:hover, .view-all:hover {
            text-decoration: underline;
        }

        .recommendation-list {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .recommendation-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 8px 12px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .recommendation-item:hover {
            background: #f0f2f5;
        }

        .recommendation-item.active {
            background: #e7f3ff;
        }

        .rec-icon {
            font-size: 16px;
            width: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .rec-text {
            font-size: 14px;
            font-weight: 500;
            color: #65676b;
        }

        .recommendation-item.active .rec-text {
            color: #1877f2;
        }

        .authors-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .author-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 8px;
            border-radius: 8px;
            cursor: pointer;
            transition: background-color 0.2s;
        }

        .author-item:hover {
            background: #f0f2f5;
        }

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

        .author-name {
            font-weight: 500;
            color: #1c1e21;
            font-size: 14px;
        }

        .author-stories {
            color: #65676b;
            font-size: 12px;
        }

        /* Popular posts - DESKTOP VERSION (vertical) */
        .popular-posts {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .popular-post {
            cursor: pointer;
            transition: opacity 0.2s;
        }

        .popular-post:hover {
            opacity: 0.9;
        }

        .popular-post-image {
            width: 100%;
            height: 200px;
            border-radius: 8px;
            object-fit: cover;
            margin-bottom: 8px;
        }

        .popular-post-content {
            padding: 0 4px;
        }

        .popular-post-author {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 6px;
        }

        .popular-author-avatar {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            object-fit: cover;
        }

        .popular-author-name {
            font-size: 12px;
            font-weight: 500;
            color: #1c1e21;
        }

        .popular-post-date {
            font-size: 11px;
            color: #65676b;
            margin-left: auto;
        }

        .popular-post-title {
            font-size: 14px;
            font-weight: 600;
            color: #1c1e21;
            margin-bottom: 4px;
            line-height: 1.3;
        }

        .popular-post-excerpt {
            font-size: 12px;
            color: #65676b;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 8px;
        }

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

        .popular-post-tags .tag {
            font-size: 11px;
            padding: 2px 8px;
        }

        /* MOBILE VERSION (horizontal) - starting from 780px */
        .sidebar-mobile .popular-posts {
            flex-direction: row;
            overflow-x: auto;
            padding-bottom: 8px;
            gap: 12px;
        }

        .sidebar-mobile .popular-posts::-webkit-scrollbar {
            height: 4px;
        }

        .sidebar-mobile .popular-posts::-webkit-scrollbar-track {
            background: #f0f2f5;
            border-radius: 2px;
        }

        .sidebar-mobile .popular-posts::-webkit-scrollbar-thumb {
            background: #c4c4c4;
            border-radius: 2px;
        }

        .sidebar-mobile .popular-posts::-webkit-scrollbar-thumb:hover {
            background: #999;
        }

        .sidebar-mobile .popular-post {
            flex: 0 0 auto;
            width: 180px;
            display: flex;
            flex-direction: column;
        }

        .sidebar-mobile .popular-post-image {
            width: 100%;
            height: 120px;
            margin-bottom: 8px;
        }

        /* Post Card */
        .post {
            background: white;
            border-radius: 16px;
            padding: 20px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.08);
        }

        .post-header {
            display: flex;
            gap: 12px;
            margin-bottom: 16px;
        }

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

        .author-info {
            flex: 1;
        }

        .author-name {
            font-weight: 600;
            font-size: 15px;
            color: #1c1e21;
            margin-bottom: 2px;
        }

        .author-username {
            font-size: 14px;
            color: #65676b;
            display: block;
        }

        .post-meta {
            font-size: 13px;
            color: #65676b;
        }

        .post-image {
            width: 100%;
            border-radius: 12px;
            margin-bottom: 16px;
            max-height: 500px;
            object-fit: cover;
        }

        .post-content h2 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 8px;
            color: #1c1e21;
            line-height: 1.3;
        }

        .post-content p {
            font-size: 15px;
            color: #1c1e21;
            margin-bottom: 12px;
            line-height: 1.5;
        }

        .post-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 12px;
        }

        .tag {
            background: #e7f3ff;
            color: #1877f2;
            padding: 6px 14px;
            border-radius: 16px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
        }

        .tag:hover {
            background: #d0e7ff;
        }

        .post-stats {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 12px;
            border-top: 1px solid #e4e6eb;
            margin-top: 12px;
        }

        .post-actions {
            display: flex;
            gap: 16px;
        }

        .action-btn {
            background: none;
            border: none;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 15px;
            color: #65676b;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 6px;
            transition: all 0.2s;
            font-weight: 500;
        }

        .action-btn:hover {
            background: #f0f2f5;
        }

        .action-btn svg {
            width: 20px;
            height: 20px;
        }

        .post-views {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: #65676b;
        }

        .post-views svg {
            width: 18px;
            height: 18px;
        }

        .post-date {
            font-size: 13px;
            color: #65676b;
            margin-top: 12px;
        }

        /* Sidebar */
        .sidebar {
            position: sticky;
            top: 68px;
            height: fit-content;
        }

        .sidebar-mobile {
            display: none;
        }

        @media (max-width: 768px) {
            .sidebar {
                position: static;
                top: auto;
                height: auto;
            }
        }

        .sidebar-section {
            background: white;
            border-radius: 8px;
            padding: 16px;
            margin-bottom: 16px;
            box-shadow: 0 1px 2px rgba(0,0,0,0.1);
        }

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

        .section-header h3 {
            font-size: 16px;
            font-weight: 600;
            color: #1c1e21;
        }

        .filter-btn {
            background: none;
            border: none;
            padding: 4px;
            cursor: pointer;
            color: #65676b;
        }

        .view-all {
            color: #1877f2;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
        }

        .view-all:hover {
            text-decoration: underline;
        }

        /* New recommendations styles */
        .recommendation-list {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .recommendation-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 8px 12px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .recommendation-item:hover {
            background-color: #f0f2f5;
        }

        .recommendation-item.active {
            background-color: #e7f3ff;
        }

        .rec-icon {
            font-size: 16px;
            width: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .rec-text {
            font-size: 14px;
            font-weight: 500;
            color: #65676b;
        }

        .recommendation-item.active .rec-text {
            color: #1877f2;
        }

        .authors-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .author-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 8px;
            border-radius: 8px;
            transition: background-color 0.2s;
            cursor: pointer;
        }

        .author-item:hover {
            background-color: #f0f2f5;
        }

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

        .author-details {
            flex: 1;
        }

        .author-details .author-name {
            font-weight: 500;
            color: #1c1e21;
            font-size: 14px;
        }

        .author-stories {
            color: #65676b;
            font-size: 12px;
        }

        /* Popular posts - DESKTOP VERSION (vertical) */
        .popular-posts {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .popular-post {
            cursor: pointer;
            transition: opacity 0.2s;
        }

        .popular-post:hover {
            opacity: 0.9;
        }

        .popular-post-image {
            width: 100%;
            height: 200px;
            border-radius: 8px;
            object-fit: cover;
            margin-bottom: 8px;
        }

        .popular-post-content {
            padding: 0 4px;
        }

        .popular-post-author {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 6px;
        }

        .popular-author-avatar {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            object-fit: cover;
        }

        .popular-author-name {
            font-size: 12px;
            font-weight: 500;
            color: #1c1e21;
        }

        .popular-post-date {
            font-size: 11px;
            color: #65676b;
            margin-left: auto;
        }

        .popular-post-title {
            font-size: 14px;
            font-weight: 600;
            color: #1c1e21;
            margin-bottom: 4px;
            line-height: 1.3;
        }

        .popular-post-excerpt {
            font-size: 12px;
            color: #65676b;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 8px;
        }

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

        .popular-post-tags .tag {
            font-size: 11px;
            padding: 2px 8px;
        }

        /* MOBILE VERSION (horizontal) - starting from 780px */
        @media (max-width: 780px) {
            .popular-posts {
                flex-direction: row;
                overflow-x: auto;
                padding-bottom: 8px;
                gap: 12px;
            }

            .popular-posts::-webkit-scrollbar {
                height: 4px;
            }

            .popular-posts::-webkit-scrollbar-track {
                background: #f0f2f5;
                border-radius: 2px;
            }

            .popular-posts::-webkit-scrollbar-thumb {
                background: #c4c4c4;
                border-radius: 2px;
            }

            .popular-posts::-webkit-scrollbar-thumb:hover {
                background: #999;
            }

            .popular-post {
                flex: 0 0 auto;
                width: 180px;
                display: flex;
                flex-direction: column;
            }

            .popular-post-image {
                width: 100%;
                height: 120px;
                margin-bottom: 8px;
            }

            .popular-post-content {
                padding: 0 4px;
            }

            .popular-post-author {
                display: flex;
                align-items: center;
                gap: 8px;
                margin-bottom: 6px;
            }

            .popular-author-avatar {
                width: 20px;
                height: 20px;
                border-radius: 50%;
                object-fit: cover;
            }

            .popular-author-name {
                font-size: 12px;
                font-weight: 500;
                color: #1c1e21;
            }

            .popular-post-date {
                font-size: 11px;
                color: #65676b;
                margin-left: auto;
            }

            .popular-post-title {
                font-size: 14px;
                font-weight: 600;
                color: #1c1e21;
                margin-bottom: 4px;
                line-height: 1.3;
            }

            .popular-post-excerpt {
                font-size: 12px;
                color: #65676b;
                line-height: 1.4;
                display: -webkit-box;
                -webkit-line-clamp: 3;
                -webkit-box-orient: vertical;
                overflow: hidden;
                margin-bottom: 8px;
            }

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

            .popular-post-tags .tag {
                font-size: 11px;
                padding: 2px 8px;
            }
        }

        /* Mobile Search */
        .mobile-search-btn {
            display: none;
        }

        /* Tablet/Medium screens - header adjustments */
        @media (max-width: 1280px) {
            .search-container {
                margin-left: 40px;
            }
            
            .search-input {
                width: 200px;
            }
        }
        
        @media (max-width: 1150px) {
            .search-container {
                margin-left: 20px;
            }
            
            .search-input {
                width: 180px;
            }
            
            .header-right {
                gap: 10px;
            }
        }
        
        @media (max-width: 1024px) {
            .search-container {
                margin-left: 16px;
            }
            
            .search-input {
                width: 160px;
            }
            
            .header-right {
                gap: 8px;
            }
            
            .add-story-btn {
                padding: 8px 12px;
                font-size: 13px;
            }
            
            .language-selector {
                padding: 4px 8px;
                font-size: 12px;
            }
        }

        /* Mobile - add story button becomes + */
        @media (max-width: 860px) {
            .add-story-btn span {
                display: none;
            }
            
            .add-story-btn::after {
                content: '+';
                font-size: 20px;
            }
        }

        @media (max-width: 768px) {
            .burger-menu {
                display: flex;
            }
            
            .nav {
                display: none;
            }
            
            .search-container {
                margin-left: 8px;
                position: relative;
                flex: 1;
                max-width: 200px;
            }
            
            .search-input {
                width: 100%;
                padding: 8px 12px 8px 32px;
            }
            
            .search-icon {
                position: absolute;
                left: 10px;
                top: 50%;
                transform: translateY(-50%);
                color: #65676b;
                pointer-events: none;
            }
        }

        @media (max-width: 600px) {
            .header-container {
                padding: 0 12px;
            }
            
            .search-container {
                max-width: 160px;
            }
            
            .header-right {
                gap: 6px;
            }
            
            .icon-btn {
                width: 32px;
                height: 32px;
            }
            
            .icon-btn svg {
                width: 18px;
                height: 18px;
            }
            
            .add-story-btn {
                width: 32px;
                height: 32px;
                padding: 0;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
            }
            
            .add-story-btn span {
                display: none;
            }
            
            .add-story-btn::after {
                content: '+';
                font-size: 18px;
            }
            
            .profile-avatar {
                width: 32px;
                height: 32px;
            }
            
            .language-selector {
                padding: 4px 8px;
                font-size: 12px;
            }
            
            .language-selector svg {
                width: 10px;
                height: 10px;
            }
        }

        .mobile-search-btn {
            display: none;
        }

        .mobile-search-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.5);
            z-index: 1000;
        }

        .mobile-search-overlay.active {
            display: block;
        }

        .mobile-search-container {
            background: white;
            padding: 16px;
        }

        .mobile-search-header {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .mobile-search-input {
            flex: 1;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
        }

        .mobile-search-close {
            background: #f0f2f5;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
        }

        @media (max-width: 1024px) {
            .main-container {
                grid-template-columns: 1fr;
                display: flex;
                flex-direction: column;
            }

            .sidebar {
                display: none;
            }

            .sidebar-mobile {
                display: flex;
                flex-direction: column;
                gap: 20px;
                order: 1;
            }

            .feed {
                order: 2;
            }

            .mobile-nav-bar {
                display: block;
            }
        }

        @media (max-width: 968px) {
            .nav {
                display: none;
            }

            .burger-menu {
                display: flex;
            }
        }

        @media (max-width: 768px) {
            .header-container {
                padding: 0 16px;
            }

            .search-container {
                max-width: 200px;
                margin-left: 20px;
            }

            .add-story-btn {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .search-container {
                display: none;
            }

            .header-right {
                gap: 8px;
            }

            .icon-btn {
                width: 36px;
                height: 36px;
            }

            .mobile-search-btn {
                display: flex;
                width: 32px;
                height: 32px;
                background: #e4e6eb;
                border-radius: 50%;
                align-items: center;
                justify-content: center;
            }

            .header-right .icon-btn:not(:last-child):not(.mobile-search-btn) {
                display: none;
            }

            .add-story-btn {
                display: flex;
                width: 32px;
                height: 32px;
                padding: 0;
                border-radius: 50%;
                font-size: 0;
                min-width: auto;
                align-items: center;
                justify-content: center;
            }

            .add-story-btn span {
                display: none;
            }

            .add-story-btn::after {
                content: '+';
                font-size: 18px;
            }

            .language-selector {
                padding: 4px 8px;
                font-size: 11px;
                min-width: auto;
            }

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

            .main-container {
                padding: 16px;
            }

            .post {
                padding: 16px;
            }

            .post-header {
                margin-bottom: 12px;
            }

            .author-avatar {
                width: 40px;
                height: 40px;
            }

            .post-content h2 {
                font-size: 18px;
            }

            .post-image {
                border-radius: 8px;
                max-height: 300px;
            }
        }
