
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #627071;
    color: #333;
    line-height: 1.6;
    padding: 20px;
}

header {
    background: #364d1e;
    color: white;
    padding: 40px 20px;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 30px;
}

header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2rem;
}

section {
    margin-bottom: 40px;
}

h2 {
    font-size: 2rem;
    color: #3b3b3b;
    margin-bottom: 15px;
}

p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

section img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-top: 15px;
}

.intro {
    background-color: #d7e8c2;
    padding: 20px;
    border-radius: 10px;
}

.gameplay {
    background-color: #e0f7fa;
    padding: 20px;
    border-radius: 10px;
}

.modes {
    display: flex;
    gap: 20px;
}

.mode {
    flex: 1;
    background-color: #fef1c7;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.mode h3 {
    font-size: 1.5rem;
    color: #4caf50;
}

.mode img {
    width: 100%;
    border-radius: 10px;
    margin-top: 10px;
}

.community {
    background-color: #f2e1ff;
    padding: 20px;
    border-radius: 10px;
}

footer {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-top: 40px;
}
