/* ========================= */
/*      RuneScape Pixel Font  */
/* ========================= */
@font-face {
    font-family: 'RuneScape';
    src: url('fonts/runescape.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


/* ========================= */
/*        General            */
/* ========================= */
body {
    font-family: 'RuneScape', monospace, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('/images/background.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: #f0e6d2;

    -webkit-font-smoothing: none;
    -moz-osx-font-smoothing: grayscale;
}

/* Sections semi-transparentes */
header, main, footer {
    background-color: rgba(42, 42, 42, 0.85);
    padding: 20px;
    border-radius: 8px;
    margin: 10px;
}

/* ========================= */
/*        Header             */
/* ========================= */
header {
    text-align: center;
}

header h1 {
    font-family: 'RuneScape', monospace;
    font-size: 32px;
    color: #ffd700;
    margin: 0;
}

nav a {
    text-decoration: none;
    color: #ffd700;
    font-weight: bold;
    margin: 0 15px;
    transition: 0.3s;
    font-family: 'RuneScape', monospace;
}

nav a:hover {
    color: #ffffff;
}

/* ========================= */
/*      Main Content         */
/* ========================= */
main {
    max-width: 1000px;
    margin: 20px auto;
    text-align: center;
}

.content h2 {
    font-family: 'RuneScape', monospace;
    color: #ffd700;
    margin-bottom: 15px;
}

.content p {
    font-family: 'RuneScape', monospace;
    font-size: 1.2em;
    color: #f0e6d2;
}

ul.items {
    list-style: none;
    padding: 0;
}

ul.items li {
    background-color: rgba(30, 30, 30, 0.8);
    padding: 10px;
    margin-bottom: 8px;
    border-left: 4px solid #ffd700;
    display: flex;
    align-items: center;
    font-family: 'RuneScape', monospace;
}

/* ========================= */
/*         Buttons           */
/* ========================= */
.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.buttons a {
    display: inline-block;
    background-color: #ffd700;
    color: #000;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: bold;
    font-family: 'RuneScape', monospace;
    transition: 0.3s;
}

.buttons a:hover {
    background-color: #ffdd55;
}

/* ========================= */
/*         Footer            */
/* ========================= */
footer {
    text-align: center;
    color: #fff;
    font-size: 0.9em;
    font-family: 'RuneScape', monospace;
}
