.navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 1rem 2rem;
    position: relative;
}

.channel-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.channel-logo img {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    margin-right: 0.5rem;
}

.channel-logo span {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
}


.navbar-discord {
    background-color: #5865F2;
    border-radius: 5px;
    padding: 0.7rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.3s ease;
}

.navbar-discord a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-discord:hover {
    background-color: #4752C4;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar-links {
        flex-direction: column;
        width: 100%;
        margin-top: 0.5rem;
    }
}

.tab-image {
    width: auto;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.tab-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.tabs-underline {
    display: flex;
    gap: 1.5rem;
}

.tabs-underline .tab-item {
    padding: 0.5rem 0;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 2px solid transparent;
    display: flex;
    align-items: center;
}

.tabs-underline .tab-item .tab-image {
    opacity: 0.6;
}

.tabs-underline .tab-item:hover .tab-image {
    opacity: 0.8;
}

.tabs-underline .tab-item.active {
    border-bottom-color: #f0ba3e;
}

.tabs-underline .tab-item.active .tab-image {
    opacity: 1;
}