/* General Reset */
body, h1, h2, p, ul, li, a, button {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #1e1e1e; /* Dark background */
    color: #e0e0e0; /* Light text */
    line-height: 1.6;
}

/* Navigation Bar */
nav {
    background: #2c2c2c; /* Dark navbar */
    box-shadow: 0 2px 4px rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 2rem;
}

nav ul {
    display: flex;
    justify-content: flex-end;
    list-style: none;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: #e0e0e0; /* Light text for links */
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #1e90ff; /* Accent color */
}

/* Header */
header {
    text-align: center;
    padding: 3rem 1rem;
    background: #2c2c2c; /* Dark background for header */
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(255, 255, 255, 0.1);
}

header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

header p {
    font-size: 1.2rem;
    color: #a0a0a0; /* Muted text color */
}

/* Download Box */
.download-box {
    background: #2c2c2c;
    padding: 2rem;
    text-align: center;
    margin: 2rem auto;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
    max-width: 600px;
}

.download-box h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.download-box p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #a0a0a0;
}

.download-box button {
    background: #1e90ff;
    color: #fff;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s, box-shadow 0.3s;
}

.download-box button:hover {
    background: #0066cc; /* Slightly darker accent color on hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Showcase */
.showcase {
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 2rem;
}

.showcase h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.showcase-images img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
}
