/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Basic Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header */
header {
    background: #333;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo h1 {
    margin-left: 10px;
    display: inline;
}

nav a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}

/* Game Section Styling */
section {
    padding: 40px 20px;
}

.game-title {
    margin-bottom: 20px;
    text-align: center;
}

.game-showcase {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    text-align: left;
    margin-top: 10px;
}

.game-showcase img {
    max-width: 400px;
    border-radius: 10px;
}

.game-description {
    max-width: 400px;
}

button {
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #555;
}

/* Contact Section */
#contact {
    text-align: center;
}

.social-links a {
    margin: 0 10px;
    color: #333;
    text-decoration: none;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    margin-top: 40px;
}
/* Store Buttons */
.store-buttons {
    margin-top: 15px;
    display: flex;
    gap: 15px; /* Khoảng cách giữa hai nút */
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
}

.button:hover {
    background-color: #555;
}

.trailerShowcaseTitle {
    display: flex;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
    width: 100%;
}

.trailerLinkApp {
    bottom: 20px;
    display: flex;
}
