/* ==========================================================================
   AntiMicroX Global Stylesheet (Light Theme)
   ========================================================================== */

:root {
    --primary: #3b82f6;
    --primary-hover: #2563eb;
    --bg-dark: #0f172a;
    --bg-darker: #0b1120;
    --text-main: #334155;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --card-border: #e2e8f0;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
    line-height: 1.7;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

/* ============================================== */
/* NAVIGATION & GLASSMORPHISM                     */
/* ============================================== */
.navbar {
    background-color: rgba(15, 23, 42, 0.85) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 1rem 0;
    transition: all 0.3s ease;
}
.navbar-brand { 
    font-weight: 800; 
    color: #ffffff !important; 
    letter-spacing: -0.5px; 
}
.nav-link { 
    color: #cbd5e1 !important; 
    font-weight: 500; 
    font-size: 0.95rem; 
}
.nav-link:hover, .nav-link.active { 
    color: #ffffff !important; 
}

/* Language Dropdown */
.dropdown-menu {
    background-color: #1e293b;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}
.dropdown-item { 
    color: #cbd5e1; 
    font-size: 0.9rem; 
    font-weight: 500; 
}
.dropdown-item:hover { 
    background-color: var(--primary); 
    color: #ffffff; 
}

/* ============================================== */
/* ADVANCED HERO BANNER                           */
/* ============================================== */
.hero-banner {
    background: linear-gradient(-45deg, #0f172a, #1e293b, #0f172a, #172554);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    padding: 180px 0 100px;
    text-align: center;
    color: #ffffff;
    position: relative;
}

.hero-banner::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    opacity: 0.5;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-title {
    font-weight: 800;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 1.2rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

.btn-dl-primary {
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    background-color: var(--primary); 
    color: #ffffff !important; 
    text-decoration: none;
    font-weight: 800; 
    font-size: 1.15rem; 
    padding: 14px 40px; 
    border-radius: 12px;
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.5);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.btn-dl-primary:hover { 
    background-color: var(--primary-hover); 
    transform: translateY(-3px); 
    box-shadow: 0 15px 30px -5px rgba(59, 130, 246, 0.6); 
}

/* ============================================== */
/* INTRO SECTION                                  */
/* ============================================== */
.intro-section {
    background: #ffffff; 
    padding: clamp(30px, 5vw, 60px);
    border-radius: 24px; 
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.05);
    margin-top: -40px; 
    position: relative; 
    z-index: 10;
    border: 1px solid var(--card-border); 
    margin-bottom: 3rem;
}
.intro-section p { 
    font-size: 1.1rem; 
    color: var(--text-light); 
    margin-bottom: 1.5rem; 
}
.intro-section a { 
    color: var(--primary); 
    font-weight: 600; 
    text-decoration: none; 
}
.intro-section h2 {
    font-weight: 800;
    color: var(--bg-dark);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}
.intro-section ul { 
    list-style: none; 
    padding: 0; 
    background: #f8fafc; 
    padding: 20px; 
    border-radius: 12px; 
    border: 1px solid var(--card-border); 
    margin-bottom: 2rem;
}
.intro-section ul li { 
    padding: 8px 10px 8px 30px; 
    position: relative; 
    font-weight: 500; 
}
.intro-section ul li::before { 
    content: "•"; 
    position: absolute; 
    left: 10px; 
    color: var(--primary); 
    font-weight: 800; 
    font-size: 1.2rem;
    line-height: 1;
}

/* ============================================== */
/* MULTI-COLUMN LISTS                             */
/* ============================================== */
.multi-col-list {
    column-count: 2;
    column-gap: 40px;
}
@media (max-width: 768px) {
    .multi-col-list { column-count: 1; }
}

/* ============================================== */
/* 3-COLUMN DOWNLOAD SECTION                      */
/* ============================================== */
.download-section {
    margin: 4rem 0;
    background: #ffffff;
    padding: clamp(30px, 5vw, 50px);
    border-radius: 24px;
    border: 1px solid var(--card-border);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
}
.download-section h2 {
    font-weight: 800; color: var(--bg-dark); font-size: 2.2rem; margin-bottom: 0.5rem; text-align: center;
}
.download-section > p {
    text-align: center; color: var(--text-light); margin-bottom: 3rem; font-size: 1.1rem;
}
.os-card {
    background: #f8fafc; border: 1px solid var(--card-border); border-radius: 16px;
    padding: 30px 20px; text-align: center; height: 100%; transition: all 0.3s ease;
    display: flex; flex-direction: column;
}
.os-card:hover {
    background: #ffffff; border-color: var(--primary);
    box-shadow: 0 15px 30px -10px rgba(59, 130, 246, 0.15); transform: translateY(-5px);
}
.os-icon { font-size: 3rem; margin-bottom: 15px; color: var(--text-main); }
.os-card:hover .os-icon { color: var(--primary); }
.os-card h3 { font-size: 1.5rem; font-weight: 800; color: var(--bg-dark); margin-bottom: 5px; }
.os-card p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #e2e8f0; }

.file-link {
    display: flex; align-items: center; justify-content: space-between;
    background: #ffffff; border: 1px solid #e2e8f0; padding: 12px 15px;
    border-radius: 8px; margin-bottom: 10px; text-decoration: none; color: var(--text-main);
    font-weight: 600; font-size: 0.9rem; transition: all 0.2s; text-align: left;
}
.file-link span.file-size { color: var(--text-light); font-weight: 500; font-size: 0.8rem; }
.file-link:hover { background: var(--primary); border-color: var(--primary); color: #ffffff; }
.file-link:hover span.file-size { color: rgba(255, 255, 255, 0.8); }

/* ============================================== */
/* FEATURE CARDS (GRID)                           */
/* ============================================== */
.features-section { margin-bottom: 4rem; }
.features-section h2 { font-weight: 800; font-size: 2.2rem; text-align: center; margin-bottom: 3rem; color: var(--bg-dark); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.feature-card { background: #fff; padding: 25px; border-radius: 16px; border: 1px solid var(--card-border); box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05); transition: transform 0.2s; }
.feature-card:hover { transform: translateY(-5px); border-color: var(--primary); }
.feature-card h3 { font-weight: 700; font-size: 1.2rem; color: var(--bg-dark); margin-bottom: 1rem; }
.feature-card p { font-size: 0.95rem; color: var(--text-light); margin: 0; }

/* ============================================== */
/* SYSTEM REQUIREMENTS                            */
/* ============================================== */
.system-req-section { margin-bottom: 4rem; }
.system-req-section h2 { font-weight: 800; font-size: 2.2rem; text-align: center; color: var(--bg-dark); margin-bottom: 1rem; }
.req-intro { text-align: center; color: var(--text-light); max-width: 800px; margin: 0 auto 3rem auto; font-size: 1.1rem; }
.req-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-bottom: 2rem;}
.req-card { background: #ffffff; padding: 30px; border-radius: 16px; border: 1px solid var(--card-border); box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05); }
.req-icon { margin-bottom: 15px; }
.req-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 1rem; color: var(--bg-dark); }
.req-card ul { padding-left: 20px; color: var(--text-light); }
.req-card ul li { margin-bottom: 8px; }
.install-notes-box { background: #eff6ff; border: 1px solid #bfdbfe; border-radius: 12px; padding: 25px; color: #1e3a8a; }
.install-notes-box h4 { font-weight: 700; margin-bottom: 15px; font-size: 1.1rem; }

/* ============================================== */
/* WHY CHOOSE / ADVANTAGES                        */
/* ============================================== */
.why-section { background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%); padding: 60px 40px; border-radius: 24px; margin-bottom: 4rem; border: 1px solid #bfdbfe; }
.why-section h2 { font-weight: 800; color: #1e3a8a; font-size: 2.2rem; margin-bottom: 1.5rem; text-align: center; }
.why-section > p { text-align: center; font-size: 1.1rem; color: #3b82f6; max-width: 800px; margin: 0 auto 3rem auto; font-weight: 500;}
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; align-items: stretch; }
@media (max-width: 991px) { .why-grid { grid-template-columns: 1fr; } }
.why-card { background: rgba(255,255,255,0.7); backdrop-filter: blur(5px); padding: 30px; border-radius: 16px; border-left: 5px solid #2563eb; height: 100%; }
.why-card h3 { font-size: 1.2rem; font-weight: 700; color: #1e3a8a; }
.why-card p { color: #475569; margin: 0; }

.advantages-section { margin-bottom: 4rem; }
.advantages-section h2 { font-weight: 800; color: var(--bg-dark); font-size: 2.2rem; margin-bottom: 2rem; text-align: center; }
.adv-list { display: flex; flex-direction: column; gap: 1.5rem; }
.adv-card { background: #ffffff; padding: 25px; border-radius: 12px; border: 1px solid var(--card-border); box-shadow: 0 4px 10px rgba(0,0,0,0.02); transition: transform 0.2s; }
.adv-card:hover { transform: translateX(4px); border-color: #cbd5e1; }
.adv-card h3 { font-size: 1.25rem; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.adv-card p { color: var(--text-light); margin: 0; }

/* ============================================== */
/* RECENT UPDATES TIMELINE (Fixed Star Issue)     */
/* ============================================== */
.recent-updates-section {
    padding: 60px 40px;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid var(--card-border);
    margin-bottom: 4rem;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
}
.updates-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}
.updates-timeline::before {
    content: ''; position: absolute; top: 0; left: 20px; height: 100%; width: 2px; background: #e2e8f0;
}
.timeline-item {
    position: relative; margin-bottom: 40px; padding-left: 50px;
}
.timeline-marker {
    position: absolute; left: 11px; top: 5px; width: 20px; height: 20px;
    background: #fff; border: 4px solid var(--primary); border-radius: 50%; z-index: 2;
}
.timeline-content {
    background: #f8fafc; padding: 25px; border-radius: 16px; border: 1px solid var(--card-border); transition: all 0.3s ease;
}
.timeline-item:hover .timeline-content {
    background: #ffffff; box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05); border-color: var(--primary);
}
.timeline-date {
    font-size: 0.85rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px;
}
.timeline-details {
    color: var(--text-main); font-size: 0.95rem; line-height: 1.6;
}
.badge-latest {
    background: #10b981; color: white; font-size: 0.7rem; padding: 4px 10px; border-radius: 50px;
    vertical-align: middle; margin-left: 10px; text-transform: uppercase; font-weight: 800;
}
.btn-timeline-dl {
    display: inline-flex; align-items: center; padding: 8px 20px; background: var(--bg-dark);
    color: white !important; border-radius: 8px; text-decoration: none !important; font-weight: 600;
    font-size: 0.9rem; transition: 0.2s;
}
.btn-timeline-dl:hover {
    background: var(--primary); transform: translateY(-2px);
}
.btn-view-history {
    display: inline-flex; align-items: center; color: var(--primary); font-weight: 700; text-decoration: none; font-size: 1.1rem; transition: 0.2s;
}
.btn-view-history:hover { color: var(--bg-dark); }

/* ============================================== */
/* REVIEWS & RATINGS                              */
/* ============================================== */
.reviews-section { margin-bottom: 4rem; }
.reviews-header { text-align: center; margin-bottom: 3rem; }
.reviews-header h2 { font-weight: 800; color: var(--bg-dark); font-size: 2.2rem; }
.reviews-header p { color: var(--text-light); font-size: 1.1rem; }
.overall-rating-box { display: flex; flex-direction: column; align-items: center; gap: 5px; margin-top: 15px; }
.rating-score { font-size: 3rem; font-weight: 800; color: var(--bg-dark); line-height: 1; }
.rating-stars-main { color: #fbbf24; width: 120px; display: flex; gap: 2px; }
.rating-count { font-size: 0.85rem; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; }

.reviews-grid { column-count: 3; column-gap: 20px; }
@media (max-width: 991px) { .reviews-grid { column-count: 2; } }
@media (max-width: 768px) { .reviews-grid { column-count: 1; } }

.review-card {
    background: #ffffff; padding: 25px; border-radius: 16px; border: 1px solid var(--card-border);
    margin-bottom: 20px; break-inside: avoid; display: inline-block; width: 100%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02); transition: transform 0.2s;
}
.review-card:hover { transform: translateY(-3px); border-color: #cbd5e1; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05); }
.rc-stars { color: #fbbf24; font-size: 1.1rem; letter-spacing: 1px; margin-bottom: 10px; }
.rc-title { font-size: 1.1rem; font-weight: 700; color: var(--bg-dark); margin-bottom: 10px; }
.rc-text { font-size: 0.95rem; color: var(--text-main); margin-bottom: 15px; }
.rc-meta { display: flex; justify-content: space-between; align-items: center; padding-top: 15px; font-size: 0.85rem; color: var(--text-light); }
.rc-author { font-weight: 700; color: var(--bg-dark); }
.rc-votes { font-weight: 600; }

/* ============================================== */
/* FAQ SECTION                                    */
/* ============================================== */
.faq-section { margin-bottom: 4rem; }
.faq-section h2 { font-weight: 800; color: var(--bg-dark); font-size: 2.2rem; margin-bottom: 2rem; text-align: center; }
.faq-card { background: #ffffff; padding: 25px; border-radius: 12px; border: 1px solid var(--card-border); margin-bottom: 15px; box-shadow: 0 4px 6px rgba(0,0,0,0.02); transition: all 0.2s; display: block; }
.faq-card:hover { border-color: #cbd5e1; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05); }
.faq-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.faq-card p { color: var(--text-light); margin: 0; font-size: 1rem; }

/* ============================================== */
/* SOCIAL PILLS                                   */
/* ============================================== */
.social-connection-section {
    background: #ffffff; padding: clamp(30px, 5vw, 50px); border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.05); margin-bottom: 4rem; border: 1px solid var(--card-border);
}
.social-connection-section h2 { font-weight: 800; color: var(--bg-dark); font-size: 2.2rem; margin-bottom: 0.5rem; text-align: center;}
.social-pill-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; align-items: center; max-width: 900px; margin: 0 auto; }
.social-pill {
    background: #f8fafc; color: var(--text-main); font-weight: 600; font-size: 0.95rem;
    padding: 10px 24px; border-radius: 50px; text-decoration: none; border: 1px solid var(--card-border); transition: all 0.3s ease;
}
.social-pill:hover {
    background: var(--primary); color: #ffffff; border-color: var(--primary);
    box-shadow: 0 8px 15px -3px rgba(59, 130, 246, 0.3); transform: translateY(-3px);
}

/* ============================================== */
/* SAFE ADVERTISEMENTS & FOOTER                   */
/* ============================================== */
.ad-container { 
    min-height: 280px; background: #f1f5f9; border: 1px dashed #cbd5e1; 
    border-radius: 16px; display: flex; align-items: center; justify-content: center; 
    position: relative; margin: 3rem 0; overflow: hidden; 
}
.ad-container::before { 
    content: "Advertisement"; color: #94a3b8; font-size: 0.75rem; 
    text-transform: uppercase; letter-spacing: 1.5px; position: absolute; font-weight: 600; 
}
.ad-container ins { z-index: 1; width: 100%; text-align: center; }

footer { background-color: var(--bg-darker); padding: 50px 0 30px; }
footer a { color: #94a3b8; text-decoration: none; font-weight: 500; }
footer a:hover { color: #ffffff; }

/* ============================================== */
/* REVIEWS & RATINGS (FIXED STARS)                */
/* ============================================== */
.reviews-section { margin-bottom: 4rem; }
.reviews-header { text-align: center; margin-bottom: 3rem; }
.reviews-header h2 { font-weight: 800; color: var(--bg-dark); font-size: 2.2rem; }
.reviews-header p { color: var(--text-light); font-size: 1.1rem; }

/* Fixed Overall Rating Alignment */
.overall-rating-box { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 8px; /* Increased gap slightly */
    margin-top: 15px; 
}
.rating-score { 
    font-size: 3.5rem; /* Make the number slightly larger */
    font-weight: 800; 
    color: var(--bg-dark); 
    line-height: 1; 
}

/* Fixed the 5 SVGs in a row so they don't break */
.rating-stars-main { 
    color: #fbbf24; 
    display: flex; 
    gap: 4px; 
    align-items: center;
    justify-content: center; /* Center the stars */
}
/* Force the SVG stars to stay small */
.rating-stars-main svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0; /* Prevent them from shrinking or growing weirdly */
}

.rating-count { 
    font-size: 0.85rem; 
    font-weight: 600; 
    color: var(--text-light); 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    margin-top: 5px;
}

/* Review Cards Grid */
.reviews-grid { column-count: 3; column-gap: 20px; }
@media (max-width: 991px) { .reviews-grid { column-count: 2; } }
@media (max-width: 768px) { .reviews-grid { column-count: 1; } }

.review-card {
    background: #ffffff; padding: 25px; border-radius: 16px; border: 1px solid var(--card-border);
    margin-bottom: 20px; break-inside: avoid; display: inline-block; width: 100%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02); transition: transform 0.2s;
}
.review-card:hover { transform: translateY(-3px); border-color: var(--primary); box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05); }

/* Star text inside individual cards */
.rc-stars { 
    color: #fbbf24; 
    font-size: 1.2rem; 
    letter-spacing: 2px; 
    margin-bottom: 12px; 
}
.rc-title { font-size: 1.1rem; font-weight: 700; color: var(--bg-dark); margin-bottom: 10px; }
.rc-text { font-size: 0.95rem; color: var(--text-main); margin-bottom: 15px; }
.rc-meta { display: flex; justify-content: space-between; align-items: center; padding-top: 15px; font-size: 0.85rem; color: var(--text-light); }
.rc-author { font-weight: 700; color: var(--bg-dark); }
.rc-votes { font-weight: 600; }

/* ============================================== */
/* RECENT UPDATES TIMELINE (Fixed Marker)         */
/* ============================================== */

/* Container for the whole section */
.recent-updates-section {
    padding: 60px 40px;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid var(--card-border);
    margin-bottom: 4rem;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
}

.recent-updates-section h2 {
    font-weight: 800;
    color: var(--bg-dark);
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

/* Timeline Wrapper */
.updates-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

/* The vertical line running down the timeline */
.updates-timeline::before {
    content: ''; 
    position: absolute; 
    top: 0; 
    left: 20px; 
    height: 100%; 
    width: 2px; 
    background: #e2e8f0;
}

/* Individual timeline row */
.timeline-item {
    position: relative; 
    margin-bottom: 40px; 
    padding-left: 50px;
}

/* The Marker (The "Dot" - Fixed so it isn't a star or broken shape) */
.timeline-marker {
    position: absolute; 
    left: 11px; /* Centers the dot over the line */
    top: 5px; 
    width: 20px; 
    height: 20px;
    background: #ffffff; 
    border: 4px solid var(--primary); 
    border-radius: 50%; /* Forces it to be a perfect circle */
    z-index: 2;
}

/* Content Box inside the timeline */
.timeline-content {
    background: #f8fafc; 
    padding: 25px; 
    border-radius: 16px; 
    border: 1px solid var(--card-border); 
    transition: all 0.3s ease;
}

/* Hover effect for the content box */
.timeline-item:hover .timeline-content {
    background: #ffffff; 
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05); 
    border-color: var(--primary);
}

/* Date text styling */
.timeline-date {
    font-size: 0.85rem; 
    font-weight: 700; 
    color: var(--text-light); 
    text-transform: uppercase; 
    letter-spacing: 1px;
}

/* Details text inside the card */
.timeline-details {
    color: var(--text-main); 
    font-size: 0.95rem; 
    line-height: 1.6;
}

/* "Latest" Green Badge */
.badge-latest {
    background: #10b981; 
    color: white; 
    font-size: 0.7rem; 
    padding: 4px 10px; 
    border-radius: 50px;
    vertical-align: middle; 
    margin-left: 10px; 
    text-transform: uppercase; 
    font-weight: 800;
}

/* Small Download Button inside the timeline */
.btn-timeline-dl {
    display: inline-flex; 
    align-items: center; 
    padding: 8px 20px; 
    background: var(--bg-dark);
    color: white !important; 
    border-radius: 8px; 
    text-decoration: none !important; 
    font-weight: 600;
    font-size: 0.9rem; 
    transition: 0.2s;
}

.btn-timeline-dl:hover {
    background: var(--primary); 
    transform: translateY(-2px);
}

/* "View Full Version History" Button at the bottom */
.btn-view-history {
    display: inline-flex; 
    align-items: center; 
    color: var(--primary); 
    font-weight: 700; 
    text-decoration: none; 
    font-size: 1.1rem; 
    transition: 0.2s;
}

.btn-view-history:hover { 
    color: var(--bg-dark); 
}

/* Responsive fix for mobile */
@media (max-width: 768px) {
    .recent-updates-section { padding: 30px 20px; }
}