* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #1a1a1a;
    color: #e0e0e0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ff0000;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    border-bottom: 2px solid #000;
}

header .logo {
    font-size: 2em;
    color: #fff;
    font-weight: bold;
    letter-spacing: 2px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: #fff;
    text-transform: uppercase;
    font-size: 1.2em;
    text-decoration: none;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ffa500;
}

main {
    
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.content {
    width: 80%;
    max-width: 1000px;
    background-color: #333;
    padding: 40px;
    border: 2px solid #ff0000;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s, background-color 0.3s;
}

.content:hover {
    transform: translateY(-10px);
    background-color: #444;
}

footer {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: #222;
    color: #ccc;
    flex-wrap: wrap;
    gap: 50px;
    margin: 0 50px; 
}

.footer-left {
    flex: 1;
}

.footer-right {
    flex: 1;
}

.footer-right ul {
    list-style: none;
    padding: 0;
}

.footer-right ul li {
    margin-bottom: 10px;
}

.footer-right ul li a {
    color: #ffcc00;
    text-decoration: none;
}

.footer-right ul li a:hover {
    text-decoration: underline;
}


@media (max-width: 768px) {
    header {
        flex-direction: column;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    footer {
        flex-direction: column;
        align-items: center;
        margin: 0 10px;
    }

    .footer-left, .footer-right {
        text-align: center;
    }
}
/********/
header h1 {
    color: #ffcc00;
    font-size: 3em;
}
.game-preview {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px;
}
.game-preview img {
    width: 400px;
    height: auto;
    border-radius: 10px;
    margin: 20px;
}
.game-info {
    max-width: 600px;
    padding: 20px;
}
.game-info h2 {
    color: #ffcc00;
    font-size: 2.5em;
}
.game-info p {
    font-size: 1.2em;
    line-height: 1.5;
}
.cta-button {
    display: block;
    background-color: #ff6600;
    color: #fff;
    text-align: center;
    padding: 15px;
    font-size: 1.5em;
    border-radius: 5px;
    margin: 30px 0;
    text-decoration: none;
}
@media (max-width: 768px) {
    .game-info h2 {
        font-size: 1.8em;
    }
    .game-info p {
        font-size: 1em;
    }
    .cta-button {
        padding: 10px 20px;
        font-size: 1em;
    }
}