* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
body {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: url('https://source.unsplash.com/1600x900/?community,city') no-repeat center center/cover;
    color: #fff;
    min-height: 100vh;
    text-align: center;
    overflow-y: auto; /* Allows vertical scrolling */
    padding-bottom: 40px; /* Adds spacing at the bottom for a better scroll experience */
}
.overlay {
    position: fixed; /* Fixed to cover the viewport without moving */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}
header {
    margin-top: 50px;
    text-align: center;
    padding: 20px;
    max-width: 800px;
}
header h1 {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 10px;
    animation: fadeIn 2s ease-in-out;
}
header p {
    font-size: 1.3em;
    max-width: 600px;
    margin: 10px auto 20px;
    line-height: 1.6;
    animation: fadeIn 2.5s ease-in-out;
}
.cta-button {
    display: inline-block;
    padding: 12px 25px;
    font-size: 1.2em;
    color: #fff;
    background: #FFD700;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s ease;
    animation: fadeIn 3s ease-in-out;
}
.cta-button:hover {
    background: #ffa500;
}
section {
    margin: 40px 0;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
}
section h2 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #FFD700;
}
#features .feature, #about p, #contact p {
    font-size: 1.1em;
    margin: 10px 0;
    color: #ccc;
}
.screenshots-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}
.screenshots-container img {
    width: 150px;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}
.screenshots-container img:hover {
    transform: scale(1.05);
}
footer {
    margin-top: 30px;
    font-size: 0.9em;
    color: #ccc;
    padding: 20px;
}
/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
