/* ============================= */
/* VARIABLES */
/* ============================= */

:root {
    --bg-color: #0d0d11;
    --card-bg: #16161d;
    --text-main: #ffffff;
    --text-muted: #a1a1aa;
    --accent-gradient: linear-gradient(90deg, #8a4fff, #d859ff);
    --btn-shadow: 0 0 20px rgba(138, 79, 255, 0.4);
}

/* ============================= */
/* BASE */
/* ============================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: "Inter", sans-serif;
    line-height: 1.6;
}

.container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================= */
/* TYPOGRAPHY */
/* ============================= */

h1 {
    font-size: 3rem;
    font-weight: 800;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.accent {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ============================= */
/* BUTTONS */
/* ============================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 14px 30px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: 0.2s;
    box-shadow: var(--btn-shadow);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.85rem;
}

/* ============================= */
/* HEADER */
/* ============================= */

.header {
    padding: 25px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    color: #d859ff;
    text-decoration: none;
}

.nav {
    display: flex;
    gap: 20px;
}

.nav a {
    color: var(--text-muted);
    text-decoration: none;
    transition: 0.2s;
}

.nav a:hover,
.nav a.active {
    color: #fff;
}

/* ============================= */
/* FOOTER */
/* ============================= */

.footer {
    padding: 60px 0;
    border-top: 1px solid #1c1c24;
    margin-top: 80px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-nav {
    display: flex;
    gap: 20px;
}

.footer-nav a {
    text-decoration: none;
    color: var(--text-muted);
}
