/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: url('image/wikibackground.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #e0e0e0; /* Light text */
    line-height: 1.6;
    margin: 0;
    padding: 0 0 0 0;
    min-height: 100vh;
    background-attachment: fixed;
}

header {
    background-color: rgb(0, 23, 46); /* Dark gray */
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid #003366; /* Dark blue accent */
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f39c12; /* Orange-yellow highlight similar to EFT */
}

.logo img {
    width: 70px;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

nav ul li a {
    color: #799400;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #f39c12; /* Orange-yellow highlight */
}

main {
    display: flex;
    min-height: calc(100vh - 70px);
}

.sidebar {
    background-color: rgba(0, 23, 46, 0.85); /* Dark blue with transparency */
    width: 220px;
    padding: 1.5rem;
    border-right: 3px solid #003366;
    color: #181818;
}

.sidebar h2 {
    margin-bottom: 1rem;
    color: #f39c12;
}

.sidebar ul {
    list-style: none;
}

.sidebar ul li {
    margin-bottom: 0.8rem;
}

.sidebar ul li a {
    color: #799400;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar ul li a:hover {
    color: #f39c12;
}

.content {
    flex: 1;
    padding: 2rem;
    background-color: rgba(24, 24, 24, 0.85); /* Slightly lighter dark background with transparency */
}

.content h1 {
    margin-bottom: 1rem;
    color: #f39c12;
}

.content p {
    font-size: 1.1rem;
    max-width: 800px;
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
    main {
        flex-direction: column;
    }
    .sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 3px solid #003366;
    }
    .toggle-button {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        position: fixed;
        top: 10px;
        left: 10px;
        z-index: 1000;
        padding: 5px;
        background-color: #121212; /* Changed to match site background */
    }
    .toggle-button svg rect {
        transition: fill 0.3s ease;
    }
    .toggle-button:hover svg rect {
        fill: #f39c12;
    }
}
