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;
    justify-content: center;
    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: 150px 20px;
    text-align: center;
    position: relative;
    min-height: 1vh;
}

.section-game {
    padding: 150px 20px;
    text-align: center;
    position: relative;
}

.section-staff {
    padding: 150px 20px;
    text-align: center;
    position: relative;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 50vh;
}

.game-list-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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: #b95d27;
}

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%;
}

.hero-content img {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 500px;
    height: 500px;
    margin-top: 250px;
}

.hero-content h3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.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);
    }
}

.staff-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}

.staff-item {
    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-align: center;
}

.staff-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

.staff-item img {
    border-radius: 50%;
    width: 250px;
    height: auto;
    margin-bottom: 10px;
}

.staff-item h3 {
    margin: 0 0 10px 0;
    font-size: 1.5em;
    font-weight: bold;
}

.staff-item p {
    margin: 0 0 10px 0;
}

.staff-item button {
    background-color: #e3834c;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 25px;
    transition: background-color 0.3s;
}

.staff-item button:hover {
    background-color: #b95d27;
}

@media (max-width: 768px) {
    .staff-item {
        width: calc(50% - 40px);
    }
}

@media (max-width: 480px) {
    .staff-item {
        width: calc(100% - 40px);
    }
}

.contact-dropdown {
    display: flex;
    justify-content: center;
    position: relative;
    background-color: #1c1c1c;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    margin-top: 10px;
    width: 200px;
    text-align: center;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
}

.contact-dropdown a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    justify-content: center;
}

.contact-dropdown a:hover {
    background-color: #e3834c;
}

.contact-btn {
    margin-top: 10px;
    cursor: pointer;
}

.contact-dropdown.show {
    display: block;
    max-height: 500px;
    opacity: 1;
}

/* 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;
    }

    .section-staff {
        padding: 50px 10px;
    }

    .hero-content {
        height: auto;
        padding: 10px;
    }

    .game-list-title {
        height: auto;
        padding: 10px;
    }

    .staff-item img {
        width: 80%;
        margin-top: 10px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .section,
    .section-game {
        padding: 50px 15px;
    }
}
