/* ==============================
FONT
============================== */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700&display=swap');


/* ==============================
GLOBAL
============================== */

body{
font-family:"Nunito",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
margin:0;
padding-top:80px;
background:#070b14;
color:white;
letter-spacing:0.3px;
line-height:1.6;
-webkit-font-smoothing:antialiased;
}


/* ==============================
HEADER
============================== */

.site-header{
position:fixed;
top:0;
left:0;
width:100%;
background:rgba(11,15,26,0.65);
backdrop-filter:blur(14px);
border-bottom:1px solid rgba(255,255,255,0.08);
box-shadow:0 5px 25px rgba(0,0,0,0.4);
z-index:1000;
}

.nav-container{
max-width:1200px;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
padding:18px 20px;
}

.logo a{
font-size:20px;
font-weight:700;
color:white;
text-decoration:none;
}

.main-nav{
display:flex;
gap:35px;
}

.main-nav a{
color:white;
text-decoration:none;
font-size:15px;
transition:0.25s;
}

.main-nav a:hover{
color:#5ddcff;
}

.cta-btn{
background:#5ddcff;
color:#071020;
padding:8px 16px;
border-radius:20px;
font-weight:600;
text-decoration:none;
}


/* ==============================
HAMBURGER
============================== */

.hamburger{
display:none;
flex-direction:column;
gap:5px;
cursor:pointer;
}

.hamburger span{
width:24px;
height:3px;
background:white;
display:block;
}


/* ==============================
HERO
============================== */

.hero{
text-align:center;
padding:120px 20px;
background:
radial-gradient(circle at 30% 20%,rgba(93,220,255,0.15),transparent 40%),
linear-gradient(135deg,#141e30,#243b55);
}

.hero h1{
font-size:2rem;
}

#search{
padding:12px;
width:300px;
max-width:90%;
border-radius:6px;
border:none;
margin-top:20px;
}


/* ==============================
DOMAIN GRID
============================== */

#domain-list{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:25px;
margin-top:40px;
padding:0 10%;
}


/* ==============================
DOMAIN CARD
============================== */

.domain-card{
background:rgba(255,255,255,0.08);
border:1px solid rgba(255,255,255,0.12);
border-radius:16px;
padding:25px;
text-align:center;
transition:all 0.25s ease;
backdrop-filter:blur(10px);
}

.domain-card:hover{
transform:translateY(-6px);
border-color:#5ddcff;
box-shadow:
0 12px 35px rgba(0,0,0,0.45),
0 0 20px rgba(93,220,255,0.2);
}


/* ==============================
FEATURED DOMAIN
============================== */

.featured-domain{
max-width:420px;
margin:40px auto 0;
padding:35px;
border-radius:16px;
text-align:center;
background:rgba(255,255,255,0.08);
border:1px solid rgba(255,255,255,0.12);
backdrop-filter:blur(10px);
box-shadow:0 10px 40px rgba(0,0,0,0.45);
transition:0.3s;
}

.featured-domain:hover{
transform:translateY(-6px);
box-shadow:0 20px 60px rgba(0,0,0,0.55);
}

/* ==============================
FEATURED BUTTON
============================== */

.featured-buy{

display:inline-block;

padding:12px 28px;

border-radius:8px;

background:linear-gradient(135deg,#5ddcff,#5E72EB);

color:white;

text-decoration:none;

font-weight:600;

transition:0.25s;

margin-top:18px;

}

.featured-buy:hover{

transform:translateY(-2px);

box-shadow:0 8px 25px rgba(0,0,0,0.4);

}

 
/* ==============================
DOMAIN LANDING
============================== */

#domain-page{
display:none;
max-width:900px;
margin:auto;
margin-top:60px;
padding:0 20px;
}

.domain-landing{
text-align:center;
background:rgba(255,255,255,0.12);
border:1px solid rgba(255,255,255,0.15);
border-radius:16px;
padding:40px;
backdrop-filter:blur(12px);
}

.tagline{
font-size:18px;
color:#5ddcff;
margin-bottom:20px;
}

.sales-text{
line-height:1.6;
opacity:0.9;
margin-bottom:30px;
}

.domain-landing h1{
word-break:break-word;
overflow-wrap:break-word;
}


/* ==============================
RELATED DOMAIN BUTTONS
============================== */

.related{
margin-top:20px;
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:8px;
}

.related-domain{
display:inline-block;
padding:6px 12px;
border-radius:14px;
background:rgba(255,255,255,0.08);
border:1px solid rgba(255,255,255,0.12);
color:white;
text-decoration:none;
font-size:13px;
transition:0.25s;
}

.related-domain:hover{
background:#5ddcff;
border-color:#5ddcff;
color:#071020;
}


/* ==============================
CATEGORIES
============================== */

.categories{
margin-top:80px;
text-align:center;
}

.categories h2{
margin-bottom:30px;
}

.category-grid{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:15px;
}

.category-grid a{
padding:10px 18px;
border-radius:20px;
background:#111827;
text-decoration:none;
color:white;
font-size:14px;
transition:0.25s;
}

.category-grid a:hover{
background:#5ddcff;
color:#071020;
}


/* ==============================
BUTTONS
============================== */

.buy-btn,
.btn{
display:inline-block;
padding:12px 28px;
border-radius:8px;
background:linear-gradient(135deg,#5ddcff,#5E72EB);
color:white;
text-decoration:none;
font-weight:600;
transition:0.25s;
margin-top:14px;
}

.buy-btn:hover,
.btn:hover{
transform:translateY(-2px);
box-shadow:0 8px 25px rgba(0,0,0,0.4);
}


/* ==============================
FOOTER
============================== */

.site-footer{
margin-top:80px;
padding:40px;
text-align:center;
background:#070b14;
border-top:1px solid rgba(255,255,255,0.08);
color:#9ca3af;
}

.footer-links{
margin-bottom:10px;
}

.footer-links a{
margin:0 15px;
text-decoration:none;
font-weight:500;
color:#9ca3af;
}

.footer-links a:hover{
color:#5ddcff;
}

.copyright{
font-size:14px;
color:#6b7280;
}


/* ==============================
MOBILE
============================== */

@media (max-width:900px){

#domain-list{
padding:0 20px;
}

.hero{
padding:100px 20px;
}

}


/* ==============================
MOBILE MENU
============================== */

@media (max-width:768px){

.main-nav{
position:fixed;
top:0;
left:0;
width:100%;
height:100vh;
flex-direction:column;
align-items:center;
justify-content:center;
gap:30px;
transform:translateY(-100%);
transition:0.4s ease;
background:rgba(5,10,20,0.85);
backdrop-filter:blur(18px);
}

.main-nav.active{
transform:translateY(0);
}

.main-nav a{
font-size:22px;
}

.hamburger{
display:flex;
z-index:2000;
}

.hamburger span{
transition:0.3s;
}

.hamburger.active span:nth-child(1){
transform:rotate(45deg) translate(5px,5px);
}

.hamburger.active span:nth-child(2){
opacity:0;
}

.hamburger.active span:nth-child(3){
transform:rotate(-45deg) translate(6px,-6px);
}

}