body {
    margin: 0;
    font-family: Consolas, monospace;
    background: #0d0d0d;
    color: #e0e0e0;
}

link, a {
    color: #39bdff;
    text-decoration: none;
}

a:hover { text-decoration: underline; }
a:active { color: rgb(255, 0, 225); }


/* ----------- NAVBAR ----------- */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: #151515;
    border-bottom: 1px solid #333;
    position: sticky;
    top: 0;
    z-index: 10;
}

.logo {
    font-size: 22px;
    font-weight: bold;
    color: #ae74ff;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #ccc;
    transition: 0.2s;
}

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


/* ----------- HEADER ----------- */

header {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(#1b1b1b, #34044a);
    border-bottom: 2px solid #333;
}

h1 {
    font-size: 48px;
    margin: 0;
    letter-spacing: 2px;
    color: #af76ff;
    text-shadow: 0 0 10px #8c00ff;
}

.subtitle {
    font-size: 18px;
    color: #b5b5b5;
    margin-top: 10px;
}


/* ----------- CONTENT ----------- */

.container {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
}

.card {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    transition: 0.2s;
}

.card:hover {
    border-color: #8c00ff;
    transform: translateY(-4px);
}

.card h2 {
    margin-top: 0;
    color: #af76ff;
}


/* ----------- FOOTER ----------- */

footer {
    text-align: center;
    padding: 20px;
    color: #777;
    border-top: 1px solid #333;
    margin-top: 40px;
}       