/* Reset some default browser styles */
body, h1, p, a, img {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
    box-sizing: border-box;
}

/* Set a background color and basic font */
body {
    background-color: #000000; /* Black background */
    color: #ffffff; /* White text color for readability */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding: 20px;
    text-align: center;
}

/* Header Styles */
header {
    margin-bottom: 40px;
}

header h1 {
    font-size: 2em;
    margin-bottom: 20px;
}

/* Main Content Section */
.presskit {
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo and Game Section Styles */
.logo-section, .game-section {
    margin-bottom: 40px;
}

.logo, .game-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    border: 2px solid #FFD700; /* Gold border for images */
    border-radius: 10px;
}

.download-links a {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    background-color: #FFD700; /* Gold background for links */
    color: #000000; /* Black text color for links */
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.download-links a:hover {
    background-color: #ffffff; /* White background on hover */
    color: #000000; /* Black text color on hover */
}

.presskit-link {
    display: block;
    margin: 20px 0;
    padding: 10px 20px;
    background-color: #FFD700; /* Gold background for links */
    color: #000000; /* Black text color for links */
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.presskit-link:hover {
    background-color: #ffffff; /* White background on hover */
    color: #000000; /* Black text color on hover */
}

/* Footer Styles */
footer {
    margin-top: 40px;
}

footer p {
    font-size: 0.9em;
}