.tags-container {
    background-color: #1b1b1b;
    border-radius: 4px;
    padding: 30px;
    margin-bottom: 30px;
}

.tags-header {
    margin-bottom: 30px;
}

.tags-header h1 {
    color: #fff;
    margin-bottom: 10px;
}

.tags-header p {
    color: #aaa;
}

.letter-section {
    margin-bottom: 30px;
}

.letter-heading {
    background-color: #2c2c2c;
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 15px;
    font-size: 20px;
    color: #ff9000;
}

.tags-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.tag-item {
    background-color: #2c2c2c;
    padding: 10px 15px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.tag-item:hover {
    background-color: #3c3c3c;
}

.tag-item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tag-name {
    font-weight: bold;
}

.tag-count {
    background-color: #ff9000;
    color: #000;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: bold;
}

.letters-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 30px;
    background-color: #2c2c2c;
    padding: 10px;
    border-radius: 4px;
}

.letter-link {
    display: block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background-color: #3c3c3c;
    border-radius: 4px;
    font-weight: bold;
}

.letter-link:hover, .letter-link.active {
    background-color: #ff9000;
    color: #000;
} 