body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
    color: #333;
}

.container {
    max-width: 960px;
    margin: auto;
    overflow: auto;
    padding: 0 20px;
}

header {
    background-color: #000; /* Fallback color */
    background-image: url('images/background.png');
    background-repeat: repeat; /* Allow the background to tile */
    color: #ecf0f1;
    padding: 0; /* Removed vertical padding to match image height */
    text-align: center;
}

header .logo {
    max-width: 100%;
    height: auto;
    display: block;
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
}

header .subtitle {
    font-size: 1.2rem;
    color: #bdc3c7;
}

main section {
    background: #fff;
    margin: 20px 0;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.credits ul {
    list-style-type: none;
    padding: 0;
    text-align: center;
}

.credits li {
    margin-bottom: 10px;
}

.credits a {
    color: #3498db;
}

.credits a:hover {
    text-decoration: underline;
}

h2 {
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
    margin-top: 0;
}

.download .store-buttons {
    text-align: center;
    margin-top: 20px;
}

.store-button {
    display: inline-block;
    text-decoration: none;
    margin: 5px;
    transition: opacity 0.3s ease;
}

.store-button:hover {
    opacity: 0.8;
}

.store-button.disabled {
    cursor: not-allowed;
    opacity: 0.6;
    filter: grayscale(100%);
}

.store-button.disabled:hover {
    opacity: 0.6; /* Keep opacity on hover for disabled buttons */
}

.store-button img {
    height: 60px; /* Adjust height as needed */
    width: auto;
}

.screenshot-gallery {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 20px; /* Add space for the scrollbar */
}

.screenshot-gallery img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.feature-columns {
    display: flex;
    gap: 30px;
}

.feature-list {
    flex: 1;
}

.feature-list ul {
    list-style-type: '🏈';
    padding-left: 20px;
}

.feature-list li {
    padding-left: 10px;
    margin-bottom: 10px;
}

footer {
    text-align: center;
    padding: 20px;
    background: #2c3e50;
    color: #ecf0f1;
    margin-top: 30px;
}

footer a {
    color: #3498db;
    text-decoration: none;
}

@media (max-width: 768px) {
    .feature-columns {
        flex-direction: column;
    }
}

.source-code {
    text-align: center;
}

.info-button {
    display: inline-block;
    background: #2c3e50;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin: 10px 5px 0;
    transition: background-color 0.3s ease;
}
.info-button:hover {
    background: #34495e;
}
