
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, sans-serif;
    background:#0b1020;
    color:#f5f5f5;
    line-height:1.6;
}

.hero{
    min-height:100vh;
    padding:40px 8%;
    background:linear-gradient(135deg,#09111f,#111d38,#1c2d52);
}

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    font-size:1.5rem;
    font-weight:bold;
}

.logo span{
    color:#6ba4ff;
}

.nav-btn,.primary-btn,.secondary-btn{
    text-decoration:none;
    padding:12px 22px;
    border-radius:10px;
    transition:0.3s ease;
}

.nav-btn,.primary-btn{
    background:#6ba4ff;
    color:#08111f;
    font-weight:bold;
}

.secondary-btn{
    border:1px solid #6ba4ff;
    color:white;
}

.hero-content{
    max-width:800px;
    margin-top:120px;
}

.hero-content h1{
    font-size:4rem;
    margin-bottom:20px;
}

.hero-content p{
    font-size:1.2rem;
    opacity:0.9;
    margin-bottom:30px;
}

.hero-buttons{
    display:flex;
    gap:15px;
    margin-bottom:50px;
}

.stats{
    display:flex;
    gap:40px;
    flex-wrap:wrap;
}

.stats div{
    background:rgba(255,255,255,0.06);
    padding:20px;
    border-radius:12px;
    min-width:180px;
}

.stats strong{
    display:block;
    font-size:2rem;
    color:#6ba4ff;
}

.intro{
    padding:90px 8%;
    background:#0f172d;
}

.intro h2{
    font-size:2.5rem;
    margin-bottom:20px;
}

main{
    padding:80px 8%;
}

.category{
    margin-bottom:60px;
}

.category-header{
    display:flex;
    justify-content:space-between;
    align-items:end;
    margin-bottom:25px;
    border-bottom:1px solid rgba(255,255,255,0.1);
    padding-bottom:12px;
}

.category-header h2{
    font-size:2rem;
}

.domain-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:18px;
}

.domain-card{
    background:#121d36;
    border:1px solid rgba(255,255,255,0.08);
    border-radius:14px;
    padding:20px;
    transition:0.3s ease;
}

.domain-card:hover{
    transform:translateY(-5px);
    border-color:#6ba4ff;
}

.domain-card span{
    display:block;
    margin-bottom:18px;
    font-weight:bold;
    word-break:break-word;
}

.domain-card button{
    width:100%;
    padding:12px;
    border:none;
    border-radius:8px;
    cursor:pointer;
    font-weight:bold;
    background:#6ba4ff;
}

.cta{
    padding:100px 8%;
    text-align:center;
    background:#111d38;
}

.cta h2{
    font-size:3rem;
    margin-bottom:20px;
}

.cta p{
    max-width:700px;
    margin:0 auto 30px;
}

footer{
    padding:50px 8%;
    text-align:center;
    background:#08101d;
}

@media(max-width:768px){
    .hero-content h1{
        font-size:2.8rem;
    }

    .stats{
        flex-direction:column;
    }

    .hero-buttons{
        flex-direction:column;
    }

    nav{
        flex-direction:column;
        gap:20px;
    }
}
