*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#0b0b0b;
color:#fff;
overflow-x:hidden;
}

/* Header */

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 8%;
background:rgba(10,10,10,.95);
backdrop-filter:blur(15px);
border-bottom:1px solid rgba(255,255,255,.08);
position:sticky;
top:0;
z-index:1000;
}

.logo h2{
color:#FFD700;
font-size:28px;
font-weight:700;
}

nav{
display:flex;
gap:30px;
}

nav a{
color:#fff;
text-decoration:none;
font-size:16px;
transition:.3s;
}

nav a:hover{
color:#FFD700;
}

/* Hero */

.hero{
text-align:center;
padding:45px 20px;
}

.hero h1{
font-size:48px;
color:#FFD700;
margin-bottom:12px;
}

.hero p{
font-size:18px;
color:#ccc;
}

/* Search */

.search-section{
width:90%;
max-width:700px;
margin:20px auto 40px;
}

#searchBox{
width:100%;
padding:16px 20px;
border:none;
outline:none;
border-radius:14px;
background:#171717;
color:#fff;
font-size:16px;
border:1px solid rgba(255,255,255,.08);
transition:.3s;
}

#searchBox:focus{
border-color:#FFD700;
box-shadow:0 0 20px rgba(255,215,0,.25);
}

/* Grid */

.tool-grid{
width:92%;
max-width:1500px;
margin:auto;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:25px;
padding-bottom:40px;
}

/* Cards */

.tool-card{
background:rgba(255,255,255,.05);
border:1px solid rgba(255,255,255,.08);
border-radius:20px;
padding:28px 22px;
text-align:center;
text-decoration:none;
color:#fff;
backdrop-filter:blur(15px);
transition:.35s;
box-shadow:0 12px 30px rgba(0,0,0,.30);
}

.tool-card:hover{
transform:translateY(-8px);
border-color:#FFD700;
box-shadow:0 0 25px rgba(255,215,0,.30);
}

.tool-card i{
font-size:55px;
color:#FFD700;
margin-bottom:20px;
}

.tool-card h3{
font-size:22px;
margin-bottom:10px;
}

.tool-card p{
font-size:15px;
color:#cfcfcf;
line-height:1.6;
}

/* Coming Soon */

.coming-soon{
padding:60px 0;
}

.coming-soon h2{
text-align:center;
font-size:38px;
color:#FFD700;
margin-bottom:40px;
}

.disabled{
opacity:.75;
cursor:not-allowed;
position:relative;
}

.disabled:hover{
transform:none;
border-color:rgba(255,255,255,.08);
box-shadow:none;
}

.disabled span{
display:inline-block;
margin-top:18px;
padding:8px 18px;
background:#FFD700;
color:#111;
font-weight:700;
border-radius:30px;
font-size:14px;
}

/* Footer */

footer{
margin-top:40px;
padding:25px;
background:#111;
text-align:center;
color:#999;
border-top:1px solid rgba(255,255,255,.08);
}

/* Scrollbar */

::-webkit-scrollbar{
width:10px;
}

::-webkit-scrollbar-thumb{
background:#FFD700;
border-radius:20px;
}

/* Responsive */

@media(max-width:992px){

header{
flex-direction:column;
gap:15px;
}

nav{
flex-wrap:wrap;
justify-content:center;
}

.hero h1{
font-size:38px;
}

}

@media(max-width:768px){

.tool-grid{
grid-template-columns:1fr;
}

.hero{
padding:35px 15px;
}

.hero h1{
font-size:32px;
}

.hero p{
font-size:15px;
}

}

@media(max-width:500px){

.logo h2{
font-size:22px;
}

nav{
gap:15px;
}

#searchBox{
padding:14px;
font-size:15px;
}

.tool-card{
padding:22px 18px;
}

.tool-card i{
font-size:42px;
}

.tool-card h3{
font-size:19px;
}

}