:root {
    --discord-blurple: #5865F2;
    --discord-dark: #23272a;
    --discord-black: #1e1f22;
    --text-white: #ffffff;
    --text-gray: #b5bac1;
    --aero-bg: rgba(30, 31, 34, 0.75);
    --aero-border: rgba(255, 255, 255, 0.15);
}

* { box-sizing: border-box; }

body {
    margin: 0;
    padding: 0;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--text-white);
    scroll-behavior: smooth;
}

/* NAV (shared across all pages) */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 10%;
    flex-wrap: wrap;
    row-gap: 10px;
}

.logo-container {
    display: inline-block;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.logo-container:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 0 15px #ff9100) drop-shadow(0 0 25px #ffd500);
}

.nav-logo-img {
    max-height: 55px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.1));
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 600;
    font-size: 0.95rem;
    opacity: 0.7;
    transition: 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
    opacity: 1;
    color: var(--discord-blurple);
}

footer {
    padding: 40px;
    text-align: center;
    color: var(--text-gray);
    font-size: 0.85rem;
    border-top: 1px solid #333;
    background: var(--discord-black);
}

.powered-by {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.powered-by img {
    width: 20px;
    height: 20px;
    image-rendering: pixelated;
}

@media (max-width: 700px) {
    nav { padding: 16px 6%; }
    .nav-links a { margin-left: 12px; font-size: 0.85rem; }
    .nav-logo-img { max-height: 44px; }
}
