/* General resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #212121;
    color: #bebebe;
    line-height: 1.6;
}

/* Header Styles */
header {
    background-color: #212121;
    color: #fff;
    padding: 15px 0;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo {
    font-size: 2rem;
    font-weight: bold;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #f39c12;
}

/* DLC Section Styles */
.dlc-list {
    background-color: #212121;
    padding: 40px 20px;
    text-align: center;
}

.dlc-list h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #bbbbbb;
}

#dlc-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.dlc-item {
    background-color: #f0f0f0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.dlc-item:hover {
    transform: translateY(-5px);
}

.dlc-item img {
    max-width: 100%;
    border-radius: 5px;
}

.dlc-item h3 {
    font-size: 1.5rem;
    margin: 10px 0;
}

.dlc-item p {
    font-size: 1rem;
    color: #777;
}

/* Footer Styles */
footer {
    background-color: #212121;
    color: #fff;
    padding: 20px;
    text-align: center;
    font-size: 0.9rem;
    margin-top: 40px;
}

footer p {
    margin: 5px 0;
}

footer #copyright {
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
        margin-top: 10px;
    }

    nav ul li {
        margin-left: 0;
        margin-bottom: 10px;
    }

    #dlc-container {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .dlc-list h2 {
        font-size: 2rem;
    }
}
