
  :root {
    --primary: #c50e19;
    --secondary: #376cb8;
    --accent: #2a5a9a;
    --dark: #1A1A2E;
    --light: #F7F7F7;
  }

  a:visited {
    color: var(--light) !important;
  }

  /* Page Header */
  .page-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInDown 1s ease-out;
  }

  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-30px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .breadcrumb {
    font-size: 0.9rem;
    color: rgba(247, 247, 247, 0.6);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
  }

  .breadcrumb a {
    color: var(--primary);
    text-decoration: none;
  }

  .page-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 5rem;
    line-height: 1;
    color: var(--light);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
  }

  .page-title .highlight {
    color: var(--primary);
  }

  .page-subtitle {
    font-size: 1.3rem;
    color: rgba(247, 247, 247, 0.8);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
  }

  /* Featured Post */
  .featured-post {
    margin-bottom: 4rem;
    animation: fadeIn 1s ease-out 0.3s backwards;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  .featured-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    transition: all 0.4s ease;
  }

  .featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(197, 14, 25, 0.3);
    border-color: var(--primary);
  }

  .featured-image {
    position: relative;
    overflow: hidden;
    min-height: 400px;
  }

  .featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .featured-card:hover .featured-image img {
    transform: scale(1.1);
  }

  .featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(197, 14, 25, 0.4);
  }

  .featured-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .featured-category {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
  }

  .featured-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    color: var(--light);
    margin-bottom: 1rem;
    letter-spacing: 1px;
    line-height: 1.2;
  }

  .featured-excerpt {
    color: rgba(247, 247, 247, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
  }

  .featured-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    color: rgba(247, 247, 247, 0.6);
    font-size: 0.9rem;
  }

  .meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .featured-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    align-self: flex-start;
  }

  .featured-link:hover {
    background: #a50c15;
    transform: translateX(5px);
  }

  /* Category Filters */
  .category-filters {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeIn 1s ease-out 0.5s backwards;
  }

  .category-filter {
    padding: 0.8rem 1.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--light);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
  }

  .category-filter:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    transform: translateY(-2px);
  }

  .category-filter.active {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 5px 20px rgba(197, 14, 25, 0.4);
  }

  /* Blog Grid */
  .blog-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
  }

  .blog-posts {
    display: grid;
    gap: 2rem;
    align-self: start;
  }

  /* Post Card */
  .post-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 300px 1fr;
    transition: all 0.4s ease;
    animation: fadeInUp 1s ease-out backwards;
  }

  .post-card:nth-child(1) {
    animation-delay: 0.6s;
  }

  .post-card:nth-child(2) {
    animation-delay: 0.7s;
  }

  .post-card:nth-child(3) {
    animation-delay: 0.8s;
  }

  .post-card:nth-child(4) {
    animation-delay: 0.9s;
  }

  .post-card:nth-child(5) {
    animation-delay: 1s;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .post-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(197, 14, 25, 0.3);
  }

  .post-image {
    position: relative;
    overflow: hidden;
  }

  .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 200px;
    transition: transform 0.5s ease;
  }

  .post-card:hover .post-image img {
    transform: scale(1.1);
  }

  .post-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
  }

  .post-category {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
  }

  .post-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    color: var(--light);
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
    line-height: 1.2;
  }

  .post-title a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .post-title a:hover {
    color: var(--primary);
  }

  .post-excerpt {
    color: rgba(247, 247, 247, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
  }

  .post-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: rgba(247, 247, 247, 0.5);
    font-size: 0.85rem;
    margin-top: auto;
  }

  /* Single Post Layout */
  .single-post-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    animation: fadeIn 1s ease-out 0.4s backwards;
  }

  .single-post-hero {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }

  .single-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    color: rgba(247, 247, 247, 0.75);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .single-post-category {
    background: rgba(197, 14, 25, 0.15);
    color: var(--primary);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-weight: 700;
  }

  .single-post-image {
    border-radius: 15px;
    overflow: hidden;
    max-height: 520px;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .single-post-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: transparent;
  }

  .single-post-content {
    color: rgba(247, 247, 247, 0.85);
    font-size: 1.05rem;
    line-height: 1.8;
  }

  .single-post-content h2,
  .single-post-content h3,
  .single-post-content h4 {
    color: var(--light);
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 1px;
  }

  .single-post-content a {
    color: var(--primary);
    text-decoration: underline;
  }

  .single-post-content blockquote {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.06);
    border-left: 4px solid var(--primary);
    border-radius: 12px;
  }

  .single-post-tags {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .single-post-tags h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.6rem;
    color: var(--light);
    margin-bottom: 1rem;
  }

  .blog-container.single-layout {
    margin-top: 3rem;
    align-items: flex-start;
  }

  .post-navigation-grid {
    display: grid;
    gap: 1.5rem;
  }

  .post-navigation-grid .nav-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    text-decoration: none;
    color: var(--light);
    transition: all 0.3s ease;
  }

  .post-navigation-grid .nav-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
  }

  .post-navigation-grid .nav-label {
    color: rgba(247, 247, 247, 0.6);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
  }

  .post-navigation-grid .nav-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .single-comments {
    margin-top: 3rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
  }

  /* Sidebar */
  .sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .sidebar-widget {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    animation: fadeIn 1s ease-out 0.8s backwards;
  }

  .widget-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    color: var(--light);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(197, 14, 25, 0.3);
  }

  /* Recent Posts Widget */
  .recent-posts-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .recent-post-item {
    display: flex;
    gap: 1rem;
    transition: all 0.3s ease;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .recent-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .recent-post-item:hover {
    transform: translateX(5px);
  }

  .recent-post-thumb {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
  }

  .recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .recent-post-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .recent-post-title {
    font-weight: 600;
    color: var(--light);
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
  }

  .recent-post-title a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .recent-post-title a:hover {
    color: var(--primary);
  }

  .recent-post-date {
    color: rgba(247, 247, 247, 0.5);
    font-size: 0.8rem;
  }

  /* Categories Widget */
  .categories-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }

  .category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .category-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
  }

  .category-item a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
  }

  .category-count {
    background: var(--primary);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
  }

  /* Tags Widget */
  .tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
  }

  .tag-item {
    padding: 0.5rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--light);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
  }

  .tag-item:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
  }

  /* Pagination */
  .pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
    animation: fadeIn 1s ease-out 1.2s backwards;
  }

  .page-number {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--light);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .page-number:hover,
  .page-number.active {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
  }

  /* Responsive */
  @media (max-width: 968px) {
    .page-title {
      font-size: 3.5rem;
    }

    .featured-card {
      grid-template-columns: 1fr;
    }

    .featured-content {
      padding: 2rem;
    }

    .featured-image {
      min-height: 300px;
    }

    .blog-container {
      grid-template-columns: 1fr;
    }

    .blog-container.single-layout {
      gap: 2.5rem;
    }

    .post-card {
      grid-template-columns: 1fr;
    }

    .post-image {
      min-height: 200px;
    }

    .single-post-card {
      padding: 2.2rem;
    }

    .single-post-meta {
      gap: 0.9rem;
      font-size: 0.85rem;
    }

    .single-post-image {
      max-height: 420px;
    }

    .sidebar {
      position: static;
      width: 100%;
    }

    .category-filters {
      gap: 0.5rem;
    }

    .category-filter {
      padding: 0.6rem 1.2rem;
      font-size: 0.8rem;
    }
  }

  @media (max-width: 640px) {
    .page-title {
      font-size: 3rem;
    }

    .single-post-card {
      padding: 1.8rem;
    }

    .single-post-meta {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.6rem;
    }

    .single-post-image {
      max-height: 320px;
    }

    .post-navigation-grid {
      grid-template-columns: 1fr;
    }

    .single-comments {
      padding: 1.8rem;
    }
  }

  @media (max-width: 480px) {


    .page-title {
      font-size: 2.6rem;
    }

    .single-post-card {
      padding: 1.5rem;
    }

    .single-post-meta {
      font-size: 0.75rem;
      letter-spacing: 0.5px;
    }

    .single-post-content {
      font-size: 0.95rem;
    }

    .single-post-tags h3 {
      font-size: 1.3rem;
    }
  }
