body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #1a1a1a;
    color: #f2f2f2;
}

header {
    background: #333;
    padding: 15px 0;
}

.container {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

h1 {
    margin: 0;
    font-size: 2em;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
    position: relative;
}

nav ul li a {
    color: #f2f2f2;
    text-decoration: none;
}

nav ul li a:hover {
    color: #ff6600;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #333;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: #f2f2f2;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #575757;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.intro {
    background: url('background.jpg') no-repeat center center/cover;
    padding: 150px 0;
    text-align: center;
}

.intro h2 {
    font-size: 3em;
    margin-bottom: 20px;
}

.intro p {
    font-size: 1.5em;
}

.screenshots {
    padding: 50px 0;
    text-align: center;
}

.screenshots h2 {
    margin-bottom: 40px;
}

.gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.gallery img {
    width: 300px;
    border: 5px solid #333;
    transition: transform 0.3s ease-in-out;
}

.gallery img:hover {
    transform: scale(1.1);
}

footer {
    background: #333;
    text-align: center;
    padding: 20px 0;
    color: #f2f2f2;
    position: fixed;
    width: 100%;
    bottom: 0;
}
