body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1a1a1a;
    /* Dark background for gaming theme */
}

header {
    background-color: #ff9900;
    /* Orange for header representing gaming excitement */
    color: #ffffff;
    /* White text for contrast */
    padding: 0.3em;
    text-align: center;
}

nav {
    background-color: #333333;
    /* Dark gray for navigation */
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

li {
    float: left;
}

a {
    display: block;
    color: #ffffff;
    /* White text for links */
    text-align: center;
    padding: 12px 16px;
    text-decoration: none;
}

a:hover {
    background-color: #4d4d4d;
    /* Slightly darker gray on hover */
    color: #ffffff;
    transition: background-color 0.3s ease;
}

.dropdown {
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #333333;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

section {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #2c2c2c;
    /* Dark gray for content background */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

h2 {
    color: #ff9900;
    /* Orange for titles */
    border-bottom: 2px solid #ff9900;
    padding-bottom: 10px;
}

p {
    line-height: 1.6;
    color: #cccccc;
    /* Light gray text */
}

.dropdown-content a:visited {
    color: #999999;
    /* Visited link color */
}

#sticky-footer {
    background-color: #333333;
    color: #ffffff;
    text-align: center;
    padding: 0.5em;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none;
    border-top: 2px solid #4d4d4d;
    /* Slightly darker gray border on top */
}

a.mail {
    color: #ffffff;
}

.logo img {
    width: 50px;
    height: auto;
}

sup {
    font-size: smaller;
    font-weight: bold;
    color: #ff9900;
    text-decoration: none;
    cursor: pointer;
    margin-left: 10px;
}