/* Reset some basic elements for consistency */
body, h1, h2, h3, p {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* Basic styling for the body */
body {
    background-color: darkslateblue;
    display: flex;
    justify-content: center;
    padding: 20px;
}

/* Container to hold the entire layout */
.container {
    display: flex;
    flex-direction: row;
    max-width: 1200px;
    width: 100%;
}

/* Sidebar styling */
.sidebar {
    width: 200px;
    padding: 10px;
}

.sidebar.left {
    order: 1;
}

.sidebar.right {
    order: 3;
}

/* Main content area */
.main-content {
    flex: 1;
    padding: 10px;
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Game container */
.game-container {
    width: 360px;
    height: 640px;
    background-color: darkslateblue;
    border-color: darkslateblue;
    border-width: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

/* Ad space styling */
.ad-space {
    background-color: darkslateblue;
    margin-bottom: 20px;
    text-align: center;
    padding: 10px;
}

/* Mobile-specific styles */
.mobile-only {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    .sidebar {
        display: none;
    }

    .mobile-only {
        display: block;
    }
}
