body {
    font-family: 'Arial', sans-serif;
    background: var(--background-start);
    color: var(--text-color);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
	padding-top: 0px;
	padding-bottom: 100px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--background-start);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-cta-btn {
    display: none;
}

.header-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.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;
    transition: all 0.3s ease;
}

.lang-dropdown-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
}

.lang-dropdown-btn svg {
    transition: transform 0.3s ease;
}

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

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--background-start);
    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;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.lang-option:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
}

.lang-option.active {
    background: var(--primary-color);
    color: white;
}

.lang-separator {
    color: var(--text-color);
    opacity: 0.5;
    font-size: 1rem;
}

.scroll-to-top {
    position: fixed;
    bottom: 120px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

.bottom-catfish {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--background-start);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9998;
    padding: 15px 40px;
}

.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;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

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

.bonus-extra {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 600;
}

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

@media (max-width: 768px) {	
	body {
        padding-top: 0;
        padding-bottom: 90px;
    }
	
	.lang-link {
        font-size: 0.9rem;
        padding: 6px 10px;
    }
    
    .bottom-catfish {
        padding: 12px 15px;
    }
    
    .catfish-content {
        gap: 10px;
    }
    
    .catfish-logo {
        height: 45px;
        max-width: 100px;
    }
    
    .catfish-bonus-info {
        gap: 2px;
    }
    
    .bonus-highlight {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .bonus-extra {
        font-size: 0.8rem;
    }
    
    .catfish-cta-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}