* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #071330;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}

header {
    display: flex;
    justify-content: space-around;
    padding: 20px;
	flex-wrap: wrap;
}

.hero {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px 40px;
}

.nav-links {
    display: flex;
	flex-wrap: wrap;
    gap: 30px;
}

.nav-links a {
    color: white;
    font-size: 14px;
    text-decoration: none;
	display:block;
	width:100px;
	padding:1px;
	transition:.3s;
}
.nav-links a:hover{
    color:#666;
}
li{
	display:inline-block;
	margin:5px;
	border-color:white;
	text-align: left;
}
.logo {
    text-align: center;
    margin-right: 0px;
}

.logo h1 {
    color: white;
    font-size: 64px;
    font-style: italic;
    margin: 0;
    line-height: 1;
}

.logo p {
    color: white;
    font-size: 28px;
    font-weight: bold;
    font-style: italic;
    margin: 0;
}
.btn-signin {
    background: #e02c2c; 
	color: white;
	padding: 10px 24px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-signin:hover {
    background: #ff3b3b;
	transform: translateY(-1px);
}
.btn-signin a{
	color: white;
	font-size: 14px;
	text-decoration: underline;
	display:block;
	width:100px;
	padding:1px;
}
.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;
}

.game-section {
    display: flex;
    align-items: center;
    margin: 80px 50px;
	justify-content: space-between;
	gap: 25px;
	flex-wrap: wrap;
}

.game-info {
    width: 40%;
}

.game-info h2 {
    font-size: 42px;
    margin-bottom: 30px;
}

.game-info p {
    color: #bdbdbd;
    margin-bottom: 15px;
}

.game-image{
	display:flex;
	justify-content: space-between;
	gap: 25px;
}

.game-image img {
    width: 600px;
    height: 300px;
    object-fit: cover;
    border-radius: 35px;
}

.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;
}