:root {
    --primary-color: #1a1a1a;
    --secondary-color: #ffffff;
    --accent-color: #2a2a2a;
    --text-color: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    background: var(--primary-color);
    color: var(--text-color);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Header & Navigation */
header {
    padding: 1.5rem 2rem;
    background: rgba(26, 26, 26, 0.95);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.logo {
    position: absolute;
    left: 2rem;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 3.5rem;
    justify-content: center;
    align-items: center;
}

.nav-links a {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
    opacity: 0.8;
}

/* Main Content */
main {
    padding-top: 100px;
}

/* Hero Section */
.hero {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 2rem 0 2rem;
    position: relative;
    background: radial-gradient(circle at 50% 50%, rgba(40, 40, 40, 0.3) 0%, rgba(26, 26, 26, 1) 100%);
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    background: linear-gradient(to right, #ffffff, #a0a0a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.8rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cta-buttons .open-app {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    background: #1db954;
    color: #fff;
    text-decoration: none;
    display: inline-block;
}

.cta-buttons .open-app:hover {
    background: #1ed760;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(29, 185, 84, 0.3);
}

.discover-more {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-color);
}

/* Trading Stats */
.trading-stats {
    display: flex;
    gap: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.7rem 1.2rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(5px);
}

.token {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.value {
    font-size: 1.2rem;
    font-weight: 500;
}

/* Footer */
footer {
    background: var(--accent-color);
    padding: 4rem 2rem;
    margin-top: 4rem;
    background: rgba(255, 255, 255, 0.05);
    padding-bottom: 50px;
}

.contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.social-links, .email-contact {
    text-align: center;
}

.x-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.x-icon {
    width: 24px;
    height: 24px;
}

.x-link span {
    font-size: 1.1rem;
}

.x-link:hover {
    opacity: 0.8;
}

.email-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1.1rem;
    transition: opacity 0.3s ease;
}

.email-contact a:hover {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .mobile-menu-button {
        background: none;
        border: none;
        color: var(--text-color);
        font-size: 1.5rem;
        cursor: pointer;
        padding: 0.8rem 1.5rem;
    }
    
    .contact {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .trading-stats {
        gap: 1rem;
    }

    .stat-item {
        padding: 0.8rem 1.5rem;
    }
}

/* Style dla pojedynczego artykułu */
.article-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 2rem;
}

.article-header h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.article-content {
    color: #ddd;
}

.article-content h2 {
    margin: 2rem 0 1rem;
    color: #fff;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
}

.article-content .chart {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.chart-description {
    color: #888;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Lista artykułów */
.articles h1 {
    color: #fff;
    margin-bottom: 2rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

/* TradingView Widget */
.tradingview-widget-container {
    width: 100%;
    margin: 0 auto;
    max-width: 1400px;
}

.tradingview-widget-copyright {
    text-align: center;
    margin-top: 10px;
}

.tradingview-widget-copyright a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.8rem;
}

.blue-text {
    color: #2962FF;
}

/* Ticker Section */
.ticker-section {
    width: 100%;
    margin: 2rem 0;
    padding: 0 1rem;
}

/* Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    background: rgba(26, 26, 26, 0.98);
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 4px;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
    transform: translateY(-10px);
}

.dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content a {
    color: rgba(255, 255, 255, 0.7);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    padding-left: 20px;
}

.dropdown-content a.active {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Ikony w nawigacji */
.nav-icon {
    font-family: 'Font Awesome 6 Free', 'Font Awesome 5 Free', 'FontAwesome', Arial, sans-serif !important;
    font-weight: 900 !important;
    font-style: normal;
    font-size: 1.1em;
    margin-right: 0.5em;
    vertical-align: middle;
    display: inline-block;
    color: inherit;
}

.nav-links a:hover .nav-icon {
    transform: scale(1.2) rotate(5deg);
}

/* Login Button */
.login-container {
    position: fixed;
    top: 1.5rem;
    right: 2rem;
    z-index: 1001;
}

.login-btn {
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(40, 40, 40, 0.9));
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.login-btn:hover {
    background: linear-gradient(135deg, rgba(40, 40, 40, 0.95), rgba(60, 60, 60, 0.95));
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Hide login button on all pages except aktualnosci.html */
body:not(.aktualnosci) .login-container {
    display: none;
}

/* Content Section */
.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.content h2:first-child {
    margin-top: 1.5rem;
    margin-bottom: 1.2rem;
}

.content h2 {
    font-size: 2rem;
}

.content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

h2:not(:first-child) {
    margin-top: 4rem;
}

/* Specjalny odstęp dla sekcji "Co daje dostęp do Discorda?" */
h2:last-of-type {
    margin-top: 6rem;
}

p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.scroll-to-bottom-btn {
    position: fixed;
    left: 50%;
    bottom: 32px;
    transform: translateX(-50%);
    z-index: 2000;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #222;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}
.scroll-to-bottom-btn:hover {
    background: #444;
}

.scroll-to-bottom-btn--hidden {
    display: none !important;
}

/* Login Form Styles */
.login-page-container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(145deg, rgba(40, 40, 40, 0.8) 0%, rgba(30, 30, 30, 0.9) 100%);
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.login-form {
    background: rgba(25, 25, 25, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 420px;
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.login-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.login-form h1 {
    text-align: center;
    margin-bottom: 2rem;
    color: #ffffff;
    font-size: 2rem;
    background: linear-gradient(to right, #ffffff, #a0a0a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.form-group input {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.form-group i {
    position: absolute;
    right: 1rem;
    top: 2.3rem;
    color: rgba(255, 255, 255, 0.3);
}

.submit-button {
    width: 100%;
    padding: 0.8rem;
    border: none;
    border-radius: 10px;
    background: linear-gradient(145deg, rgba(40, 40, 40, 0.9) 0%, rgba(60, 60, 60, 0.9) 100%);
    color: white;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1rem;
}

.submit-button:hover {
    transform: translateY(-2px);
    background: linear-gradient(145deg, rgba(50, 50, 50, 0.95) 0%, rgba(70, 70, 70, 0.95) 100%);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.error-message {
    color: #ff4444;
    text-align: center;
    margin-top: 1rem;
    display: none;
    padding: 0.8rem;
    background: rgba(255, 68, 68, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 68, 68, 0.2);
}

.loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.back-to-home {
    position: absolute;
    top: 2rem;
    left: 2rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    z-index: 2000;
    pointer-events: auto;
}

.back-to-home:hover {
    color: #ffffff;
    transform: translateX(-5px);
}

/* Floating Discord Button - green (zmniejszony) */
.floating-discord-btn {
    position: fixed;
    top: 1.2rem;
    right: 1.2rem;
    z-index: 2000;
    background: linear-gradient(135deg, #43ea7c 0%, #1db954 100%);
    color: #fff;
    padding: 0.55rem 1.1rem;
    border-radius: 8px;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(67,234,124,0.15);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 0.93rem;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s, transform 0.2s;
}
.floating-discord-btn:hover {
    background: linear-gradient(135deg, #1db954 0%, #43ea7c 100%);
    color: #eaeaea;
    box-shadow: 0 4px 16px rgba(67,234,124,0.25);
    transform: translateY(-2px) scale(1.04);
}
.floating-discord-btn .fa-discord {
    font-size: 1.1em;
}
@media (max-width: 600px) {
    .floating-discord-btn {
        display: none !important;
    }
}

/* Nawigacja mobilna */
.mobile-nav {
    display: none;
}

.mobile-menu-button {
    display: none;
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    position: fixed;
    right: 2rem;
    top: 1.2rem;
    z-index: 5000 !important;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.mobile-menu-button:hover {
    color: rgba(255, 255, 255, 0.8);
    background: rgba(26, 26, 26, 0.95);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}
@media (max-width: 900px) {
    .mobile-nav {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 80vw;
        max-width: 340px;
        height: 100vh;
        background: rgba(26,26,26,0.98);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 3.5rem 1.5rem 2rem 1.5rem;
        box-shadow: -4px 0 24px rgba(0,0,0,0.25);
        z-index: 1100;
        transition: transform 0.35s cubic-bezier(.4,2,.6,1), opacity 0.3s;
        transform: translateX(100%);
        opacity: 0;
        border: none;
    }
    .mobile-nav.active {
        display: flex !important;
        transform: translateX(0) !important;
        opacity: 1 !important;
        background: rgba(26,26,26,0.98) !important;
        border: none;
    }
    .mobile-link {
        color: #fff;
        font-size: 1.25rem;
        padding: 1.1rem 0 1.1rem 0.5rem;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 1rem;
        border-radius: 8px;
        margin-bottom: 0.5rem;
        transition: background 0.2s, color 0.2s;
    }
    .mobile-link:hover {
        background: rgba(255,255,255,0.07);
        color: #1db954;
    }
    .mobile-nav .nav-icon {
        font-size: 1.3em;
        min-width: 1.5em;
    }
    .mobile-nav .close-mobile-nav {
        position: absolute;
        top: 1.2rem;
        right: 1.2rem;
        background: none;
        border: none;
        color: #fff;
        font-size: 2.1rem;
        cursor: pointer;
        z-index: 1200;
        transition: color 0.2s;
    }
    .mobile-nav .close-mobile-nav:hover {
        color: #1db954;
    }
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70vw;
        max-width: 320px;
        background: rgba(26,26,26,0.98);
        flex-direction: column;
        gap: 2rem;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 5rem 2rem 2rem 2rem;
        box-shadow: -2px 0 16px rgba(0,0,0,0.18);
        z-index: 1100;
        transition: transform 0.3s cubic-bezier(.4,2,.6,1), opacity 0.3s;
        transform: translateX(100%);
        opacity: 0;
    }
    .nav-links.active {
        display: flex !important;
        transform: translateX(0);
        opacity: 1;
    }
    .mobile-menu-button {
        display: block;
        position: fixed;
        right: 2rem;
        top: 1.2rem;
        z-index: 5000;
        background: rgba(26, 26, 26, 0.9);
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 0.5rem;
        border-radius: 8px;
        backdrop-filter: blur(10px);
    }
    nav {
        justify-content: center;
    }
    .logo {
        position: absolute;
        left: 2rem;
    }
    .floating-discord-btn {
        display: none !important;
    }
}
@media (max-width: 600px) {
    .hero, .content, .articles {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .hero-content {
        padding: 0 0.2rem;
    }
    .cta-buttons {
        flex-direction: column;
        gap: 0.7rem;
    }
    h1 {
        font-size: 1.3rem;
    }
}

.mobile-menu-button.active i {
    transform: rotate(90deg);
    transition: transform 0.3s;
}
@media (max-width: 900px) {
    .nav-links {
        z-index: 3000;
        background: rgba(26,26,26,0.98);
        box-shadow: -2px 0 16px rgba(0,0,0,0.18);
    }
    .nav-links a, .nav-links .dropdown > a {
        font-size: 1.2rem;
        padding: 0.7rem 0;
        width: 100%;
    }
    .dropdown-content {
        position: static;
        box-shadow: none;
        background: none;
        min-width: 0;
        margin: 0;
        padding: 0 0 0 1.5rem;
    }
    .dropdown-content a {
        padding: 0.5rem 0;
    }
}

/* Style dla przycisków Discord są teraz generowane przez server.js */

/* Newsfeed Section Styles */
.newsfeed-section {
    padding: 0 2rem 4rem 2rem;
    background: #1a1a1a;
    margin: 0 0 2rem 0;
}

.newsfeed-container {
    max-width: 1200px;
    margin: 0 auto;
}

.newsfeed-header {
    text-align: center;
    margin-bottom: 3rem;
}

.newsfeed-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.newsfeed-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.newsfeed-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #ffffff;
    background: transparent;
    color: #ffffff;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #ffffff;
    color: #333;
}

.newsfeed-messages-container {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    max-height: 600px;
    overflow-y: auto;
    position: relative;
}

.newsfeed-message {
    padding: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    opacity: 1;
}

.newsfeed-message:last-child {
    border-bottom: none;
}

.newsfeed-message.red-dot {
    border-left: 4px solid #ff4757;
    background: rgba(255, 71, 87, 0.05);
}

.newsfeed-message.red-dot::before {
    content: "🔴";
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    background: #ff4757;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.newsfeed-timestamp {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.newsfeed-text {
    line-height: 1.6;
    margin: 0;
    color: #ffffff;
}

.loading {
    text-align: center;
    padding: 3rem;
    color: #666;
}

.loading-spinner {
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid #ffffff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

.no-news {
    text-align: center;
    padding: 3rem;
    color: #666;
}

.error-message {
    text-align: center;
    padding: 3rem;
    color: #ff4757;
}

.newsfeed-footer {
    text-align: center;
    margin-top: 2rem;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    color: #333;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.view-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    background: #ffffff;
}

/* Responsive design for newsfeed */
@media (max-width: 768px) {
    .newsfeed-section {
        padding: 2rem 1rem;
    }
    
    .newsfeed-header h2 {
        font-size: 2rem;
    }
    
    .newsfeed-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 200px;
    }
    
    .newsfeed-messages-container {
        max-height: 500px;
        padding: 1rem;
    }
}