  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      background: #f8fafc;
      color: #1e293b;
      line-height: 1.6;
    }
    
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    /* Header */
    .header {
      background: #fff;
      box-shadow: 0 1px 3px rgba(0,0,0,0.1);
      position: sticky;
      top: 0;
      z-index: 100;
    }
    
    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 0;
    }
    
    .logo {
      font-size: 1.5rem;
      font-weight: 700;
      color: #2563eb;
      text-decoration: none;
    }
    
    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }
    
    .nav-links a {
      text-decoration: none;
      color: #64748b;
      font-weight: 500;
      transition: color 0.3s;
    }
    
    .nav-links a:hover {
      color: #2563eb;
    }
    
    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 1.5rem;
      color: #64748b;
      cursor: pointer;
      padding: 0.5rem;
    }
    
    .mobile-menu-toggle:hover {
      color: #2563eb;
    }
    
    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 999;
    }
    
    .mobile-menu {
      display: none;
      position: fixed;
      top: 0;
      right: -100%;
      width: 280px;
      height: 100%;
      background: #fff;
      z-index: 1000;
      transition: right 0.3s ease;
      padding: 2rem 0;
      box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    }
    
    .mobile-menu.active {
      right: 0;
    }
    
    .mobile-menu-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 1.5rem;
      margin-bottom: 2rem;
      border-bottom: 1px solid #e2e8f0;
      padding-bottom: 1rem;
    }
    
    .mobile-menu-close {
      background: none;
      border: none;
      font-size: 1.5rem;
      color: #64748b;
      cursor: pointer;
      padding: 0.5rem;
    }
    
    .mobile-menu-links {
      list-style: none;
    }
    
    .mobile-menu-links li {
      margin: 0;
    }
    
    .mobile-menu-links a {
      display: block;
      padding: 1rem 1.5rem;
      text-decoration: none;
      color: #1e293b;
      font-weight: 500;
      border-bottom: 1px solid #f1f5f9;
      transition: all 0.3s;
    }
    
    .mobile-menu-links a:hover {
      background: #f8fafc;
      color: #2563eb;
      padding-left: 2rem;
    }
    
    .mobile-menu-links i {
      margin-right: 0.75rem;
      width: 20px;
      text-align: center;
    }
    
    /* Main Content */
    .main {
      display: grid;
      grid-template-columns: 1fr 300px;
      gap: 2rem;
      margin: 2rem 0;
    }
    
    .content {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 1px 3px rgba(0,0,0,0.1);
      overflow: hidden;
    }
    
    .content-header {
      padding: 1.5rem;
      border-bottom: 1px solid #e2e8f0;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
    }
    
    .content-title {
      font-size: 1.5rem;
      font-weight: 600;
      margin: 0;
    }
    
    .articles {
      padding: 1.5rem;
    }
    
    .article-card {
      padding: 1.5rem 0;
      border-bottom: 1px solid #e2e8f0;
      transition: transform 0.2s;
    }
    
    .article-card:last-child {
      border-bottom: none;
    }
    
    .article-card:hover {
      transform: translateY(-2px);
    }
    
    .article-title {
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }
    
    .article-title a {
      text-decoration: none;
      color: #1e293b;
      transition: color 0.3s;
    }
    
    .article-title a:hover {
      color: #2563eb;
    }
    
    .article-excerpt {
      color: #64748b;
      margin-bottom: 1rem;
      line-height: 1.6;
    }
    
    .article-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 0.875rem;
      color: #94a3b8;
    }
    
    .read-more {
      background: #2563eb;
      color: white;
      padding: 0.5rem 1rem;
      border-radius: 6px;
      text-decoration: none;
      font-size: 0.875rem;
      font-weight: 500;
      transition: background 0.3s;
    }
    
    .read-more:hover {
      background: #1d4ed8;
      color: white;
    }
    
    /* Sidebar */
    .sidebar {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    
    .widget {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 1px 3px rgba(0,0,0,0.1);
      overflow: hidden;
    }
    
    .widget-header {
      padding: 1rem 1.5rem;
      background: #f1f5f9;
      border-bottom: 1px solid #e2e8f0;
      font-weight: 600;
    }
    
    .widget-content {
      padding: 1.5rem;
    }
    
    /* Pagination */
    .pagination {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      margin: 2rem 0;
    }
    
    .page-btn {
      padding: 0.5rem 1rem;
      border: 1px solid #e2e8f0;
      background: #fff;
      color: #64748b;
      text-decoration: none;
      border-radius: 6px;
      font-weight: 500;
      transition: all 0.3s;
    }
    
    .page-btn:hover, .page-btn.active {
      background: #2563eb;
      color: white;
      border-color: #2563eb;
    }
    
    .page-btn:disabled {
      opacity: 0.5;
      cursor: not-allowed;
    }
    
    /* Load More */
    .load-more {
      text-align: center;
      margin: 2rem 0;
    }
    
    .load-more-btn {
      background: #f1f5f9;
      color: #64748b;
      padding: 1rem 2rem;
      border: none;
      border-radius: 8px;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.3s;
    }
    
    .load-more-btn:hover {
      background: #e2e8f0;
    }
    
    /* Footer */
    .footer {
      background: #1e293b;
      color: #94a3b8;
      text-align: center;
      padding: 2rem 0;
      margin-top: 3rem;
    }
    
    /* Responsive */
    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }
      
      .mobile-menu-toggle {
        display: block;
      }
      
      .mobile-menu-overlay.active,
      .mobile-menu {
        display: block;
      }
      
      .main {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
      
      .container {
        padding: 0 15px;
      }
      
      .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
      }
      
      .pagination {
        flex-wrap: wrap;
      }
    }
    
    @media (max-width: 480px) {
      .article-card {
        padding: 1rem 0;
      }
      
      .article-title {
        font-size: 1.1rem;
      }
      
      .articles, .content-header {
        padding: 1rem;
      }
      
      .mobile-menu {
        width: 100%;
        right: -100%;
      }
      
      .pagination .page-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
      }
    }
    
    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .article-card {
      animation: fadeInUp 0.5s ease forwards;
    }
    
    .article-card.hidden {
      display: none;
    }
    
    /* Ad Styles */
    .ad-container {
      text-align: center;
      margin: 1.5rem 0;
      padding: 1rem;
      background: #f8fafc;
      border-radius: 8px;
      border: 1px solid #e2e8f0;
    }
    
    /* Prevent body scroll when mobile menu is open */
    body.mobile-menu-open {
      overflow: hidden;
    }