body {
    font-family: 'Ramabhadra', sans-serif;
  }
  
  /* Desktop Navigation Menu */
  .desktop-nav {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .desktop-nav::-webkit-scrollbar {
    display: none;
  }
  
  .desktop-nav ul {
    padding: 8px 0;
    min-width: max-content;
    margin: 0 auto;
  }
  
  .desktop-nav ul li {
    display: flex;
    align-items: center;
  }
  
  .desktop-nav ul li a {
    font-size: 21px;
    font-weight: 400;
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    line-height: 1.6;
    padding: 4px 0;
  }
  
  .desktop-nav ul li a:hover {
    color: #FF0000;
  }
  
  .desktop-nav ul li a i {
    font-size: 21px;
  }
  
  /* News Section Styles */
  .news-section h2 {
    font-size: 24px;
    font-weight: 400;
    color: #FF0000;
    margin-bottom: 1rem;
    line-height: 1.5;
  }
  
  .news-section .news-list {
    border-top: 1px dotted #e5e7eb;
    padding-top: 0.5rem;
  }
  
  .news-section .news-item {
    padding-bottom: 0.5rem;
    border-bottom: 1px dotted #2e2e2e;
    display: flex;
    gap: 12px;
    align-items: flex-start;
  }
  
  .news-section .news-item:last-child {
    border-bottom: none;
  }
  
  .news-section .news-image {
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
  }
  
  .news-section .news-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 68px;
  }
  
  .news-section a {
    font-size: 18px;
    font-weight: 400;
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.6;
    margin-bottom: 4px;
  }
  
  .news-section a:hover {
    color: #FF0000;
  }
  
  .news-section .timestamp {
    font-size: 11px;
    color: #666;
    line-height: 1;
    display: block;
  }
  
  .political-news h3 {
    font-size: 24px;
    font-weight: 400;
    color: #FF0000;
    margin-bottom: 1rem;
    line-height: 1.5;
  }
  
  .political-news .news-item {
    border-bottom: 1px dotted #2e2e2e;
  }
  
  .political-news .news-item:last-child {
    border-bottom: none;
  }
  
  .political-news .news-content {
    display: flex;
    flex-direction: column;
  }
  
  .political-news a {
    font-size: 16px;
    font-weight: 400;
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.6;
  }
  
  .political-news a:hover {
    color: #FF0000;
  }
  
  .political-news .timestamp {
    font-size: 11px;
    color: #666;
    line-height: 1;
    margin-top: 2px;
  }
  
  /* Read More Button Styles */
  .read-more-btn {
    display: inline-block;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    border-radius: 4px;
    transition: all 0.2s ease;
    width: 100%;
    margin-top: 1rem;
  }
  
  .news-section .read-more-btn {
    background-color: #FF0000;
    color: white;
    border: 1px solid #FF0000;
  }
  
  .news-section .read-more-btn:hover {
    background-color: white;
    color: #FF0000;
  }
  
  .political-news .read-more-btn {
    background-color: #FF0000;
    color: white;
    border: 1px solid #FF0000;
  }
  
  .political-news .read-more-btn:hover {
    background-color: white;
    color: #FF0000;
  }
  
  /* Overlay for side menu */
  #overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    z-index: 40;
  }
  
  #overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  /* Side menu slide in */
  #side-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 100vh;
    background-color: #fff;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 50;
    overflow-y: auto;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
  }
  
  #side-menu.active {
    transform: translateX(0);
  }
  
  /* Menu button styles */
  #menu-btn {
    display: none;
  }
  
  @media (max-width: 639px) {
    #menu-btn {
      display: block;
    }
    
    .desktop-nav {
      display: none;
    }
  }
  
  /* Menu item styles */
  #side-menu a {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s ease;
  }
  
  #side-menu a:hover {
    background-color: #f3f4f6;
  }
  
  #side-menu i {
    width: 24px;
    margin-right: 12px;
    color: #4b5563;
  }
  
  /* Section headers in side menu */
  #side-menu .text-gray-500 {
    padding: 8px 16px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b7280;
    background-color: #f9fafb;
  }
  
  /* Media query for desktop view */
  @media (min-width: 640px) {
    #overlay, 
    #side-menu {
        display: none !important;
    }
  }