@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DynaPuff:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quantico:wght@400;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #99cfff;
    min-height: 100vh;
}

header {
    background-color: rgb(87, 177, 255);
    position: relative;
}

.account-dropdown {
    position: absolute;
    top: 15px;
    right: 20px;
}

.account-icon {
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    margin: 0;
}

.account-icon:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.account-icon.bounce {
    animation: bounce 0.5s ease 5;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.account-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 50px;
    background-color: white;
    border-radius: 15px;
    min-width: 120px;
    overflow: hidden;
}

.account-menu.show {
    display: block;
}

.account-menu a {
    color: #0078b3;
    padding: 12px 16px;
    display: block;
    text-align: center;
}

.account-menu a:hover {
    background-color: rgba(87, 177, 255, 0.2);
}

.header-title {
    color: white;
    text-align: center;
    padding: 25px 20px;
    font-family: 'Roboto', sans-serif;
}

nav {
    text-align: center;
    padding-bottom: 15px;
}

a {
    text-decoration: none;
    color: white;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    transition: background-color 0.3s ease;
}

a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

section {
    text-align: center;
    padding: 40px 20px;
    max-width: 700px;
    margin: 30px auto;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 30px;
}

h2 {
    font-family: 'DynaPuff', sans-serif;
    color: #0078b3;
    font-weight: bold;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

p {
    font-family: 'Quantico', sans-serif;
    color: #333;
    line-height: 1.6;
    font-size: 1.1rem;
}

button {
    background-color: #57b1ff;
    color: white;
    border: none;
    padding: 12px 28px;
    text-align: center;
    text-decoration: none;
    display: block;
    font-size: 16px;
    font-weight: bold;
    margin: 30px auto;
    cursor: pointer;
    border-radius: 50px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

button:hover {
    transform: translateY(-2px);
}

button:active {
    transform: translateY(0);
}
.gege {
    width: 700px !important;
    height: 40px !important;
    font-family: 'Quantico', sans-serif !important;
}
hr {
    border: none;
    height: 6px;
    background-color: #57b1ff;
    border-radius: 3px;
    margin: 25px auto;
    width: 90%;
}
li {
    font-family: 'Quantico', sans-serif;
    color: #333;
    line-height: 1.6;
    font-size: 1.1rem;
}
ul {
    list-style-type: disc;
    padding-left: 20px;
    text-align: left;
}

.spaceguy {
    width: 60% !important;
}
h4 {
    font-family: 'DynaPuff', sans-serif;
    color: #0078b3;
    font-weight: bold;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.auth-section {
    max-width: 400px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.auth-form input {
    padding: 15px 20px;
    border: none;
    border-radius: 25px;
    font-family: 'Quantico', sans-serif;
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.7);
    color: #333;
}

.auth-form input:focus {
    outline: 3px solid #57b1ff;
}

.auth-form button {
    margin-top: 10px;
}

.auth-switch {
    margin-top: 20px;
    font-size: 0.95rem;
}

.auth-switch a {
    color: #0078b3;
    font-weight: bold;
}

.create-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.project-card {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 15px;
    text-align: left;
}

.project-card h4 {
    margin-bottom: 5px;
}

.game-cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.game-card {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 25px;
    width: 200px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s;
}

.game-card:hover {
    transform: translateY(-5px);
}

.game-card h4 {
    margin-bottom: 10px;
}