    /* Reset and base styles */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    html,
    body {
        height: 100%;
    }

    body {
        font-family: 'Libre Baskerville', serif;
        background-color: #f4f7fa;
        color: #2c3e50;
        line-height: 1.6;
        display: flex;
        flex-direction: column;
        min-height: 100vh;
        background-image: linear-gradient(rgba(200, 200, 200, 0.05) 2px, transparent 2px),
            linear-gradient(90deg, rgba(200, 200, 200, 0.05) 2px, transparent 2px);
        background-size: 30px 30px;
    }

    .page-content {
        flex: 1 0 auto;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        width: 100%;
    }

    /* Navigation styles */


    /* Header */
    .blog-header {
        text-align: center;
        padding: 4rem 0 2rem;
        /* background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(46, 204, 113, 0.1)); */

        margin-bottom: 3rem;
    }

    .airon {

        color: #075149;
        font-weight: bold;
    }

    .blog-title {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: #2c3e50;
    }

    .blog-subtitle {
        font-size: 1.2rem;
        color: #7f8c8d;
        max-width: 600px;
        margin: 0 auto;
    }

    /* Filter tabs */
    .filter-nav {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 3rem;
        flex-wrap: wrap;
        padding: 0 20px;
    }

    .filter-btn {
        padding: 0.75rem 1.5rem;
        border: 2px solid transparent;
        background: #f3f4f6;
        color: #4b5563;
        border-radius: 20px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-weight: 500;
        font-size: 0.95rem;
        text-decoration: none;
    }

    .filter-btn:hover {
        background: #e5e7eb;
        color: #1f2937;
        transform: translateY(-2px);
    }

    .filter-btn.active {
        background: linear-gradient(135deg, #3498db, #2ecc71);
        color: white;
        /* border-color: #3498db; */
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(52, 152, 219, 0.2);
    }

    /* Blog grid */
    .blog-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .blog-card {
        background: white;
        border-radius: 16px;
        overflow: hidden;
        transition: all 0.3s ease;
        border: 1px solid #e5e7eb;
        cursor: pointer;
        position: relative;
        animation: fadeIn 0.5s ease-out forwards;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    }

    .blog-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        border-color: #3498db;
    }

    .blog-image {
        width: 100%;
        height: 240px;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .blog-card:hover .blog-image {
        transform: scale(1.05);
    }

    .blog-content {
        padding: 1.5rem;
    }

    .blog-meta {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
        font-size: 0.85rem;
        color: #6b7280;
    }

    .blog-category {
        background: linear-gradient(135deg, #3498db, #2ecc71);
        color: white;
        padding: 0.25rem 0.75rem;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
    }

    .blog-date {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .blog-card-title {
        font-size: 1.4rem;
        font-weight: 700;
        color: #1f2937;
        margin-bottom: 0.75rem;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .blog-excerpt {
        color: #6b7280;
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .blog-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 1rem;
        border-top: 1px solid #f3f4f6;
    }

    .blog-author {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .author-avatar {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: linear-gradient(135deg, #3498db, #2ecc71);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: 600;
        font-size: 0.9rem;
    }

    .author-name {
        font-size: 0.9rem;
        color: white;
        font-weight: 500;
    }

    .reg-author{

        color: #9CA3AF !important;
    }


    .read-time {
        font-size: 0.85rem;
        color: #9ca3af;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    /* Featured post */
    .featured-post {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        background: linear-gradient(135deg, #2c3e50, #34495e);
        color: white;
        padding: 2rem;
        border-radius: 20px;
        margin-bottom: 2rem;
        min-height: 400px;
    }

    .featured-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .featured-badge {
        background: rgba(255, 255, 255, 0.2);
        color: white;
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
        width: fit-content;
        margin-bottom: 1rem;
        backdrop-filter: blur(10px);
    }

    .featured-title {
        font-size: 2.2rem;
        font-weight: 700;
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    .featured-excerpt {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        color: rgba(255, 255, 255, 0.9);
    }

    .featured-meta {
        display: flex;
        align-items: center;
        gap: 2rem;
        margin-bottom: 2rem;
        color: rgba(255, 255, 255, 0.8);
    }

    .featured-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
    }

    .read-more-btn {
        background: rgba(255, 255, 255, 0.2);
        color: white;
        border: 2px solid rgba(255, 255, 255, 0.3);
        padding: 0.75rem 1.5rem;
        border-radius: 8px;
        cursor: pointer;
        font-weight: 600;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
        width: fit-content;
        text-decoration: none;
    }

    .read-more-btn:hover {
        background: rgba(255, 255, 255, 0.3);
        border-color: rgba(255, 255, 255, 0.5);
        transform: translateY(-2px);
    }

    /* Load more button */
    .load-more-container {
        text-align: center;
        margin: 3rem 0;
    }

    .load-more-btn {
        background: linear-gradient(135deg, #3498db, #2ecc71);
        color: white;
        border: none;
        padding: 1rem 2rem;
        border-radius: 8px;
        font-weight: 600;
        font-size: 1rem;
        cursor: pointer;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

    .load-more-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    }

    /* Footer */
    .site-footer {
        flex-shrink: 0;
        text-align: center;
        padding: 1rem;
        color: #6b7280;
        font-size: 0.8rem;
    }

    .site-footer a {
        color: #3498db;
        text-decoration: none;
    }

    /* Hamburger menu */
    .hamburger-menu {
        display: none;
        flex-direction: column;
        cursor: pointer;
        z-index: 1001;
    }

    .hamburger-line {
        width: 25px;
        height: 3px;
        background-color: #2c3e50;
        margin: 3px 0;
        transition: all 0.3s ease;
    }

    /* Animation keyframes */
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Animation delays for cards */
    .blog-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .blog-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .blog-card:nth-child(3) {
        animation-delay: 0.3s;
    }

    .blog-card:nth-child(4) {
        animation-delay: 0.4s;
    }

    .blog-card:nth-child(5) {
        animation-delay: 0.5s;
    }

    .blog-card:nth-child(6) {
        animation-delay: 0.6s;
    }

    /* Media queries */
    @media (max-width: 1024px) {
        .blog-grid {
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
        }

        .featured-post {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .featured-title {
            font-size: 1.8rem;
        }
    }

    @media (max-width: 768px) {
        .nav-buttons {
            display: none;
        }

        .hamburger-menu {
            display: flex;
        }

        .blog-title {
            font-size: 2.2rem;
        }

        .blog-subtitle {
            font-size: 1rem;
        }

        .blog-grid {
            grid-template-columns: 1fr;
            gap: 1.25rem;
        }

        .filter-nav {
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
        }

        .filter-btn {
            width: 100%;
            max-width: 200px;
            text-align: center;
        }

        .featured-post {
            padding: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .featured-title {
            font-size: 1.5rem;
        }

        .featured-excerpt {
            font-size: 1rem;
        }

        .blog-card-title {
            font-size: 1.2rem;
        }

        .container {
            padding: 0 15px;
        }
    }

    @media (max-width: 480px) {
        .blog-header {
            padding: 2rem 0 1rem;
        }

        .blog-title {
            font-size: 1.8rem;
        }

        .blog-content {
            padding: 1.25rem;
        }

        .featured-post {
            padding: 1rem;
        }

        .featured-meta {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.5rem;
        }
    }

    /* Navigation styles */
    .nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 2rem;
        position: relative;
    }

    .nav-left {
        display: flex;
        align-items: center;
        /* Reduce the gap between nav items for a more compact look */
        gap: 0.5rem;
    }

    .nav-logo {
        height: 50px;
        margin-right: 0.5rem;
    }

    .webLogo {
        height: 100%;
    }

    /* Navigation buttons */
    .nav-button {
        background: #3498db;
        color: white;
        padding: 0.5rem 1rem;
        border-radius: 8px;
        border: none;
        cursor: pointer;
        font-weight: 600;
        transition: background-color 0.3s;
    }

    .nav-button:hover {
        background-color: #2980b9;
    }

    .signin-btn {
        background: none;
        border: 2px solid #3498db;
        color: #3498db;
        padding: 0.5rem 1rem;
        border-radius: 8px;
        cursor: pointer;
        font-weight: 600;
        transition: background-color 0.3s, color 0.3s;
    }

    .signin-btn:hover {
        background-color: #3498db;
        color: white;
    }

    .getstarted-btn {
        background: linear-gradient(135deg, #3498db, #2ecc71);
        color: white;
        padding: 0.5rem 1rem;
        border-radius: 8px;
        border: none;
        cursor: pointer;
        font-weight: 600;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .getstarted-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    }

    /* Style update for nav items to make them more compact */
    .nav-item {
        color: rgb(92, 91, 91);
        font-weight: bold;
        padding: 0.5rem 0.7rem;
        transition: color 0.2s;
        position: relative;
    }

    /* Add subtle hover effect */
    .nav-item:hover {
        color: #33A2C6;
    }

    /* Optional: Add a subtle separator between nav items */
    .nav-items-group {
        display: flex;
        align-items: center;
        border-left: 1px solid #e0e0e0;
        padding-left: 0.5rem;
        margin-left: 0.5rem;
    }

    .nav-buttons {
        display: flex;
        gap: 0.8rem;
        /* Slightly reduce the gap between buttons */
    }

    /* Discord icon styling */
    .fa-discord {
        color: #5865F2;
    }

    /* Hamburger menu */
    .hamburger-menu {
        display: none;
        flex-direction: column;
        cursor: pointer;
        z-index: 1001;
    }

    .hamburger-line {
        width: 25px;
        height: 3px;
        background-color: #2c3e50;
        margin: 3px 0;
        transition: all 0.3s ease;
    }

    .mobile-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.98);
        z-index: 1000;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 0.3s ease;
    }

    .mobile-menu-item {
        display: block;
        padding: 1rem;
        margin: 0.5rem 0;
        text-align: center;
        font-size: 1.2rem;
        font-weight: 600;
        color: #2c3e50;
        text-decoration: none;
        transition: color 0.3s;
    }

    .mobile-menu-item:hover {
        color: #3498db;
    }

    .hamburger-menu.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger-menu.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .nav-item {

        text-decoration: none;
    }

    /* Mobile responsiveness */
    @media (max-width: 768px) {
        .nav-item {
            display: none;
        }

        .nav-buttons {
            display: none;
        }

        .hamburger-menu {
            display: flex;
        }
    }

    /* Additional mobile styles */
    @media (max-width: 537px) {
        .webLogo2 {
            width: 100%;
            height: 100%;
        }
    }