body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #333; /* Dark background as seen in the image */
    color: #bbb; /* Lighter text color */
    background-image: url('[URL_TO_YOUR_BACKGROUND_TEXTURE.PNG]'); /* Use your background texture */
    background-repeat: repeat;
}

a {
    color: #6bb92f; /* Minecraft green link color */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.header {
    background-color: #000;
    padding: 10px 0;
    border-bottom: 2px solid #5a5a5a;
}

.header-content {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.minecraft-logo {
    height: 30px; /* Adjust as needed */
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.main-nav li {
    margin-right: 20px;
}

.main-nav a,
.login-register a {
    color: #bbb;
    font-weight: bold;
    text-transform: uppercase;
}

.promo-bar {
    background-color: #000;
    padding: 5px 0;
    text-align: center;
    border-bottom: 2px solid #5a5a5a;
}

.promo-content {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.promo-image {
    height: 40px; /* Adjust as needed */
    margin-right: 15px;
}

.promo-bar p {
    margin: 0;
}

.promo-bar a {
    color: #fff; /* White for gift codes link */
    font-weight: bold;
}

.container {
    max-width: 960px;
    margin: 20px auto;
    padding: 0 10px;
}

.main-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.flash-player-placeholder {
    width: 600px; /* Approximate width */
    height: 380px; /* Approximate height */
    background-color: #555; /* Placeholder background */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 1.2em;
    border: 1px solid #777;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.5);
    position: relative; /* For positioning the icon */
}

.missing-plugin-icon {
    width: 64px; /* Adjust size as needed */
    height: 64px;
    opacity: 0.6;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sidebar {
    width: 300px; /* Approximate width */
    text-align: center;
}

.character-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.buy-now-button {
    display: block;
    margin-bottom: 15px;
}

.buy-now-img {
    width: 180px; /* Adjust as needed */
    height: auto;
}

.play-links,
.classic-links {
    margin-bottom: 10px;
    font-size: 0.9em;
}

.game-description {
    background-color: rgba(0, 0, 0, 0.5); /* Slightly transparent background for readability */
    padding: 15px;
    border: 1px solid #444;
    margin-bottom: 20px;
    line-height: 1.6;
}

.social-section {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    border-top: 1px solid #444;
    padding-top: 20px;
}

.social-box {
    width: 30%;
    text-align: center;
}

.social-icon {
    height: 48px; /* Adjust as needed */
    margin-bottom: 10px;
}

.social-box h3 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.footer {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #444;
    padding-top: 15px;
    font-size: 0.9em;
    color: #888;
}

.footer-left {
    flex: 1;
}

.footer-right {
    display: flex;
    gap: 30px;
}

.recent-posts,
.recent-tweets {
    text-align: right;
}

.recent-posts h4,
.recent-tweets h4 {
    margin-top: 0;
    margin-bottom: 5px;
    color: #bbb;
}