/* General Body Styles */
body {
    background-color: #121212; /* Dark background */
    color: #e0e0e0; /* Light grey text */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Top Navigation Bar */
.top-nav {
    background-color: #1f1f1f;
    padding: 1rem 0;
    border-bottom: 1px solid #333;
}

.nav-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
}

.menu a {
    color: #e0e0e0;
    text-decoration: none;
    padding: 0.5rem 1rem;
    margin-left: 1rem;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.menu a:hover,
.menu a.active {
    background-color: #333;
    color: #ffffff;
}


/* Content Sections */
.content-section {
    display: none;
    padding: 2rem 0;
}

.content-section.active {
    display: block;
}

.page-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.page-container h1 {
    font-size: 2.5rem;
    font-weight: 500;
    color: #ffffff;
}

.page-container .subtitle {
    font-size: 1.25rem;
    color: #a0a0a0;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

/* Support List Styles */
.support-list {
    list-style: none;
    padding: 0;
    margin: 3rem 0;
    text-align: left;
    display: inline-block;
}

.support-list li {
    margin-bottom: 15px;
}

.support-list a {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    background-color: #2a2a2a;
    border-radius: 8px;
    text-decoration: none;
    color: #e0e0e0;
    font-size: 1rem;
    min-width: 300px;
    transition: background-color 0.3s;
}

.support-list a:hover {
    background-color: #383838;
}

.support-list i {
    font-size: 1.5rem;
    width: 40px;
    margin-right: 15px;
    color: #a0a0a0;
}

.support-list strong {
    margin-right: 10px;
    min-width: 80px;
    color: #ffffff;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #1f1f1f;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: #e0e0e0;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #333;
}

.dropdown:hover .dropdown-content {
    display: block;
}