body {
    padding-bottom: 100px;
}

.language-switcher {
    position: relative;
}

.lang-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
}

.lang-dropdown-btn.active svg {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--background-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    min-width: 150px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.lang-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    padding: 12px 16px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover,
.lang-option.active {
    background: var(--primary-color);
    color: #fff;
}

.scroll-to-top {
    bottom: 120px;
}

.bottom-catfish {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--background-color);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9998;
    padding: 15px 40px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.bottom-catfish.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.catfish-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.catfish-logo {
    height: 60px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

.catfish-bonus-info {
    flex: 1;
    text-align: center;
}

.bonus-highlight {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--heading-faq-others-color);
}

.catfish-cta-btn {
    padding: 14px 32px;
    background: var(--cta-button-color);
    color: #fff;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 90px;
    }

    .bottom-catfish {
        padding: 12px 15px;
    }

    .catfish-content {
        gap: 10px;
    }

    .catfish-logo {
        height: 45px;
        max-width: 100px;
    }

    .bonus-highlight {
        font-size: 0.95rem;
    }

    .catfish-cta-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
