*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial,sans-serif;
}

body{
  background:linear-gradient(135deg,#0f0f1a,#1c1030);
  color:white;
  overflow-x:hidden;
  line-height:1.6;
}

nav{
  position:fixed;
  top:0;
  width:100%;
  padding:15px 30px;
  backdrop-filter:blur(12px);
  background:rgba(0,0,0,0.35);
  display:flex;
  justify-content:space-between;
  align-items:center;
  z-index:999;
  border-bottom:1px solid rgba(255,255,255,0.08);
}

.logo{
  font-size:1.4rem;
  font-weight:bold;
  color:#ff7df0;
}

.links{
  display:flex;
  gap:15px;
}

.links a{
  color:white;
  text-decoration:none;
  transition:.3s;
}

.links a:hover{
  color:#00d4ff;
}

header{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  text-align:center;
  padding:120px 20px;
}

h1{
  font-size:4rem;
  background:linear-gradient(90deg,#ff4fd8,#8a6dff,#00d4ff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  margin-bottom:20px;
}

h2{
  font-size:2.5rem;
  margin-bottom:20px;
}

.subtitle{
  max-width:700px;
  color:#d0d0ff;
  font-size:1.2rem;
}

section{
  padding:80px 10%;
}

.page-section{
  padding-top:120px;
}

.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:25px;
  margin-top:40px;
}

.card{
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:20px;
  padding:25px;
  backdrop-filter:blur(10px);
  transition:.3s;
}

.card:hover{
  transform:translateY(-10px);
  border-color:#8a6dff;
  box-shadow:0 0 30px rgba(138,109,255,0.3);
}

.card img{
  width:100%;
  border-radius:15px;
  margin-bottom:15px;
}

.card h3{
  margin-bottom:15px;
  color:#ff7df0;
}

.button{
  display:inline-block;
  margin-top:20px;
  padding:12px 24px;
  border-radius:999px;
  background:linear-gradient(90deg,#ff4fd8,#8a6dff);
  color:white;
  text-decoration:none;
}

footer{
  text-align:center;
  padding:40px 20px;
  background:rgba(0,0,0,0.4);
  color:#aaa;
}