:root {
    --primary-color: #5120E7;
    --dark-bg: #111111;
    --card-bg: #1E1E1E;
    --tag-bg: #252525;
    --text-light: #FFFFFF;
    --text-muted: #999999;
    --text-dark-muted: #666666;
  }
  
  body {
    background-color: var(--dark-bg);
    color: var(--text-light);
    font-family: "Manrope", sans-serif !important;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
  }

  .baloo-paaji {
    font-family: "Baloo Paaji 2", sans-serif !important;
  }

  .btn {
    min-height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
  }

  .text-custom-muted {
    color: #DEDEDE !important;
    opacity: 0.53;
  }
  
  /* Override Bootstrap container max-width only for large screens */
  @media (min-width: 1200px) {
    .container {
      max-width: 1444px !important;
    }
  }
  
  .navbar-brand {
    font-style: italic;
    font-weight: 300;
    font-size: 1.5rem;
  }
  
  .nav-link {
    color: var(--text-light);
    margin-left: 2rem;
    font-size: 0.9rem;
  }
  
  .nav-link:hover {
    color: var(--text-muted);
  }
  
  .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .btn-primary:hover {
    background-color: #5A2EE0;
    border-color: #5A2EE0;
  }
  
  .hero-bg-text {
    font-family: 'Bebas Neue', sans-serif;
    color: #1A1A1A;
    font-size: 280px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    user-select: none;
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
  }
  
  .section-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
  }
  
  .card {
    background-color: var(--card-bg);
    border: none;
    border-radius: 8px;
  }
  
  .tag {
    background-color: var(--tag-bg);
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    border-radius: 4px;
  }
  
  .view-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
  }
  
  .view-link:hover {
    color: var(--text-light);
  }
  
  .pagination-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #555;
    display: inline-block;
    margin: 0 3px;
  }
  
  .pagination-dot.active {
    background-color: #fff;
  }
  
  .social-icon {
    color: var(--text-dark-muted);
    font-size: 1.5rem;
    margin: 0 1.5rem;
  }
  
  .social-icon:hover {
    color: var(--text-light);
  }
  
  .footer-text {
    color: var(--text-dark-muted);
    font-size: 0.875rem;
  }
  
  .text-muted {
    color: var(--text-muted) !important;
  }

  .hero-content {
    height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .navbar-nav li a {
    margin-left: 2rem;
    border-radius: 0px;
    height: 81px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .fs-56 {
    font-size: 56px;
  }
  
  @media (max-width: 768px) {
    .hero-bg-text {
      font-size: 180px;
    }

    .hero-content {
      height: 500px;
    }

    .fs-56 {
      font-size: 36px;
    }
  }