body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #e0e0e0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 10px;
}

header .hero-image {
    background-image: url('hero-placeholder.jpg');
    background-size: cover;
    background-position: center;
    height: 50vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

header .hero-text {
    color: #e0e0e0;
    font-size: 3em;
    text-align: center;
    text-shadow: 2px 2px 4px #000000;
}

main {
    padding: 20px;
    text-align: center;
}

section.app-description {
    margin-bottom: 40px;
    text-align: left; /* Left-align the text */
}

section.screenshots h2 {
    margin-bottom: 20px;
}

.screenshot-gallery {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.screenshot-gallery img {
    width: 200px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

footer {
    background-color: #333;
    color: #e0e0e0;
    padding: 20px;
    text-align: center;
}

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

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

footer ul li a {
    color: #fbbf24; /* Changed to a brighter color */
    text-decoration: none;
    font-weight: bold;
}

footer ul li a:hover {
    text-decoration: underline;
}

a {
    color: #fbbf24; /* Changed to a brighter color */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    header .hero-text {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    header .hero-text {
        font-size: 1.5em;
        padding: 10px;
    }

    main {
        padding: 10px;
    }

    .screenshot-gallery {
        flex-direction: column;
        align-items: center;
    }

    .screenshot-gallery img {
        width: 90%;
    }

    footer {
        padding: 10px;
    }
}
