body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #282c34;
    color: white;
    margin: 0;
    padding: 0;
}

header {
    margin-top: 50px;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #61dafb;
    text-decoration: none;
    font-size: 18px;
}

.hero {
    margin-top: 50px;
}

button {
    background-color: #61dafb;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

button:hover {
    transform: scale(1.1);
}

/* Animations */
.fade-in {
    animation: fadeIn 2s ease-in-out;
}

.slide-up {
    animation: slideUp 1.5s ease-in-out;
}

.zoom-in {
    animation: zoomIn 1.5s ease-in-out;
}

.pulse {
    animation: pulse 1.5s infinite;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Chatroom Styling */
.chatroom {
    margin-top: 50px;
    padding: 20px;
    background-color: #1c1e26;
    border-radius: 10px;
    display: inline-block;
    width: 80%;
}

#messages {
    height: 200px;
    overflow-y: auto;
    border: 1px solid #61dafb;
    padding: 10px;
    background: #282c34;
    text-align: left;
}

#messageInput {
    width: 70%;
    padding: 10px;
    border: none;
    border-radius: 5px;
}

button {
    margin-left: 10px;
}
.games {
    margin-top: 30px;
}

.game {
    margin-bottom: 30px;
}

.game iframe {
    width: 600px;
    height: 400px;
    border-radius: 10px;
}

