/* Logo Styles */
.theme-main-header .logo {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    height: 60px;
    margin-right: 20px;
}

.theme-main-header .logo img {
    width: 60px !important;
    height: 60px !important;
    display: block !important;
    transition: all 0.3s ease !important;
    aspect-ratio: 1 / 1;
}

.theme-main-header .logo-text {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: capitalize;
    transition: all 0.3s ease;
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 10px rgba(0, 209, 255, 0.6), 0 0 20px rgba(230, 57, 70, 0.4), 2px 2px 4px rgba(0, 0, 0, 0.5);
    -webkit-text-stroke: 0.8px #00D1FF;
    paint-order: stroke fill;
}

.theme-main-header .logo:hover img {
    filter: drop-shadow(0 0 10px rgba(0, 209, 255, 0.9)) drop-shadow(0 0 20px rgba(230, 57, 70, 0.6));
    animation: logo-pulse 0.6s ease-in-out infinite;
}

.theme-main-header .logo:hover .logo-text {
    text-shadow: 0 0 15px rgba(0, 209, 255, 0.8), 0 0 30px rgba(230, 57, 70, 0.6), 2px 2px 4px rgba(0, 0, 0, 0.7);
    -webkit-text-stroke: 1.2px #00D1FF;
    animation: logo-pulse 0.6s ease-in-out infinite;
}

@keyframes logo-pulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(1.08) rotate(-1deg);
    }
    50% {
        transform: scale(1.05) rotate(1deg);
    }
    75% {
        transform: scale(1.08) rotate(-1deg);
    }
}

@media (max-width: 768px) {
    .theme-main-header .logo img {
        width: 55px !important;
        height: 55px !important;
        aspect-ratio: 1 / 1;
    }
    
    .theme-main-header .logo-text {
        font-size: 20px;
    }
    
    .theme-main-header .logo {
        gap: 8px;
    }
}

/* Language Switch Styles */
.language-switch {
    display: inline-flex !important;
    align-items: center !important;
    white-space: nowrap !important;
    margin-left: 10px !important;
    padding-left: 20px !important;
    border-left: 1px solid rgba(255, 255, 255, 0.2) !important;
    gap: 5px !important;
    height: 60px !important;
}

.language-switch a {
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    font-size: 13px !important;
    transition: all 0.3s ease !important;
    padding: 0 8px !important;
    border-radius: 3px !important;
    display: inline-flex !important;
    white-space: nowrap !important;
    line-height: 1 !important;
    height: auto !important;
    align-items: center !important;
    justify-content: center !important;
}

.language-switch a:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
}

.language-switch a.active {
    background-color: var(--primary-color, #e63946) !important;
    color: #fff !important;
    font-weight: 600 !important;
}

.language-switch span {
    color: rgba(255, 255, 255, 0.5) !important;
    margin: 0 3px !important;
    display: inline-block !important;
}

/* Responsive styles for mobile */
@media (max-width: 768px) {
    .language-switch {
        margin-left: 0 !important;
        padding-left: 0 !important;
        border-left: none !important;
    }
    
    .language-switch a {
        font-size: 12px !important;
        padding: 3px 6px !important;
    }
}
