* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --mc-grass: #67C240;
    --mc-grass-dark: #55a034;
    --mc-grass-deep: #4a8c2e;
    --mc-stone: #9e9e9e;
    --mc-stone-dark: #808080;
    --mc-stone-deep: #6b6b6b;
    --mc-gold: #ffd700;
    --mc-gold-dark: #daa520;
    --mc-gold-deep: #b8860b;
    --mc-red: #e74c3c;
    --mc-red-dark: #c0392b;
    --mc-red-deep: #a93226;
    --mc-dirt: #8B5A2B;
    --mc-dirt-dark: #7a4e24;
    --mc-deep: #3c3c3c;
    --mc-dark: #222222;
    --mc-panel: #c6c6c6;
    --mc-panel-dark: #555555;
    --mc-diamond: #00bfff;
    --mc-emerald: #50c878;
    --mc-purple: #9b59b6;
    --mc-blue: #3498db;
    --mc-orange: #f39c12;
    --mc-pink: #ff6b9d;
}

body {
    font-family: 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif;
    line-height: 1.5;
    font-weight: 400;
    background-color: #1a1a2e;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 32px 32px;
    color: #fff;
    min-height: 100vh;
}

.font-pixel {
    font-family: 'Press Start 2P', 'PixelMplus10', 'Pixel Operator', 'VT323', 'Silkscreen', 'Courier New', monospace;
    font-weight: bold;
    letter-spacing: 1px;
}

.text-shadow-mc {
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.8);
}

.pixel-border {
    border: 4px solid #000;
    box-shadow:
        inset 3px 3px 0px rgba(255, 255, 255, 0.2),
        inset -3px -3px 0px rgba(0, 0, 0, 0.2),
        6px 6px 0px rgba(0, 0, 0, 0.3);
}

