/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #f8fafc;
    color: #0f172a;
    line-height: 1.6;
    -webkit-tap-highlight-color: transparent;
}
a { text-decoration: none; color: inherit; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }

/* ===== TOP BAR ===== */
.top-bar {
    background: #b91c1c;
    color: #fff;
    font-size: clamp(0.7rem, 2vw, 0.85rem);
    padding: 0.4rem 0;
    text-align: center;
    letter-spacing: 0.3px;
}
.top-bar i { margin-right: 0.4rem; }

/* ===== MERCURY BAR ===== */
.mercury-bar {
    background: #0f172a;
    color: #e2e8f0;
    padding: 0.6rem 0;
    border-bottom: 2px solid #b91c1c;
    font-weight: 500;
    font-size: 0.95rem;
    overflow: hidden;
}
.mercury-bar .container {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.mercury-bar i {
    flex-shrink: 0;
    color: #fbbf24;
}
.mercury-bar .mercury-text {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}
@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}
.mercury-bar:hover .mercury-text {
    animation-play-state: paused;
}
@media (max-width: 768px) {
    .mercury-bar .mercury-text {
        animation-duration: 30s;
    }
}

/* ===== NAVBAR ===== */
.navbar {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 0.6rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: clamp(1.2rem, 4vw, 1.6rem);
    font-weight: 800;
    color: #b91c1c;
}
.logo i { font-size: clamp(1.2rem, 4vw, 1.8rem); }
.logo span { color: #0f172a; }
.logo .logo-image { height: 40px; width: auto; }

.nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0.4rem;
    background: #ffffff;
    padding: 1rem 0;
    border-top: 1px solid #e2e8f0;
    margin-top: 0.6rem;
}
.nav-links.open { display: flex; }
.nav-links a {
    padding: 0.6rem 0.5rem;
    font-weight: 500;
    font-size: 1rem;
    color: #475569;
    transition: color 0.2s;
    border-radius: 8px;
}
.nav-links a:hover, .nav-links a.active {
    color: #b91c1c;
    background: #fef2f2;
}
.nav-links a.active { font-weight: 600; }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    touch-action: manipulation;
    white-space: nowrap;
}
.btn-primary {
    background: #b91c1c;
    color: #fff;
}
.btn-primary:hover {
    background: #991b1b;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(185,28,28,0.3);
}
.btn-outline {
    background: transparent;
    border: 2px solid #e2e8f0;
    color: #0f172a;
}
.btn-outline:hover {
    border-color: #b91c1c;
    color: #b91c1c;
}
.btn-success {
    background: #16a34a;
    color: #fff;
}
.btn-success:hover {
    background: #15803d;
    transform: translateY(-1px);
}
.btn-danger {
    background: #dc2626;
    color: #fff;
}
.btn-danger:hover {
    background: #b91c1c;
}
.btn-sm { padding: 0.3rem 0.8rem; font-size: 0.75rem; }
.hamburger {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #0f172a;
    padding: 0.3rem;
    touch-action: manipulation;
}

/* ===== HERO ===== */
.hero {
    padding: 2.5rem 0 2rem;
    background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.hero-content { text-align: left; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #b91c1c;
    color: #fff;
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    font-size: clamp(0.65rem, 1.5vw, 0.75rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
}
.hero h1 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 0.6rem;
}
.hero h1 span { color: #b91c1c; }
.hero p {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    color: #475569;
    max-width: 480px;
    margin-bottom: 1.5rem;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}
.hero-actions .btn { flex: 1 1 auto; min-width: 140px; }
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.5rem;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    color: #475569;
}
.hero-stats i { color: #b91c1c; margin-right: 0.3rem; }

.hero-visual {
    background: #ffffff;
    border-radius: 20px;
    padding: 0.8rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 1px solid #f1f5f9;
}
.hero-visual .video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 12px;
    overflow: hidden;
    background: #1e293b;
}
.hero-visual .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.hero-visual .placeholder-img {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-weight: 500;
    font-size: clamp(0.75rem, 2vw, 0.95rem);
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1rem;
    text-align: center;
    flex-direction: column;
}
.hero-visual .placeholder-img i {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: #b91c1c;
}
.hero-visual .placeholder-img span {
    display: block;
    margin-top: 0.3rem;
}

/* ===== LIVE NEWS ===== */
.live-section {
    padding: 2rem 0;
    background: #0f172a;
    color: #fff;
}
.live-section .section-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
}
.live-section .section-header h2 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: clamp(1.3rem, 4vw, 1.8rem);
    font-weight: 700;
}
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: #dc2626;
    color: #fff;
    padding: 0.1rem 0.6rem;
    border-radius: 50px;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse-live 1.5s infinite;
}
@keyframes pulse-live {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1); }
}
.live-section .section-header .update-time {
    font-size: clamp(0.7rem, 1.5vw, 0.85rem);
    color: #94a3b8;
    margin-left: auto;
}

