/* Base Reset & Core Styles */
        :root {
            --primary-color: #1a73e8;
            --text-color: #202124;
            --bg-color: #ffffff;
            --sidebar-bg: #f8f9fa;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--bg-color);
            margin: 0;
            padding: 0;
        }
        a { color: var(--primary-color); text-decoration: none; }
        a:hover { text-decoration: underline; }
        
        /* Layout Structure */
        .container {
            display: grid;
            grid-template-columns: 1fr;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            gap: 30px;
        }
        .currentage{
   font-size: 30px;
   color: red;
}
        @media(min-width: 768px) {
            .container { grid-template-columns: 2fr 1fr; }
        }

        /* Header & Navigation */
        header { border-bottom: 1px solid #e0e0e0; padding: 20px 0; }
        .header-content { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 0 20px; }
        nav ul { list-style: none; display: flex; gap: 20px; margin: 0; padding: 0; }

        /* Main Content & Semantic Article Structure */
        main { min-width: 0; }
        article h1 { font-size: 2.5rem; line-height: 1.2; margin-bottom: 10px; }
        .meta-info { font-size: 0.9rem; color: #5f6368; margin-bottom: 20px; }
        .featured-image { width: 100%; height: auto; border-radius: 8px; margin-bottom: 20px; }
        article h2 { font-size: 1.8rem; margin-top: 30px; border-bottom: 1px solid #eee; padding-bottom: 5px; }
        article h3 { font-size: 1.4rem; margin-top: 20px; }
        p { margin-bottom: 20px; font-size: 1.1rem; }

        /* Sidebar Styling */
        aside { background-color: var(--sidebar-bg); padding: 20px; border-radius: 8px; height: fit-content; }
        .widget { margin-bottom: 30px; }
        .widget h3 { margin-top: 0; border-bottom: 2px solid var(--primary-color); padding-bottom: 5px; }
        .widget ul { list-style: none; padding: 0; }
        .widget li { margin-bottom: 10px; }

        /* Footer Styling */
        footer { background: #202124; color: #fff; text-align: center; padding: 20px 0; margin-top: 5px; }