body {
    font-family: 'Treasure Map Deadhand', serif;
    background: url('https://www.transparenttextures.com/patterns/aged-paper.png') repeat;
    color: brown;
    text-align: center;
    padding: 2rem;
    margin-top: 70px; /* keeps content below navbar */
}

p {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: auto;
    color: black;
    text-shadow: 1px 1px 2px #000;
    font-family: cursive;
}

/* Discord Button */
.discord-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 20px;
    font-size: 1.1rem;
    font-weight: bold;
    background-color: #5865F2;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s, background-color 0.2s;
}

.discord-btn:hover {
    background-color: #4752c4;
    transform: scale(1.05);
}

/* Title */
#title {
    font-size: clamp(40px, 8vw, 80px);
    font-family: 'Treasure Map Deadhand', cursive;
    margin-top: 80px;
    color: #d4af37;
    text-shadow: 2px 2px 4px black;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.85);
    padding: 15px 0;
    z-index: 2000;
}

/* Nav Links */
.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    color: #d4af37;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    transition: color 0.2s;
}

.nav-links li a:hover {
    color: white;
}

/* Mobile tweaks */
@media (max-width: 600px) {
    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }
}

.raid-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #d4af37;
    color: black;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 3px 6px rgba(0,0,0,0.4);
    transition: transform 0.2s, background-color 0.2s;
}

.raid-btn:hover {
    background-color: #b8912e;
    transform: scale(1.05);
}