.news-feed {
    background: #1e293b;
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    min-height: 350px;
}
.news-feed .feed-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 0.6rem;
    margin-bottom: 1rem;
}
.news-feed .feed-header .live-indicator {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: clamp(0.7rem, 1.5vw, 0.85rem);
    color: #94a3b8;
}
.news-feed .feed-header .live-indicator .dot {
    width: 8px;
    height: 8px;
    background: #dc2626;
    border-radius: 50%;
    animation: pulse-dot 1.2s infinite;
    flex-shrink: 0;
}
@keyframes pulse-dot {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.news-items {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    max-height: 460px;
    overflow-y: auto;
    padding-right: 0.3rem;
}
.news-items::-webkit-scrollbar { width: 3px; }
.news-items::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); border-radius: 4px; }
.news-items::-webkit-scrollbar-thumb { background: #b91c1c; border-radius: 4px; }

.news-item {
    background: rgba(255,255,255,0.04);
    padding: 0.7rem 0.8rem;
    border-radius: 10px;
    border-left: 3px solid #b91c1c;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    transition: background 0.2s;
    position: relative;
}
.news-item:hover { background: rgba(255,255,255,0.08); }
.news-item .time {
    font-size: clamp(0.6rem, 1.2vw, 0.75rem);
    color: #94a3b8;
    font-weight: 500;
}
.news-item .content .headline {
    font-weight: 600;
    font-size: clamp(0.9rem, 2.2vw, 0.98rem);
    color: #f1f5f9;
    line-height: 1.3;
}
.news-item .content .summary {
    font-size: clamp(0.75rem, 1.8vw, 0.85rem);
    color: #94a3b8;
    margin-top: 0.1rem;
}
.news-item .category {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 600;
    background: rgba(185,28,28,0.25);
    color: #fca5a5;
    padding: 0.05rem 0.6rem;
    border-radius: 50px;
    margin-top: 0.2rem;
    align-self: flex-start;
}
.news-media {
    margin-top: 0.4rem;
    border-radius: 8px;
    overflow: hidden;
    max-width: 100%;
}
.news-media img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    max-height: 200px;
    object-fit: cover;
    width: 100%;
}
.news-media video {
    max-width: 100%;
    border-radius: 8px;
    max-height: 200px;
    width: 100%;
    background: #000;
}
.news-media iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 8px;
    border: none;
}

.news-ticker {
    background: #1e293b;
    border-radius: 12px;
    padding: 0.6rem 1rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    overflow: hidden;
    border-left: 4px solid #dc2626;
    flex-wrap: nowrap;
}
.news-ticker .ticker-label {
    font-weight: 700;
    font-size: clamp(0.7rem, 1.5vw, 0.85rem);
    color: #dc2626;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    flex-shrink: 0;
}
.news-ticker .ticker-text {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
}
.news-ticker .ticker-text span {
    display: inline-block;
    padding-left: 100%;
    animation: ticker-scroll 22s linear infinite;
    font-weight: 500;
    font-size: clamp(0.75rem, 1.8vw, 0.95rem);
    color: #e2e8f0;
}
@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}
.news-ticker:hover .ticker-text span { animation-play-state: paused; }

