body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #111a22;
    color: white;
}

header {
    background-color: #000000;
    padding: 1rem;
    text-align: center;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
}

.banner {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('img/caps/Cap3.png') no-repeat center center/cover;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.banner-content h2 {
    font-size: 2rem;
    margin: 0;
}

.banner-content p {
    font-size: 1.2rem;
    margin: 0.5rem 0;
}

#playButton {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#playButton:hover {
    background-color: #0056b3;
}

.section-title {
    background-color: #000000;
    color: white;
    padding: 1rem;
    border-radius: 20px;
    text-align: center;
    width: 90%;
    margin-top: 2rem;
    font-size: 2rem;
}

.about-game, .culture-inspiration, .game-modes, .development-team {
    background-color: #214253;
    width: 90%;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    margin: 2rem 0;
}

.image-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.about-image {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
}

.info-box {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.info-section {
    background-color: #111a22;
    padding: 1rem;
    border-radius: 10px;
    flex: 1 1 300px;
    max-width: 45%;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: left;
}

.info-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.info-section p {
    font-size: 1rem;
    margin: 0;
}

.culture-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.culture-item {
    text-align: center;
}

.culture-image {
    width: 100%;
    max-width: 200px;
    border-radius: 10px;
}

.culture-item p {
    font-size: 1rem;
    margin-top: 0.5rem;
    color: white;
}

.game-modes {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mode-item {
    display: flex;
    align-items: center;
    text-align: left;
    padding: 1rem;
}

.mode-item img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    margin: 1rem;
}

.mode-item .mode-text {
    flex: 1;
    padding: 1rem;
}

.mode-item.mode-left .mode-text {
    text-align: right;
}

.mode-item.mode-right .mode-text {
    text-align: left;
}

.development-team {
    text-align: center;
}

.team-description {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.team-list {
    list-style-type: none;
    padding: 0;
    margin: 1rem 0;
    font-size: 1rem;
}

.team-list li {
    margin-bottom: 0.5rem;
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.social-icon {
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #007bff;
}

.footer-text {
    margin-top: 1.5rem;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .mode-item {
        flex-direction: row;
    }
    .mode-item.mode-left .mode-text {
        order: 1;
    }
    .mode-item.mode-left img {
        order: 2;
    }
    .mode-item.mode-right .mode-text {
        order: 2;
    }
    .mode-item.mode-right img {
        order: 1;
    }
}