body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #fff;
    background: linear-gradient(135deg, #0f2431, #3f6f8c);
    background-attachment: fixed;
}

header {
    background-color: #1c1c1c62;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 350px;
    margin: 0 auto;
    padding: 0 20px;
}

.menu-icon {
    display: none;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    margin: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #e3834c;
}

.section {
    padding: 80px 20px;
    text-align: center;
    position: relative;
    min-height: 70vh;
}

.section-game {
    padding: 15px 20px;
    text-align: center;
    position: relative;
    /* min-height: 1vh; */
}

.section-game h1 {
    font-size: 2.5em;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 50vh;
    padding: 20px;
}

.hero-content img {
    max-width: 100%;
    height: auto;
    width: 30%;
    margin-top: 150px;
}

.game-list-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* height: 50vh; */
}

h1, h2 {
    margin-bottom: 20px;
}

button {
    background-color: #e3834c;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 25px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #e3834c;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

label {
    margin: 10px 0 5px;
}

input, textarea {
    padding: 10px;
    margin-bottom: 15px;
    width: 100%;
    max-width: 400px;
    border: none;
    border-radius: 5px;
}

input:focus, textarea:focus {
    outline: none;
    border: 1px solid #1db954;
}

footer {
    background-color: #1c1c1c00;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    position: relative;
    width: 100%;
}

/* Responsive Styles */
@media (max-width: 767px) {
    .menu-icon {
        display: block;
    }
    nav ul {
        display: none;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    nav ul li {
        margin: 10px 0;
    }
    nav ul li a {
        font-size: 18px;
    }
    nav ul.active {
        display: flex;
    }
    .section, .section-game {
        padding: 200px 10px;
    }
    .hero-content {
        height: auto;
        padding: 10px;
    }
    .game-list-title {
        height: auto;
        padding: 10px;
    }
    .hero-content img {
        width: 80%;
        margin-top: 10px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .section, .section-game {
        padding: 70px 15px;
    }
}


.project-list-projects {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}


.project-item-projects {
    background-color: #1c1c1c;
    margin: 20px;
    padding: 20px;
    border-radius: 10px;
    width: calc(33% - 40px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    color: #fff;
    text-decoration: none;
}

.project-item-projects:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

.project-item-projects h3 {
    margin: 0 0 10px 0;
    font-size: 1.5em;
    font-weight: bold;
}

.project-item-projects p {
    margin: 0 0 10px 0;
}


@media (max-width: 768px) {
    .project-item-projects {
        width: calc(50% - 40px);
    }
}

@media (max-width: 480px) {
    .project-item-projects {
        width: calc(100% - 40px);
    }
}