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

body {
    font-family: "Segoe UI", sans-serif;
    background: #0f172a;
    color: #e2e8f0;
    line-height: 1.7;
}

/* NAVBAR */

.navbar {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-between;
    padding: 20px 60px;
    background: rgba(15, 23, 42, 0.95);
    border-bottom: 1px solid #1e293b;
}

.logo {
    font-weight: 600;
}

.nav-links a {
    margin-left: 25px;
    text-decoration: none;
    color: #94a3b8;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #38bdf8;
}

/* CONTAINER */

.container {
    max-width: 1100px;
    margin: auto;
    padding: 80px 40px;
}

/* HERO */

.hero {
    text-align: center;
    margin-bottom: 80px;
}

.hero h1 {
    font-size: 48px;
    background: linear-gradient(90deg, #38bdf8, #84cc16);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    margin: 15px 0 25px;
    color: #94a3b8;
}

.button {
    padding: 12px 20px;
    background: #38bdf8;
    color: #0f172a;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.button:hover {
    background: #0ea5e9;
}

/* SECTION */

.section-title {
    font-size: 26px;
    margin-bottom: 25px;
    color: #84cc16;
}

/* CARD */

.card {
    background: #1e293b;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #334155;
    margin-bottom: 25px;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    border-color: #38bdf8;
}

/* PROFILE GRID */

.profiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.profile-card {
    background: #1e293b;
    padding: 20px;
    border-radius: 10px;
    text-decoration: none;
    color: #e2e8f0;
    border: 1px solid #334155;
    transition: 0.3s;
}

.profile-card:hover {
    transform: translateY(-5px);
    border-color: #84cc16;
    background: #273549;
}

/* LISTS */

ul {
    margin-left: 20px;
    margin-top: 10px;
}

li {
    margin-bottom: 6px;
}

/* RESPONSIVE */

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 20px;
    }

    .nav-links {
        margin-top: 10px;
    }

    .hero h1 {
        font-size: 34px;
    }
}
