
    * {
      font-family: 'Hind', 'Poppins', sans-serif;
    }
    body {
      background: #f8fafc;
      overflow-x: hidden;
    }
    .news-card {
      transition: all 0.25s ease-in-out;
    }
    .news-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 25px -12px rgba(0, 0, 0, 0.15);
    }
    .loading-spinner {
      border: 3px solid #e2e8f0;
      border-top: 3px solid #dc2626;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      animation: spin 0.8s linear infinite;
    }
    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }
    .category-active {
      background-color: #b91c1c !important;
      color: white !important;
      box-shadow: 0 2px 8px rgba(185, 28, 28, 0.3);
    }
    .category-inactive {
      background-color: #f1f5f9 !important;
      color: #1e293b !important;
      transition: all 0.2s;
    }
    .category-inactive:hover {
      background-color: #e2e8f0 !important;
    }
    .category-btn {
      transition: all 0.2s ease;
      cursor: pointer;
      user-select: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      white-space: nowrap;
    }
    .mobile-menu-btn {
      transition: all 0.2s ease;
    }
    .mobile-dropdown {
      transition: all 0.3s ease;
      transform-origin: top;
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      visibility: hidden;
    }
    .mobile-dropdown.open {
      max-height: 500px;
      opacity: 1;
      visibility: visible;
    }
    ::-webkit-scrollbar {
      width: 6px;
    }
    ::-webkit-scrollbar-track {
      background: #e2e8f0;
    }
    ::-webkit-scrollbar-thumb {
      background: #dc2626;
      border-radius: 12px;
    }
    .max-w-news {
      max-width: 1280px;
    }
    .splash-screen {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #991b1b 0%, #7f1a1a 50%, #4c1d1d 100%);
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
      transform: translateY(0);
    }
    .splash-screen.slide-up {
      transform: translateY(-100%);
    }
    .splash-content {
      text-align: center;
      animation: fadeInUp 1s ease-out;
    }
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    .mountain-icon {
      animation: float 3s ease-in-out infinite;
    }
    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-15px); }
    }
    .lang-toggle {
      background: linear-gradient(135deg, #dc2626, #b91c1c);
      box-shadow: 0 4px 12px rgba(185, 28, 28, 0.3);
      transition: all 0.3s ease;
    }
    .lang-toggle:hover {
      transform: scale(1.05);
      box-shadow: 0 6px 16px rgba(185, 28, 28, 0.4);
    }
    .main-content {
      opacity: 0;
      transition: opacity 0.5s ease-in-out;
    }
    .main-content.visible {
      opacity: 1;
    }
    .category-icon {
      font-size: 1rem;
      display: inline-block;
      width: 24px;
      text-align: center;
    }
    .logo-container {
      position: relative;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .logo-svg {
      width: 48px;
      height: 48px;
      filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
      transition: transform 0.3s ease;
    }
    .logo-svg:hover {
      transform: scale(1.05);
    }
    .logo-text {
      line-height: 1.2;
    }
    @media (max-width: 768px) {
      .logo-svg {
        width: 36px;
        height: 36px;
      }
    }
    .desktop-category-bar {
      transition: transform 0.3s ease-in-out, opacity 0.2s ease;
      transform: translateY(0);
      opacity: 1;
    }
    .desktop-category-bar.hide {
      transform: translateY(-100%);
      opacity: 0;
      pointer-events: none;
    }
    /* Hide loading container completely when not in use */
    .hidden-container {
      display: none !important;
    }