body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #050505;
    color: white;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
}

header img {
    height: 60px;
    filter: drop-shadow(0 0 10px #a855f7);
}

nav a {
    color: white;
    margin-left: 25px;
    text-decoration: none;
    transition: 0.3s;
}

nav a:hover {
    color: #a855f7;
    text-shadow: 0 0 10px #a855f7;
}

/* HERO */
.hero {
    text-align: center;
    padding: 120px 20px;
    background: radial-gradient(circle, #1a0033, #050505);
}

.hero-logo {
    width: 150px;
    filter: drop-shadow(0 0 25px #9333ea);
}

.hero h1 {
    font-size: 50px;
    margin: 20px 0;
    text-shadow: 0 0 20px #a855f7;
}

.hero p {
    color: #aaa;
}

/* BUTTON */
.btn {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 30px;
    background: #7c3aed;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    box-shadow: 0 0 20px #7c3aed;
    transition: 0.3s;
}

.btn:hover {
    background: #9333ea;
    box-shadow: 0 0 30px #9333ea;
}

/* SECTIONS */
section {
    padding: 80px 20px;
    text-align: center;
}

h2 {
    margin-bottom: 30px;
    text-shadow: 0 0 10px #9333ea;
}

/* CARDS */
.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.card {
    background: #0d0d0d;
    padding: 25px;
    border-radius: 15px;
    width: 250px;
    border: 1px solid #9333ea;
    box-shadow: 0 0 15px rgba(147, 51, 234, 0.3);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(147, 51, 234, 0.8);
}

/* FOOTER */
footer {
    background: #0a0a0a;
    padding: 20px;
    text-align: center;
    color: #777;
}

.card {
    text-decoration: none;
    color: white;
    display: block;
}