body {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    background-color: #FFFFEE;
    margin: 0;
    padding: 0;
    color: #003366;
    line-height: 1.6;
}

header {
    text-align: center;
    padding: 20px;
    background-color: #f9f9f9;
}

h1 {
    margin: 0;
    font-size: 2.5em;
    color: #003366;
}

nav {
    background-color: #e0e0e0;
    padding: 10px 0;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav a {
    color: #003366;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

main {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

section {
    margin-bottom: 30px;
}

h2 {
    color: #003366;
    border-bottom: 2px solid #003366;
    padding-bottom: 5px;
}

dl {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 10px 20px;
}

dt {
    font-weight: bold;
}

dd {
    margin: 0;
}

ul {
    padding-left: 20px;
}

li {
    margin-bottom: 5px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

a {
    color: #003366;
}

a:hover {
    text-decoration: underline;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    border: 1px solid #003366;
    padding: 8px;
    text-align: center;
}

th {
    background-color: #e0e0e0;
}

.stadium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.stadium {
    text-align: center;
}

.stadium img {
    max-width: 100%;
    height: auto;
}

.screenshots {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0;
    list-style: none;
}

.screenshots li {
    width: 160px;
}

/* Lightbox styles */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
  align-items: center;
  justify-content: center;
}

.lightbox-modal.show {
  display: flex;
}

.lightbox-content {
  display: block;
  max-width: 90%;
  max-height: 90%;
}

.lightbox-close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 600px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    dl {
        grid-template-columns: 1fr;
    }
    h1 {
        font-size: 2em;
    }
    .stadium-grid {
        grid-template-columns: 1fr;
    }
}


