/* ===== GLOBAL STYLES ===== */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #0d0d0d;
    color: #f0f0f0;
}

/* Main content spacing */
.main-content {
    padding-top: 50px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Headings */
h1 {
    font-size: 2.4rem;
    text-shadow: 0 0 8px rgba(0, 255, 120, 0.3);
}

h3 {
    font-weight: 300;
    max-width: 700px;
    margin: 20px auto;
    line-height: 1.7;
    text-shadow: 0 0 6px rgba(0, 255, 120, 0.2);
}

/* ===== NAVBAR ===== */
.navbar {
    list-style: none;
    padding: 0;
    margin: 20px 0 40px 0;

    display: flex;
    justify-content: center;
    gap: 25px;
}

.navbar li a {
    text-decoration: none;
    color: #cccccc;
    padding: 10px 18px;
    border-radius: 6px;
    transition: 0.25s;
    font-size: 1.1rem;
}

/* Hover effect */
.navbar li a:hover {
    background: #333;
    color: #fff;
}

/* ACTIVE PAGE LINK */
.navbar a.active {
    background: #4caf50;
    color: #ffffff;
    font-weight: bold;
    box-shadow: 0 0 10px #4caf50;
}

/* Smooth transitions for everything */
* {
    transition: all 0.2s ease;
}
