
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
    font-family: sans-serif;
    color: #eee;
    background-color: #111;
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow-x: hidden;
}

*, *::before, *::after {
    box-sizing: inherit;
}

nav {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 1rem;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

nav a {
    color: #4aa3df;
    margin: 0 1rem;
    text-decoration: none;
}

nav a:hover {
    text-decoration: underline;
}

main {
    max-width: 960px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 8px;
}

h1.name-highlight {
    color: #89caff;
    font-size: 2.4rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 0px 0px 3px rgba(48, 172, 255, 0.7); /* Example shadow */
}

h2 {
    color: #4aa3df;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

h3 {
    color: #ccc;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1rem;
    line-height: 1.6;
}

table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.05);
    margin-top: 1rem;
    font-size: 1rem;
}

th, td {
    padding: 12px 16px;
    text-align: left;
}

tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.03);
}

a {
    color: #4aa3df;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
}

/* Responsive layout for mobile */
@media screen and (max-width: 600px) {
    h1.name-highlight {
        font-size: 1.8rem;
        text-align: center;
    }

    nav a {
        display: inline-block;
        margin: 0.5rem 0.5rem;
    }

    main {
        padding: 1rem;
        margin: 1rem auto;
    }

    th, td {
        padding: 10px;
        font-size: 0.95rem;
    }

    p {
        font-size: 0.95rem;
    }
}