/* ===== ADMIN UPLOADS ===== */
.admin-news-section {
    padding: 2.5rem 0;
    background: #ffffff;
}
.admin-news-section .section-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.admin-news-section .section-header h2 {
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.admin-news-section .section-header h2 i { color: #16a34a; }
.admin-news-section .section-header .admin-badge {
    background: #16a34a;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 600;
    padding: 0.1rem 0.8rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.admin-news-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.admin-news-item {
    background: #f8fafc;
    border-radius: 14px;
    padding: 1rem 1.2rem;
    border-left: 4px solid #16a34a;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: transform 0.2s;
}
.admin-news-item:hover { transform: translateX(4px); }
.admin-news-item .admin-time {
    font-size: 0.7rem;
    color: #94a3b8;
    font-weight: 500;
}
.admin-news-item .admin-title {
    font-size: clamp(1rem, 2.2vw, 1.1rem);
    font-weight: 600;
    margin: 0.2rem 0;
    color: #0f172a;
}
.admin-news-item .admin-desc {
    font-size: 0.9rem;
    color: #475569;
}
.admin-news-item .admin-media {
    margin-top: 0.5rem;
    border-radius: 8px;
    overflow: hidden;
    max-width: 100%;
}
.admin-news-item .admin-media img {
    max-width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    width: 100%;
}
.admin-news-item .admin-media video {
    max-width: 100%;
    max-height: 200px;
    border-radius: 8px;
    width: 100%;
    background: #000;
}
.admin-news-item .admin-media iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 8px;
    border: none;
}
.admin-news-item .admin-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 0.4rem;
    flex-wrap: wrap;
}
.admin-news-item .admin-meta span i { margin-right: 0.2rem; }
.admin-empty {
    text-align: center;
    color: #94a3b8;
    padding: 2rem 0;
    font-size: 0.95rem;
}
.admin-empty i {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
    opacity: 0.4;
}

/* ===== SOCIAL FEEDS ===== */
.social-feeds {
    padding: 3rem 0;
    background: #f8fafc;
}
.social-feeds .section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.social-feeds .section-header h2 {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 700;
}
.social-feeds .section-header h2 i {
    color: #b91c1c;
    margin: 0 0.3rem;
}
.social-feeds .section-header p {
    color: #64748b;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
}
.feeds-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.feed-column {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
}
.feed-column h3 {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}
.feed-column h3 i { font-size: 1.4rem; }
.feed-column h3 .fb-color { color: #1877f2; }
.feed-column h3 .ig-color { color: #e4405f; }
.feed-wrapper {
    max-height: 500px;
    overflow-y: auto;
    border-radius: 12px;
}
.feed-wrapper::-webkit-scrollbar { width: 4px; }
.feed-wrapper::-webkit-scrollbar-track { background: #f1f5f9; border-radius: 4px; }
.feed-wrapper::-webkit-scrollbar-thumb { background: #b91c1c; border-radius: 4px; }
.fb-page-container {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fb-page-container iframe {
    width: 100% !important;
    border: none !important;
}
.ig-embed-container {
    background: #ffffff;
    border-radius: 12px;
    padding: 0.5rem;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ig-embed-container blockquote { width: 100%; margin: 0; }
.feed-fallback {
    text-align: center;
    padding: 2rem 1rem;
    color: #94a3b8;
}
.feed-fallback i {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.8rem;
    opacity: 0.5;
}
.feed-fallback a {
    color: #b91c1c;
    font-weight: 600;
}
.feed-fallback a:hover { text-decoration: underline; }

/* ===== ABOUT ===== */
.about-section {
    padding: 3rem 0;
    background: #ffffff;
}
.about-section .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
.about-section h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    margin-bottom: 0.8rem;
}
.about-section h2 i { color: #b91c1c; margin-right: 0.5rem; }
.about-section p {
    color: #475569;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    margin-bottom: 1rem;
}
.about-section .highlight {
    background: #fef2f2;
    padding: 1rem 1.2rem;
    border-radius: 12px;
    border-left: 4px solid #b91c1c;
    margin-top: 1rem;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-top: 1rem;
}
.about-features .feat {
    background: #f8fafc;
    padding: 0.6rem 0.8rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
}
.about-features .feat i { color: #b91c1c; font-size: 1rem; }

/* ===== LATEST POSTS ===== */
.latest-section {
    padding: 3rem 0;
    background: #f8fafc;
}
.latest-section .section-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}
.latest-section .section-header h2 {
    font-size: clamp(1.3rem, 3.5vw, 1.8rem);
    font-weight: 700;
}
.latest-section .section-header h2 i { color: #b91c1c; margin-right: 0.4rem; }
.latest-section .section-header a {
    color: #b91c1c;
    font-weight: 600;
    font-size: clamp(0.8rem, 1.8vw, 0.95rem);
}
.post-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
}
.post-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    border: 1px solid #f1f5f9;
    transition: transform 0.25s, box-shadow 0.25s;
}
.post-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.post-card .post-img {
    height: 140px;
    background: linear-gradient(135deg, #e2e8f0, #f1f5f9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 0.85rem;
    gap: 0.5rem;
}
.post-card .post-img i {
    font-size: 1.6rem;
    color: #b91c1c;
}
.post-card .post-body { padding: 1rem; }
.post-card .post-body .tag {
    display: inline-block;
    background: #fef2f2;
    color: #b91c1c;
    font-size: 0.6rem;
    font-weight: 600;
    padding: 0.1rem 0.7rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 0.3rem;
}
.post-card .post-body h3 {
    font-size: clamp(1rem, 2.2vw, 1.05rem);
    font-weight: 600;
    margin-bottom: 0.3rem;
}
.post-card .post-body p { color: #64748b; font-size: clamp(0.85rem, 1.8vw, 0.9rem); }
.post-card .post-body .meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.6rem;
    font-size: 0.75rem;
    color: #94a3b8;
    border-top: 1px solid #f1f5f9;
    padding-top: 0.6rem;
}
.post-card .post-body .meta i { margin-right: 0.2rem; }

/* ===== SOCIAL LINKS ===== */
.social-section {
    padding: 2.5rem 0;
    background: #ffffff;
    text-align: center;
}
.social-section h2 {
    font-size: clamp(1.3rem, 3.5vw, 1.8rem);
    font-weight: 700;
    margin-bottom: 0.3rem;
}
.social-section p { color: #64748b; margin-bottom: 1.5rem; font-size: clamp(0.9rem, 2vw, 1rem); }
.social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
}
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: clamp(0.8rem, 1.8vw, 0.95rem);
    transition: all 0.25s;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #0f172a;
    flex: 1 1 auto;
    min-width: 120px;
}
.social-links a:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.06); }
.social-links a.facebook:hover { background: #1877f2; color: #fff; border-color: #1877f2; }
.social-links a.instagram:hover { background: #e4405f; color: #fff; border-color: #e4405f; }
.social-links a.youtube:hover { background: #ff0000; color: #fff; border-color: #ff0000; }
.social-links a.twitter:hover { background: #000000; color: #fff; border-color: #000000; }

/* ===== FOOTER ===== */
.footer {
    background: #0f172a;
    color: rgba(255,255,255,0.7);
    padding: 2.5rem 0 1.2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.footer-brand .logo {
    color: #fff;
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    margin-bottom: 0.6rem;
}
.footer-brand .logo span { color: #fff; }
.footer-brand p { font-size: 0.9rem; max-width: 300px; }
.footer h4 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}
.footer a {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
    transition: color 0.2s;
}
.footer a:hover { color: #fff; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    font-size: 0.8rem;
}

/* ===== RESPONSIVE ===== */
@media (min-width: 768px) {
    .nav-links {
        display: flex !important;
        flex-direction: row;
        width: auto;
        background: transparent;
        border-top: none;
        padding: 0;
        margin: 0;
        gap: 1.8rem;
    }
    .nav-links a {
        padding: 0.3rem 0;
        background: transparent !important;
        font-size: 0.95rem;
    }
    .hamburger { display: none; }
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }
    .hero p { margin: 0 0 1.5rem 0; }
    .hero-actions { justify-content: flex-start; }
    .hero-stats { justify-content: flex-start; }
    .about-section .container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    .post-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.8rem;
    }
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 2.5rem;
    }
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    .live-section .section-header {
        flex-direction: row;
        align-items: center;
    }
    .news-item {
        flex-direction: row;
        align-items: flex-start;
        gap: 1rem;
    }
    .news-item .time {
        min-width: 70px;
        padding-top: 0.1rem;
    }
    .news-item .category {
        align-self: flex-start;
    }
    .social-links a { flex: 0 1 auto; }
    .feeds-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .feeds-grid {
        grid-template-columns: 1fr;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content { text-align: center; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero p { margin: 0 auto 1.5rem; }
}

@media (min-width: 992px) {
    .hero h1 { font-size: 2.8rem; }
    .news-feed { padding: 1.5rem; }
    .news-items { max-height: 460px; }
}

.btn, .hamburger, .nav-links a, .social-links a {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}