.pixelated {
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

.mc-btn {
    position: relative;
    padding: 12px 24px;
    font-weight: bold;
    font-size: 14px;
    color: #fff;
    border: 3px solid #000;
    background: linear-gradient(to bottom, #67C240 0%, #55a034 50%, #4a8c2e 100%);
    box-shadow:
        inset 2px 2px 0px rgba(255, 255, 255, 0.3),
        inset -2px -2px 0px rgba(0, 0, 0, 0.3),
        4px 4px 0px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: all 0.1s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mc-btn:hover {
    transform: translate(-1px, -1px);
    box-shadow:
        inset 2px 2px 0px rgba(255, 255, 255, 0.3),
        inset -2px -2px 0px rgba(0, 0, 0, 0.3),
        5px 5px 0px rgba(0, 0, 0, 0.5);
}

.mc-btn:active {
    transform: translate(2px, 2px);
    box-shadow:
        inset 2px 2px 0px rgba(0, 0, 0, 0.3),
        inset -2px -2px 0px rgba(255, 255, 255, 0.3),
        2px 2px 0px rgba(0, 0, 0, 0.5);
}

.mc-btn-stone {
    background: linear-gradient(to bottom, #9e9e9e 0%, #808080 50%, #6b6b6b 100%);
}

.mc-btn-gold {
    background: linear-gradient(to bottom, #ffd700 0%, #daa520 50%, #b8860b 100%);
    color: #3c3c3c;
}

.mc-btn-red {
    background: linear-gradient(to bottom, #e74c3c 0%, #c0392b 50%, #a93226 100%);
}

.mc-btn-small {
    padding: 6px 12px;
    font-size: 12px;
}

.mc-card {
    position: relative;
    background: linear-gradient(to bottom, #5d5d5d 0%, #4a4a4a 50%, #3d3d3d 100%);
    border: 3px solid #000;
    box-shadow:
        inset 3px 3px 0px rgba(255, 255, 255, 0.15),
        inset -3px -3px 0px rgba(0, 0, 0, 0.3),
        6px 6px 0px rgba(0, 0, 0, 0.4);
}

.mc-card-light {
    position: relative;
    background: linear-gradient(to bottom, #c6c6c6 0%, #a0a0a0 50%, #8b8b8b 100%);
    border: 3px solid #373737;
    box-shadow:
        inset 3px 3px 0px rgba(255, 255, 255, 0.3),
        inset -3px -3px 0px rgba(0, 0, 0, 0.2),
        5px 5px 0px rgba(0, 0, 0, 0.3);
}

.mc-panel {
    position: relative;
    background: #c6c6c6;
    border: 3px solid #373737;
    box-shadow:
        inset 4px 4px 0px rgba(255, 255, 255, 0.5),
        inset -4px -4px 0px rgba(55, 55, 55, 0.5);
}

.mc-panel-dark {
    position: relative;
    background: #555555;
    border: 3px solid #222222;
    box-shadow:
        inset 3px 3px 0px rgba(255, 255, 255, 0.1),
        inset -3px -3px 0px rgba(0, 0, 0, 0.3);
}

.grass-bg {
    background: linear-gradient(to bottom,
        #67C240 0%,
        #5ab035 15%,
        #5ab035 25%,
        #8B5A2B 26%,
        #7a4e24 100%);
}

.dirt-bg {
    background: repeating-linear-gradient(
        0deg,
        #8B5A2B,
        #8B5A2B 8px,
        #7a4e24 8px,
        #7a4e24 16px
    );
}

.stone-bg {
    background: repeating-linear-gradient(
        45deg,
        #8B8B8B,
        #8B8B8B 4px,
        #7a7a7a 4px,
        #7a7a7a 8px
    );
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.bg-mc-grass { background-color: #67C240; }
.bg-mc-grass-dark { background-color: #55a034; }
.bg-mc-stone { background-color: #9e9e9e; }
.bg-mc-gold { background-color: #ffd700; }
.bg-mc-dirt { background-color: #8B5A2B; }
.bg-mc-deep { background-color: #3c3c3c; }
.bg-mc-dark { background-color: #222222; }
.bg-mc-diamond { background-color: #00bfff; }
.bg-mc-orange { background-color: #f39c12; }
.bg-mc-blue { background-color: #3498db; }

.text-mc-grass { color: #67C240; }
.text-mc-grass-dark { color: #55a034; }
.text-mc-stone { color: #9e9e9e; }
.text-mc-gold { color: #ffd700; }
.text-mc-dirt { color: #8B5A2B; }
.text-mc-deep { color: #3c3c3c; }
.text-mc-white { color: #fff; }
.text-mc-gray { color: #8080a0; }
.text-mc-diamond { color: #00bfff; }
.text-mc-orange { color: #f39c12; }
.text-mc-red { color: #e74c3c; }
.text-mc-blue { color: #3498db; }

.border-mc-grass { border-color: #67C240; }
.border-mc-gold { border-color: #ffd700; }
.border-mc-black { border-color: #000; }
.border-mc-gray { border-color: #707070; }

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #3d3d3d;
}

::-webkit-scrollbar-thumb {
    background: #67C240;
    border: 2px solid #000;
}

::-webkit-scrollbar-thumb:hover {
    background: #55a034;
}

input[type="text"],
input[type="password"],
input[type="email"],
textarea,
select {
    width: 100%;
    padding: 12px;
    background: #3c3c3c;
    border: 3px solid #555555;
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    transition: all 0.2s ease;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #67C240;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #67C240;
}

.form-error {
    background: #4a2a2a;
    border: 2px solid #8a3a3a;
    color: #ff8080;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 4px;
}

.form-success {
    background: #2a4a2a;
    border: 2px solid #3a8a3a;
    color: #80ff80;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 4px;
}

.form-submit {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    justify-content: center;
}

.form-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 40px;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-4px);
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow:
            inset 2px 2px 0px rgba(255, 255, 255, 0.3),
            inset -2px -2px 0px rgba(0, 0, 0, 0.3),
            4px 4px 0px rgba(0, 0, 0, 0.5),
            0 0 20px rgba(103, 194, 64, 0.5);
    }
    50% {
        box-shadow:
            inset 2px 2px 0px rgba(255, 255, 255, 0.3),
            inset -2px -2px 0px rgba(0, 0, 0, 0.3),
            4px 4px 0px rgba(0, 0, 0, 0.5),
            0 0 40px rgba(103, 194, 64, 0.8);
    }
}

.animate-pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

.page-header {
    position: relative;
    padding: 80px 0 40px;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 32px 32px;
}

.page-header-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, #1e3a5f 0%, #0d1b2a 50%, #0b1623 100%);
}

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-header-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-header-title {
    font-family: 'Press Start 2P', monospace;
    font-size: 28px;
    color: #fff;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.8);
    margin-bottom: 8px;
}

.page-header-subtitle {
    color: #8080a0;
    font-size: 16px;
}

.reply-item {
    background: #3c3c3c;
    border: 3px solid #222222;
    padding: 20px;
    margin-bottom: 16px;
    position: relative;
    box-shadow:
        inset 2px 2px 0 rgba(255,255,255,0.1),
        inset -2px -2px 0 rgba(0,0,0,0.3);
}

.reply-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.reply-author {
    color: #ffd700;
    font-weight: bold;
    font-size: 14px;
}

.reply-time {
    color: #8080a0;
    font-size: 12px;
}

.reply-content {
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.reply-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.reply-actions button {
    background: none;
    border: none;
    color: #8080a0;
    cursor: pointer;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s;
}

.reply-actions button:hover {
    color: #67C240;
}

.nested-replies {
    margin-top: 16px;
    padding-left: 20px;
    border-left: 3px solid #67C240;
}

.nested-replies .reply-item {
    background: #323232;
    border-color: #1a1a1a;
}

.nested-reply-form {
    margin-top: 16px;
    padding: 16px;
    background: #323232;
    border: 3px solid #67C240;
}

.nested-reply-form textarea {
    width: 100%;
    padding: 12px;
    background: #2a2a2a;
    border: 3px solid #444444;
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    resize: vertical;
    margin-bottom: 12px;
}

.nested-reply-form textarea:focus {
    outline: none;
    border-color: #67C240;
}

.nested-reply-form .mc-btn {
    font-size: 12px;
    padding: 8px 16px;
}

.like-btn {
    background: none;
    border: none;
    color: #8080a0;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}

.like-btn:hover {
    color: #ffd700;
}

.like-btn.liked {
    color: #ffd700;
}

.like-btn-reply {
    background: none;
    border: none;
    color: #8080a0;
    cursor: pointer;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s;
}

.like-btn-reply:hover {
    color: #ffd700;
}

.like-btn-reply.liked {
    color: #ffd700;
}

.reply-form {
    background: #3c3c3c;
    border: 3px solid #222222;
    padding: 24px;
    margin-bottom: 24px;
}

.reply-form textarea {
    width: 100%;
    padding: 16px;
    background: #2a2a2a;
    border: 3px solid #444444;
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    resize: vertical;
    min-height: 100px;
    margin-bottom: 16px;
}

.reply-form textarea:focus {
    outline: none;
    border-color: #67C240;
}

.article-container {
    background: linear-gradient(to bottom, #5d5d5d 0%, #4a4a4a 50%, #3d3d3d 100%);
    border: 3px solid #000;
    box-shadow:
        inset 3px 3px 0 rgba(255,255,255,0.15),
        inset -3px -3px 0 rgba(0,0,0,0.3),
        6px 6px 0 rgba(0,0,0,0.4);
    padding: 32px;
    margin-bottom: 32px;
}

.article-title {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #8080a0;
    font-size: 13px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #555555;
}

.article-content {
    color: #fff;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.article-content img {
    max-width: 100%;
    height: auto;
    margin: 16px 0;
    border: 3px solid #000;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.3);
}

.article-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 16px;
    border-top: 1px solid #555555;
}

.post-category-tag {
    display: inline-block;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    border: 2px solid #000;
}

.post-category-tag.daily {
    background: linear-gradient(to bottom, #4CAF50 0%, #388E3C 50%, #2E7D32 100%);
}

.post-category-tag.qa {
    background: linear-gradient(to bottom, #FF9800 0%, #F57C00 50%, #E65100 100%);
}

.replies-section {
    margin-bottom: 32px;
}

.replies-section h3 {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-item {
    background: linear-gradient(to bottom, #5d5d5d 0%, #4a4a4a 50%, #3d3d3d 100%);
    border: 3px solid #000;
    box-shadow:
        inset 3px 3px 0 rgba(255,255,255,0.15),
        inset -3px -3px 0 rgba(0,0,0,0.3),
        6px 6px 0 rgba(0,0,0,0.4);
    padding: 24px;
    transition: all 0.2s;
}

.news-item:hover {
    border-color: #67C240;
}

.news-title {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 12px;
}

.news-title a {
    color: #fff;
    text-decoration: none;
}

.news-title a:hover {
    color: #67C240;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #8080a0;
    font-size: 12px;
    margin-bottom: 12px;
}

.news-excerpt {
    color: #8080a0;
    font-size: 14px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-images {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.news-images img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 3px solid #000;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.3);
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.pagination a,
.pagination span {
    padding: 10px 16px;
    background: #555555;
    border: 3px solid #222222;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
}

.pagination a:hover {
    background: #67C240;
    border-color: #4a8c2e;
}

.pagination span.current {
    background: #67C240;
    border-color: #4a8c2e;
}

.section-header {
    text-align: center;
    margin-bottom: 32px;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.title-icon {
    font-size: 28px;
}

.form-footer {
    text-align: center;
    margin-top: 20px;
    color: #8080a0;
}

.form-footer a {
    color: #67C240;
    text-decoration: none;
}

.form-footer a:hover {
    text-decoration: underline;
}

.grid-1 { grid-template-columns: 1fr; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Utility classes replacing Tailwind */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.flex-wrap { flex-wrap: wrap; }
.flex-col { flex-direction: column; }
.flex-1 { flex: 1; }
.flex-shrink-0 { flex-shrink: 0; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.gap-8 { gap: 32px; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-xs { font-size: 11px; }
.text-sm { font-size: 13px; }
.text-base { font-size: 15px; }
.text-lg { font-size: 18px; }
.text-xl { font-size: 20px; }
.text-2xl { font-size: 24px; }
.text-3xl { font-size: 30px; }
.text-5xl { font-size: 48px; }
.font-bold { font-weight: bold; }
.font-medium { font-weight: 500; }
.w-10 { width: 40px; }
.w-12 { width: 48px; }
.h-10 { height: 40px; }
.h-12 { height: 48px; }
.h-full { height: 100%; }
.w-full { width: 100%; }
.px-4 { padding-left: 16px; padding-right: 16px; }
.px-8 { padding-left: 32px; padding-right: 32px; }
.py-2 { padding-top: 8px; padding-bottom: 8px; }
.py-4 { padding-top: 16px; padding-bottom: 16px; }
.p-2 { padding: 8px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mt-3 { margin-top: 12px; }
.mt-8 { margin-top: 32px; }
.pt-8 { padding-top: 32px; }
.relative { position: relative; }
.absolute { position: absolute; }
.overflow-hidden { overflow: hidden; }
.cursor-pointer { cursor: pointer; }
.transition-all { transition: all 0.3s ease; }
.transition-colors { transition: color 0.2s, background-color 0.2s; }
.break-all { word-break: break-all; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.6; }
.text-white { color: #fff; }
.text-gray-300 { color: #c0c0c0; }
.text-gray-400 { color: #8080a0; }
.text-gray-500 { color: #666; }

/* Hover effects via CSS */
.hover-lift-card {
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.hover-lift-card:hover {
    transform: translateY(-4px);
    border-color: rgba(103, 194, 64, 0.5);
}

.hover-link {
    transition: color 0.2s, padding-left 0.2s;
}
.hover-link:hover {
    color: #fff;
    padding-left: 4px;
}

.hover-social {
    transition: transform 0.2s;
}
.hover-social:hover {
    transform: translateY(-2px);
}

/* Social icon style */
.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, #9e9e9e 0%, #808080 50%, #6b6b6b 100%);
    border: 3px solid #000;
    box-shadow:
        inset 2px 2px 0px rgba(255, 255, 255, 0.3),
        inset -2px -2px 0px rgba(0, 0, 0, 0.3),
        4px 4px 0px rgba(0, 0, 0, 0.5);
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s;
}
.social-icon:hover {
    transform: translateY(-2px);
}

/* Grid icon box (for server info icons etc) */
.icon-box {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, #9e9e9e 0%, #808080 50%, #6b6b6b 100%);
    border: 3px solid #000;
    box-shadow:
        inset 2px 2px 0px rgba(255, 255, 255, 0.3),
        inset -2px -2px 0px rgba(0, 0, 0, 0.3),
        4px 4px 0px rgba(0, 0, 0, 0.5);
}

/* Copy button style */
.copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    font-size: 12px;
    background: #67C240;
    color: #fff;
    border: 2px solid #000;
    cursor: pointer;
    transition: filter 0.2s;
}
.copy-btn:hover {
    filter: brightness(1.1);
}

/* Post card for index */
.post-card {
    cursor: pointer;
    transition: transform 0.3s ease;
}
.post-card:hover {
    transform: translateY(-4px);
}
.post-card:hover .post-card-title {
    color: #67C240;
}
.post-card:hover .post-card-date-box {
    transform: scale(1.1);
}

.post-card-title {
    transition: color 0.3s;
}
.post-card-date-box {
    transition: transform 0.3s;
}

/* Category active state */
.category-active {
    background: linear-gradient(to bottom, #67C240 0%, #55a034 50%, #4a8c2e 100%) !important;
    color: #fff !important;
}

/* Responsive grids */
@media (min-width: 768px) {
    .md-grid-2 { grid-template-columns: repeat(2, 1fr) !important; }
    .md-grid-3 { grid-template-columns: repeat(3, 1fr) !important; }
    .md-grid-4 { grid-template-columns: repeat(4, 1fr) !important; }
    .md-flex-row { flex-direction: row !important; }
    .md-flex { display: flex !important; }
    .md-block { display: block !important; }
    .md-hidden { display: none !important; }
    .md-text-3xl { font-size: 30px !important; }
    .md-text-5xl { font-size: 48px !important; }
}

@media (min-width: 1024px) {
    .lg-grid-3 { grid-template-columns: repeat(3, 1fr) !important; }
    .lg-grid-4 { grid-template-columns: repeat(4, 1fr) !important; }
    .lg-grid-sidebar { grid-template-columns: 1fr 300px !important; }
}

@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .article-container {
        padding: 20px;
    }
    
    .article-title {
        font-size: 20px;
    }
    
    .article-meta {
        flex-wrap: wrap;
        gap: 8px;
    }
}