form {
    max-width: 300px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding-top: 10px;
    margin-top: 100px;
    padding-right: 40px;
    outline-width: 10px;
    outline-color: #000000;
    outline: #000000;
}

label {
    display: block;
    margin: 10px 0 5px;
    color: #000000;
}

input {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #6e8efb;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 1em;
    cursor: pointer;
}

button:hover {
    background-color: #ffffff00;
}

input[type=submit] {
    width: 100%;
    padding: 10px;
    background-color: #6e8efb;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 1em;
    cursor: pointer;
}

input[type=submit]:hover {
    background-color: #ff0000;
}

body {
    font-family: 'Arial, sans-serif';
    background: linear-gradient(135deg, #ffffff00, #ffffff00);
    color: #333;
    margin: 0;
    padding: 0;
}

header {
    text-align: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid #ddd;
    margin-bottom: 100px;
}

h1 {
    margin: 0;
    font-size: 2.5em;
    color: #444;
}

p {
    margin: 0;
    font-size: 1.2em;
    color: #666;
}

main {
    padding: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.pin-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 10px;
}

.pin-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 10px;
}

.pin-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 350px;
    text-align: center;
    transition: transform 0.3s;
}

.pin-card:hover {
    transform: scale(1.05);
}

.pin-card img {
    width: 100%;
    height: auto;
}

.pin-card h2 {
    margin: 10px 0;
    font-size: 1.5em;
    color: #333;
}

.pin-card p {
    margin: 0 10px 10px;
    font-size: 1em;
    color: #666;
}
footer {
    background-color: #ffffff00;
    color: #000000;
    text-align: center;
    padding: 20px 0;
    padding-top: 200px;
    position: relative;
    width: 100%;
}

header {
    background-color: #ffffff;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid black;
    margin-bottom: 100px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 450px;
    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;
    align-items: center;
}

nav ul li {
    margin: 0 15px;
    align-items: center;
}

nav ul li a {
    color: #000000;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
    white-space: nowrap;
    align-items: center;
}








.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;
}





.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;
        color: #000000;
    }

    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;
    }

    .pin-container {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
        margin-top: 35px;
    }
    
    #filtersButton {
        padding: 5px 10px;
        border: 1px solid #ccc;
        border-radius: 4px;
        cursor: pointer;
        position: relative;
        margin-top: 90px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .section,
    .section-game {
        padding: 50px 15px;
    }
}














/* #searchContainer {
    position: relative;
    /* justify-content: flex-end;
    align-items: flex-end; */
    /* margin-bottom: 10px;
    margin-top: 125px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

#searchInput {
    padding: 5px;
    margin-right: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#filtersButton {
    /* position: absolute; */
    /* padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    position: sticky;
}

#filtersDropdown {
    position: absolute;
    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    padding: 10px;
    margin-top: 170px;
}

#filtersDropdown label {
    display: flex;
    padding: 5px;
    cursor: pointer;
    align-items: center;
}

#filtersDropdown label input {
    display: flex;
    padding: 5px;
    cursor: pointer;
    align-items: center;
}

#filtersDropdown label:hover {
    background-color: #ddd;
}

.hidden {
    display: none;
} */ */ */

#searchContainer {
    position: relative;
    margin-bottom: 10px;
    margin-top: 125px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 250px;
}

#filtersButton {
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
}

#filtersDropdown {
    position: absolute;
    max-height: 350px;
    overflow-y: auto;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    padding: 10px;
    margin-top: 5px; /* Slight margin for better appearance */
}


#filtersDropdown label {
    display: flex;
    padding: 5px;
    cursor: pointer;
    align-items: center;
}

#filtersDropdown label input {
    display: flex;
    padding: 5px;
    cursor: pointer;
    align-items: center;
}

#filtersDropdown label:hover {
    background-color: #ddd;
}

.hidden {
    display: none;
}








.hidden {
    display: none;
}

#tagsContainer {
    position: relative;
    display: inline-block;
}

#tagsDropdown {
    position: absolute;
    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    max-height: 200px;
    overflow-y: auto;
}

#tagsDropdown label {
    display: block;
    padding: 8px;
    cursor: pointer;
}

#tagsDropdown label:hover {
    background-color: #ddd;
}








.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 125px;
}