body {
    font-family: 'Helvetica', sans-serif;
    background-color: #1E1E2E;
    color: #E0E0E0;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    font-family: 'Helvetica', sans-serif;
    color: #FFD700;
    letter-spacing: 1px;
    font-weight: bold;
    text-transform: uppercase;
}

h1 {
    font-size: 2em;
    border-bottom: 3px solid #FF4500;
    padding-bottom: 5px;
}

h2 {
    font-size: 1.5em;
}

h3 {
    font-size: 1.2em;
}

p {
    font-family: 'Verdana', sans-serif;
    color: #E0E0E0;
    line-height: 1.7;
}

#container {
    margin: 20px auto;
    width: 90%;
    max-width: 800px;
    background: #2A2A3A;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

#header {
    background-color: #3B3B58;
    text-align: center;
    border-radius: 12px;
    padding: 12px;
    font-weight: bold;
    font-size: 1.0em;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.15);
    color: #FFD700;
}

#nav1 {
    text-align: center;
    margin-top: 25px;
}

#nav1 a {
    display: inline-block;
    padding: 12px 18px;
    text-decoration: none;
    background-color: #3B3B58;
    color: #FFD700;
    font-weight: bold;
    border-radius: 12px;
    transition: all 0.3s ease;
}

#nav1 a:hover {
    background-color: #FF4500;
    color: white;
    transform: scale(1.05);
}

#nav1 a.active {
    background-color: blue !important;
}

a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    color: #FF4500;
    text-decoration: underline;
}

#content {
    background-color: #3B3B58;
    border-radius: 12px;
    padding: 18px;
    font-family: Verdana, sans-serif;
    max-width: 600px;
    color: white;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
    margin: 20px auto;
}

.dropdown {
    display: inline-block;
    position: relative;
}

.dropbtn {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.arrow {
    transition: transform 0.3s ease;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #3B3B58;
    min-width: 160px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    z-index: 100;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropdown-content a {
    display: block;
    padding: 12px;
    text-decoration: none;
    color: #FFD700;
    text-align: left;
    transition: background-color 0.3s;
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown:hover .arrow {
    transform: rotate(180deg);
}

.dropdown-content a:hover {
    background-color: #FF4500;
    color: white;
}
