body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;  /* Light background */
    color: #333;  /* Darker text color */
    text-align: center;  /* Center all text */
}

header {
    background: linear-gradient(to right, #330903, hwb(11 3% 53%));  /* Purple to red gradient */
    color: white;
    padding: 1rem;
    text-align: center;
    position: relative;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

header .logo {
    width: 100px;
    height: auto;
    margin-bottom: 10px;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

main {
    padding: 20px;
}

section {
    padding: 20px;
    background: white;  /* Light background for sections */
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);  /* Light shadow for a modern look */
}

section .content {
    text-align: center;
    padding: 20px;
}

section .content ul {
    text-align: left;  /* Left align bullets */
    margin: 0 auto;  /* Center the list container */
    display: inline-block;  /* Center the list itself */
}

.screenshot-gallery {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.screenshot-gallery img {
    width: 30%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

footer {
    text-align: center;
    padding: 10px;
    background: linear-gradient(to right, #000000, hwb(11 3% 53%));  /* Black to purple gradient */
    color: white;
    position: fixed;
    bottom: 0;
    width: 100%;
    padding-top: 20px;  /* Add padding before the footer */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
    }
    
    nav ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .screenshot-gallery {
        flex-direction: column;
        gap: 10px;
    }
    
    .screenshot-gallery img {
        width: 100%;
    }
    
    section {
        padding: 10px;
        margin-bottom: 10px;
    }
    
    section .content {
        padding: 10px;
    }
    
    footer {
        position: relative;
    }
}
