body{
    margin:0;
    font-family:Arial;
    background:#0f172a;
}

/* HEADER */
.nh-header{
    position:sticky;
    top:0;
    z-index:999;
    background:#0f172a;
    padding:15px 30px;
    transition:.3s;
}

.nh-header.scrolled{
    background:#020617;
    box-shadow:0 5px 20px rgba(0,0,0,0.5);
}

.nh-flex{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.nh-logo img{
    height:45px;
}

/* NAV */
.nh-nav{
    display:flex;
    align-items:center;
}

.nh-nav a{
    color:#cbd5f5;
    margin-left:25px;
    text-decoration:none;
    font-size:15px;
    position:relative;
}

.nh-nav a:hover{
    color:#fff;
}

/* ACTIVE */
.nh-nav a.active::after{
    content:'';
    position:absolute;
    bottom:-5px;
    left:0;
    width:100%;
    height:2px;
    background:#ef4444;
}

/* BUTTON */
.btn-login::before{
    content:'';
    position:absolute;
    top:0;
    left:-75%;
    width:50%;
    height:100%;
    background:rgba(255,255,255,0.3);
    transform:skewX(-25deg);
    transition:0.5s;
}

.btn-login:hover::before{
    left:130%;
}

.btn-logout{
    background:#ef4444;
    color:#fff !important;
    padding:8px 16px;
    border-radius:8px;
}

/* MOBILE */
.nh-toggle{
    display:none;
    font-size:24px;
    color:#fff;
    cursor:pointer;
}


.nh-domain-section{
    padding:60px 0;
    text-align:center;
    background:#0f172a;
    color:#fff;
}

.nh-domain-section h2{
    font-size:32px;
    margin-bottom:10px;
}

.nh-domain-section p{
    color:#94a3b8;
    margin-bottom:30px;
}

.nh-domain-form{
    display:flex;
    justify-content:center;
    gap:10px;
    flex-wrap:wrap;
}

.nh-domain-form input{
    padding:12px;
    width:300px;
    border:none;
    border-radius:6px;
}

.nh-domain-form select{
    padding:12px;
    border-radius:6px;
    border:none;
}

.nh-domain-form button{
    background:#ef4444;
    color:#fff;
    border:none;
    padding:12px 20px;
    border-radius:6px;
    cursor:pointer;
}

.nh-domain-form button:hover{
    background:#dc2626;
}

.nh-domain-pricing{
    margin-top:20px;
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    color:#cbd5f5;
}
@media(max-width:768px){

    .nh-toggle{
        display:block;
    }

    .nh-nav{
        position:absolute;
        top:70px;
        right:0;
        background:#020617;
        flex-direction:column;
        width:100%;
        display:none;
        padding:20px;
    }

    .nh-nav a{
        margin:10px 0;
    }

    .nh-nav.show{
        display:flex;
    }
}

/* LOGIN DROPDOWN */
.nh-login-dropdown{
    position:absolute;
    width:280px;
    background:#020617;
    padding:20px;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.5);
    display:none;
    z-index:9999;
    transform:translateX(-20%);
}

.nh-login-dropdown.show{
    display:block;
}

.nh-login-dropdown input{
    width:100%;
    padding:10px;
    margin-bottom:10px;
    border:none;
    border-radius:6px;
}

.nh-login-dropdown button{
    width:100%;
    padding:10px;
    background:#ef4444;
    border:none;
    color:#fff;
    border-radius:6px;
    cursor:pointer;
}

.nh-links{
    margin-top:10px;
    display:flex;
    justify-content:space-between;
}

.nh-links a{
    font-size:12px;
    color:#cbd5f5;
    text-decoration:none;
}

.nh-links a:hover{
    color:#fff;
}


/* THEME TOGGLE BUTTON */
/* THEME TOGGLE BUTTON */
.theme-toggle{
    position:fixed;
    bottom:20px;
    right:20px;
    background:#ef4444;
    color:#fff;
    padding:12px;
    border-radius:50%;
    cursor:pointer;
    z-index:9999;
    box-shadow:0 5px 15px rgba(0,0,0,0.4);
    transition:.3s;
}

.theme-toggle:hover{
    transform:scale(1.1);
}

/* DOMAIN BAR */
.nh-domain-bar{
    background:#020617;
    padding:25px;
    text-align:center;
}

.nh-domain-bar input{
    width:300px;
    padding:12px;
    border-radius:6px 0 0 6px;
    border:none;
}

.nh-domain-bar button{
    padding:12px 20px;
    background:#2563eb;
    border:none;
    color:#fff;
    border-radius:0 6px 6px 0;
}

/* HEADER STYLE UPGRADE */
.nh-nav a{
    position:relative;
    padding:5px 0;
}

.nh-nav a::after{
    content:'';
    position:absolute;
    bottom:-6px;
    left:0;
    width:0%;
    height:2px;
    background:#ef4444;
    transition:.3s;
}

.nh-nav a:hover::after{
    width:100%;
}

/* LIGHT MODE */
body.light-mode{
    background:#f8fafc;
    color:#000;
}

body.light-mode .nh-header{
    background:#ffffff;
}

body.light-mode .nh-domain-bar{
    background:#e2e8f0;
}

body.light-mode .nh-nav a{
    color:#000;
}

/* DOMAIN SECTION */
.nh-domain-section{
    padding:70px 0;
    text-align:center;
    background:#0f172a;
    color:#fff;
}

.nh-domain-section h2{
    font-size:32px;
    margin-bottom:10px;
}

.nh-domain-section p{
    color:#94a3b8;
    margin-bottom:30px;
}

/* FORM */
.nh-domain-form{
    display:flex;
    justify-content:center;
    gap:10px;
    flex-wrap:wrap;
}

.nh-domain-form input{
    padding:14px;
    width:320px;
    border:none;
    border-radius:6px;
    outline:none;
}

.nh-domain-form button{
    background:#ef4444;
    color:#fff;
    border:none;
    padding:14px 22px;
    border-radius:6px;
    cursor:pointer;
    font-weight:500;
}

.nh-domain-form button:hover{
    background:#dc2626;
}

/* RESULTS */
.nh-domain-results{
    margin-top:30px;
    max-width:650px;
    margin-left:auto;
    margin-right:auto;
}

/* DOMAIN ITEM */
.domain-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:#1e293b;
    padding:15px;
    border-radius:8px;
    margin-bottom:12px;
}

.domain-name{
    font-weight:600;
    font-size:16px;
}

.domain-price{
    color:#22c55e;
    margin-right:10px;
}

.domain-btn{
    background:#2563eb;
    color:#fff;
    padding:6px 14px;
    border-radius:5px;
    text-decoration:none;
    font-size:13px;
}

/* STATUS */
.available{
    color:#22c55e;
}

.taken{
    color:#ef4444;
}

.domain-taken{
    color:#ef4444;
}