/* Basic styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    color: #333333;
    margin: 0;
    padding: 0;
}

.container {
    width: 90%;
    margin: 0 auto;
}

/* Navigation */
.navbar {
    background-color: #0067b8;
    padding: 10px 0;
}

.nav-logo h2 {
    color: white;
    text-align: center;
}

.nav-menu {
    list-style: none;
    text-align: center;
    padding: 0;
}

.nav-menu li {
    display: inline-block;
    margin: 0 10px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    padding: 5px 10px;
}


/* Hero Section */
.hero {
    background-color: #0078d4;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

.button-container {
    margin-top: 30px; 
}

.cta-button {
    background-color: #107c10;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 3px;
    margin-top: 30px; 
}

/* Main content */
main {
    background-color: white;
    padding: 20px;
    margin: 20px auto;
    border: 1px solid #cccccc;
}

h1 {
    color: white;
    border-bottom: 2px solid #0067b8;
    padding-bottom: 10px;
}

h2 {
    color: #005da6;
}

h3 {
    color: #004578;
}

/* Edition Comparison */
.edition-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
    margin: 20px 0;
}

.edition-item {
    flex: 1;
    min-width: 200px;
    background-color: #f8f9fa;
    padding: 15px;
    border: 1px solid #dee2e6;
}

/* featured-aircraft */
.aircraft-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
    margin: 20px 0;
}

.aircraft-item {
    flex: 1;
    min-width: 200px;
    background-color: #f8f9fa;
    padding: 15px;
    border: 1px solid #dee2e6;
}

/* Game Information */
.info-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
    margin: 20px 0;
}

.info-item {
    flex: 1;
    min-width: 200px;
    background-color: #f8f9fa;
    padding: 15px;
    border: 1px solid #dee2e6;
    text-align: center;
}
/* Card Styles */
.feature-card,
.screenshot-item,
.edition-card,
.aircraft-card,
.world-card,
.explore-item,
.visual-item,
.resource-card {
    background-color: #f8f9fa;
    padding: 15px;
    margin: 10px 0;
    border: 1px solid #dee2e6;
    border-left: 4px solid #0067b8;
}

/* Image Styles */
.screenshot-item img {
    width: 100%;
    height: auto;
    border: 2px solid #0067b8;
    border-radius: 4px;
}

/* Screenshot Grid Layout */
.screenshot-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.screenshot-item {
    flex: 1 1 300px;
    max-width: 400px;
}

/* Information Items */
.info-item,
.system-item,
.career-item,
.tool-item,
.creation-item,
.support-item {
    background-color: #f8f9fa;
    padding: 15px;
    margin: 10px 0;
    border: 1px solid #dee2e6;
}

/* Resource Links */
.resource-link {
    background-color: #0067b8;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 3px;
}

/* Footer */
.footer {
    background-color: #323130;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
}

/* Lists */
ul {
    margin-left: 20px;
}