*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
background:#0b1020;
color:white;
font-family:Arial,sans-serif;
line-height:1.6;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

header{
text-align:center;
padding:80px 20px;
}

.logo{
width:120px;
margin-bottom:20px;
}

h1{
font-size:48px;
margin-bottom:10px;
}

.subtitle{
color:#a0a8c0;
font-size:20px;
}

.buttons{
margin-top:30px;
}

.buttons a{
display:inline-block;
margin:10px;
padding:12px 24px;
text-decoration:none;
color:white;
border:1px solid #6f42ff;
border-radius:8px;
}

.buttons a:hover

section{
padding:70px 0;
}

h2{
text-align:center;
margin-bottom:40px;
font-size:32px;
}

#about p{
max-width:800px;
margin:15px auto;
text-align:center;
}

.network-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
gap:20px;
}

.network-card{
background:#151d35;
border-radius:12px;
text-decoration:none;
color:white;
text-align:center;
padding:25px;
transition:.2s;
}

.network-card:hover{
transform:translateY(-5px);
background:#1c2748;
}

.network-card img{
width:64px;
height:64px;
object-fit:contain;
margin-bottom:15px;
}

.network-card span{
display:block;
font-weight:bold;
}

.contact-box{
text-align:center;
font-size:18px;
}

.contact-box p{
margin:10px 0;
}

footer{
text-align:center;
padding:30px;
color:#8b93aa;
}
