.uzhnet-card__big-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 197px;
    width: 100%;
    position: relative;

    opacity: 0;

    animation: opacity-animation-zero-to-one 1s ease-in-out 1s forwards;
}

.uzhnet-card__title {
    font-size: 16px;
    color: #E6C44C;
    text-align: center;
    margin-top: 0px;
    font-weight: bold;
    font-family: 'RoadRadioBold', sans-serif;
}

.uzhnet-card__subtitle {
    font-size: 12px;
    color: #fff;
    text-align: center;
    margin-top: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
}

.uzhnet-card__content {
    font-size: 12px;
    color: #fff;
    text-align: center;
    padding: 0 30px;
    margin-top: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    line-height: 1.5;
}

.uzhnet-card__divider {
    width: 112px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin-top: 28px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;

    animation: opacity-animation-zero-to-one 1s ease-in-out 1s forwards;
}

.uzhnet-card {
    /* position: absolute; */
    left: 150px;
    width: 336px;
}

.uzhnet-card__logo-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 30px;
    padding-right: 20px;
}

.uzhnet-card__language-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 4px;
    border-radius: 8px;
    opacity: 0.6;
}

.uzhnet-card__language-button:hover {
    opacity: 0.85;
}

.uzhnet-card__language-button.active {
    opacity: 1;
    background: rgba(230, 196, 76, 0.1);
    box-shadow: 0 0 10px rgba(230, 196, 76, 0.2);
}

.uzhnet-card__language-button.active .uzhnet-card__language-flag {
    filter: drop-shadow(0 0 5px rgba(230, 196, 76, 0.5));
}

.uzhnet-card__language-flag {
    width: 42px;
    height: 32px;
    transition: filter 0.3s ease;
}

.uzhnet-card__language-label {
    font-size: 8px;
    color: #939397;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.3s ease;
}

.uzhnet-card__language-button.active .uzhnet-card__language-label {
    color: #E6C44C;
}

.uzhnet-card__sound-block {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    position: relative;
    top: 20px;
}

.uzhnet-card__sound-icon {
    width: 24px;
    height: 24px;
}

/* Показуємо іконку "вимкнено" за замовчуванням, ховаємо "активну" */
#uzhnet-sound-icon-disable {
    display: block;
}

#uzhnet-sound-icon-active {
    display: none;
}

/* Коли звук увімкнено - ховаємо "вимкнено", показуємо "активну" */
.uzhnet-card__sound-block.sound-enabled #uzhnet-sound-icon-disable {
    display: none;
}

.uzhnet-card__sound-block.sound-enabled #uzhnet-sound-icon-active {
    display: block;
}

.uzhnet-card__sound-label {
    font-size: 10px;
    color: #9F2251;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* Стилі для активованих звуків */
.uzhnet-card__sound-block {
    transition: all 0.3s ease;
}

.uzhnet-card__sound-block:hover {
    opacity: 0.8;
}

.uzhnet-card__sound-block.sound-enabled .uzhnet-card__sound-label {
    color: #E6C44C;
    text-shadow: 0 0 8px rgba(230, 196, 76, 0.5);
}

.uzhnet-card__sound-block.sound-enabled .uzhnet-card__sound-icon svg path {
    fill: #E6C44C;
    filter: drop-shadow(0 0 4px rgba(230, 196, 76, 0.5));
}