/* Colorful Biro Design */

/* Base style for Biro tags */
.tag-biro {
    display: inline-block;
    padding: 6px 12px;
    margin: 3px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #fff !important;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: none !important;
}

.tag-biro:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: #fff !important;
    text-decoration: none;
}

/* Colorful Palette using nth-child */
.tag-biro:nth-child(10n+1) {
    background: linear-gradient(45deg, #FF512F, #DD2476);
}

.tag-biro:nth-child(10n+2) {
    background: linear-gradient(45deg, #4776E6, #8E54E9);
}

.tag-biro:nth-child(10n+3) {
    background: linear-gradient(45deg, #00b09b, #96c93d);
}

.tag-biro:nth-child(10n+4) {
    background: linear-gradient(45deg, #cc2b5e, #753a88);
}

.tag-biro:nth-child(10n+5) {
    background: linear-gradient(45deg, #ee0979, #ff6a00);
}

.tag-biro:nth-child(10n+6) {
    background: linear-gradient(45deg, #42275a, #734b6d);
}

.tag-biro:nth-child(10n+7) {
    background: linear-gradient(45deg, #11998e, #38ef7d);
}

.tag-biro:nth-child(10n+8) {
    background: linear-gradient(45deg, #FC466B, #3F5EFB);
}

.tag-biro:nth-child(10n+9) {
    background: linear-gradient(45deg, #3a1c71, #d76d77, #ffaf7b);
}

.tag-biro:nth-child(10n+10) {
    background: linear-gradient(45deg, #1A2980, #26D0CE);
}

/* Section Header Style */
.label-metallic-biro {
    background: linear-gradient(90deg, #1A2980, #26D0CE);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 15px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.label-metallic-biro::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}