body {
    overflow-x: hidden;
}

.breadcrumb-and-title {
    padding: 50px 0px;
}

.breadcrumb {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.breadcrumb-item {
    color: #ccc;
    display: flex;
    align-items: center;
}

.breadcrumb-item i {
    margin-bottom: 3px;
    color: rgba(255, 255, 255, 0.61);
    margin: 0 10px;
    font-size: 7px;
}


.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.603);
    font-size: 14px;
    text-decoration: none;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #7775D1;
    font-size: 14px;
    text-decoration: none;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
}

h1 {
    position: relative;
    font-family: 'Nunito', sans-serif;
    /* padding: 0 50px; */
    z-index: 2;
    font-size: 42px;
    font-weight: 800;
    color: rgb(255, 255, 255);
    margin-top: 17px;
    margin-bottom: 18px;
    text-transform: uppercase;
}







main {
    max-width: 1280px;
    margin: auto;
    margin-top: 150px;
    padding: 0 20px;
}

main article p {
    color: white;
    font-size: 18px;
    line-height: 28px;
    font-family: 'Nunito', sans-serif;
}

main article h2 {
    color: white;
    margin-top: 45px;
    font-family: 'Nunito', sans-serif;
}

.tags-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 60px;
}

.tags-grid a {
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tags-grid a:hover {
    transform: translateY(-12px) scale(1.02);
}

.tags-grid a:hover .tag-card {
    border-color: rgba(119, 117, 209, 0.4);
    box-shadow: 0 20px 40px rgba(119, 117, 209, 0.25),
                0 0 0 1px rgba(119, 117, 209, 0.1) inset;
}

.tags-grid a:hover .tag-card::before {
    opacity: 1;
}

.tags-grid a:hover .tag-card span {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(119, 117, 209, 0.5);
}

.tag-card {
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: 200px;
    height: auto;
    min-height: 240px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 30px 20px;
    background: linear-gradient(135deg, rgba(30, 33, 39, 0.6) 0%, rgba(21, 23, 29, 0.8) 100%);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tag-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(119, 117, 209, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.tag-card span {
    color: white;
    background: linear-gradient(135deg, #7775D1 0%, #5D5BB3 100%);
    font-size: 13px;
    font-weight: 700;
    border-radius: 50px;
    padding: 8px 40px;
    text-decoration: none;
    position: relative;
    z-index: 3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(119, 117, 209, 0.3);
}

.tag-card p {
    color: #cbd5e1;
    font-size: 11px;
    font-weight: 500;
    padding: 12px;
    /* background: rgba(0,0,0,0.25); */
    /* border: 1px solid rgba(255,255,255,0.06); */
    border-radius: 10px;
    position: relative;
    z-index: 3;
    text-decoration: none;
    text-align: left;
    margin: 0;
    line-height: 1.6;
}

.tag-card .tag-meta {
    color: #9ca3af;
    font-size: 12px;
    margin-top: 8px;
}

.tag-card .tag-meta strong {
    color: #7775D1;
}




@media (max-width: 870px) {
    .breadcrumb-and-title {
        padding: 0;
    }
    main article p {
        font-size: 16px;
    }
    main article h2 {
        margin-top: 20px;
    }
    .tag-card p {
        font-size: 12px;
    }
    .tag-card {
        padding: 25px 15px;
        width: 180px;
        height: 160px;
    }
}

@media (max-width: 557px) {
    .tag-card {
        width: 160px;
        height: 140px;
        padding: 20px 10px;
    }
    
    .tag-card span {
        font-size: 16px;
        padding: 6px 30px;
    }

    .tags-grid {
        gap: 15px;
        margin-top: 40px;
    }

    h1 {
        font-size: 26px;
    }

    h2 {
        font-size: 20px;
    }
    main article p {
        font-size: 14px;
        line-height: 21px;
    }
}