/* CSS cho tên miền trong header */
.header-domain-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    display: inline-block;
    text-shadow: 0px 2px 2px rgba(0,0,0,0.1);
    padding: 0;
    line-height: 1.2;
}

.header-domain-extension {
    font-weight: 800;
    background: linear-gradient(135deg, #f9ca24, #f0932b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-size: 0.9em;
}

/* Khi header cuộn (scrolled) */
.scrolled .header-domain-name {
    background: linear-gradient(135deg, #1e3799 0%, #4a89dc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: none;
}

/* Logo container trong header */
.logo {
    padding: 5px 0;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo a:hover .header-domain-name {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}

/* Force desktop view on mobile */
@media (max-width: 576px) {
    /* No mobile styles - keep desktop view */
    .nav-toggle {
        display: none;
    }
    
    .nav-menu {
        display: flex;
        flex-direction: row;
    }
}