*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#071330;
    color:white;
}

/* Navbar */
nav{
    width:100%;
    padding:20px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo {
    text-align: center;
    margin-right: 0px;
}

.logo h1 {
    color: white;
    font-size: 64px;
    font-style: italic;
    margin: 0;
    line-height: 1;
}

.logo span {
    color: white;
    font-size: 28px;
    font-weight: bold;
    font-style: italic;
    margin: 0;
}

.nav-links{
    display:flex;
    gap:35px;
    list-style:none;
}

.nav-links a{
    text-decoration:none;
    color:white;
    font-weight:500;
    transition:.3s;
}

.nav-links a:hover{
    color:#666;
}
.search-box{
    width: 280px;      
    height: 45px;      
    background: white;
    border-radius: 30px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.search-box input{
    flex: 1;
    border: none;
    outline: none;
    padding: 0 15px;
    font-size: 15px;
}

.search-box button{
    width: 55px;
    height: 45px;
    border: none;
    background: #1296e8;
    color: white;
    cursor: pointer;
}
/* Downloads section */
.downloads{
    text-align:center;
    padding:40px 0;
}

.downloads h2{
    font-size:3rem;
    margin-bottom:40px;
    font-weight:700;
}

/* Game cards */
.game-card{
    width:700px;
    max-width:90%;
    margin:0 auto 80px;
}

.game-card img{
    width:100%;
    border-radius:15px;
    display:block;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
    transition:.4s;
}

.game-card img:hover{
    transform:scale(1.03);
}

.game-card h3{
    margin-top:20px;
    font-size:2rem;
    font-weight:700;
}

/* Requirements section */
.requirements{
    width:80%;
    max-width:900px;
    margin:60px auto;
}

.requirements h3{
    font-size:1.5rem;
    margin-bottom:30px;
}

.req-grid{
    display:grid;
    grid-template-columns:120px 1fr;
    gap:30px;
    margin-bottom:40px;
}

.year{
    font-weight:700;
    color:#555;
}

.games-title{
    font-weight:700;
    margin-bottom:10px;
	grid-column-start:2;
	grid-column-end:3;
}

.req-list{
    color:#666;
    line-height:1.8;
    font-size:.95rem;
	grid-column-start:2;
	grid-column-end:3;
}
.footer {
    display: flex;
    justify-content: center;
    gap: 120px;
    padding: 40px 0;
    background-color: #06122c;
}

.footer-column h3 {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-column a {
    display: block;
    color: #8a90a6;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}