/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    color: #333;
    background-color: #f7f7f7;
    line-height: 1.6;
}

header {
    text-align: center;
    padding: 40px 20px;
    background-color: #f0e5f5;
    color: #333;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2em;
    color: #555;
}

#about-game, #faq {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

#about-game h2, #faq h2 {
    color: #663399;
    margin-bottom: 10px;
}

#game {
    display: flex;
    justify-content: center;
    padding: 20px;
}

iframe {
    width: 100%;
    height: 700px;
    border: 1px solid #ddd;
    border-radius: 10px;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #f0e5f5;
    color: #333;
    font-size: 0.9em;
}

.share-sidebar {
    position: fixed;
    top: 20%;
    left: 0;
    background-color: #ffffff;
    padding: 15px;
    border-radius: 0 10px 10px 0;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.share-sidebar p {
    font-size: 1.1em;
    color: #663399;
    font-weight: bold;
    margin-bottom: 10px;
}

.share-sidebar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.share-sidebar img:hover {
    transform: scale(1.1);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}
