/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Dark Theme Colors */
body {
    background-color: #121212; /* Dark background */
    color: #e0e0e0; /* Light text */
    line-height: 1.6;
    font-size: 16px;
}

/* Navigation Bar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #1e1e1e; /* Slightly lighter dark */
    border-bottom: 1px solid #333;
}

.navbar .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff9800; /* Highlight color */
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
}

.nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.nav-links a:hover {
    background-color: #333; /* Hover effect */
    color: #ff9800;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 3rem 1rem;
    background: linear-gradient(135deg, #1e1e1e, #121212);
    color: #ff9800;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    color: #e0e0e0;
}

/* Categories Section */
.categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
}

.category {
    background-color: #1e1e1e;
    padding: 1.5rem;
    text-align: center;
    border-radius: 10px;
    border: 1px solid #333;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.category a {
    text-decoration: none;
    font-weight: bold;
    color: #ff9800;
    font-size: 1.2rem;
}

.category:hover {
    background-color: #333;
    transform: scale(1.05);
}

/* Main Section */
main h1 {
    text-align: center;
    margin: 2rem 0;
    color: #ff9800;
}

main ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 600px;
}

main ul li {
    margin: 1rem 0;
    background-color: #1e1e1e;
    padding: 1rem;
    border-radius: 5px;
    border: 1px solid #333;
    transition: background-color 0.3s ease;
}

main ul li a {
    text-decoration: none;
    color: #e0e0e0;
}

main ul li a:hover {
    color: #ff9800;
}

/* Footer */
footer {
    text-align: center;
    padding: 1rem;
    background-color: #1e1e1e;
    border-top: 1px solid #333;
    color: #e0e0e0;
}
