body {
    margin: 0;
    font-family: 'Cinzel', serif;
    background-color: #1e1b2c;
    color: #f5f5dc;
}

header {
    background-color: #2c2540;
    padding: 20px;
    text-align: center;
}

.logo img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
}

nav a {
    color: #ffd700;
    text-decoration: none;
    font-weight: bold;
}

.ingame-brief {
    background-color: #2e2a3f;
    color: #f5f5dc;
    padding: 40px;
    margin: 40px auto;
    max-width: 800px;
    border-left: 6px solid #ffd700;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
    font-family: 'Cinzel', serif;
    line-height: 1.6;
    border-radius: 8px;
}

.ingame-brief h2 {
    color: #ffd700;
    font-size: 1.5em;
    margin-bottom: 20px;
}

.ingame-brief em {
    color: #c0b283;
    font-style: italic;
}


.cta-button {
    background-color: #ffd700;
    color: #1e1b2c;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.preview {
    padding: 40px;
    background-color: #3a3450;
}

.preview-grid {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.preview-item img {
    width: 100%;
    max-width: 250px;
    border: 2px solid #ffd700;
    border-radius: 8px;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #2c2540;
    font-size: 0.9em;
}


.centered-table {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

table {
    width: 90%;
    max-width: 1000px;
    border-collapse: separate;
    border-spacing: 0 10px;
    margin: 20px auto;
    background-color: #1e1b2c;
    color: #f5f5dc;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    border-radius: 8px;
    overflow: hidden;
}

th, td {
    padding: 16px 24px;
    text-align: left;
}

th {
    background-color: #3a3450;
    color: #ffd700;
    font-size: 1.1em;
}

tr:nth-child(even) {
    background-color: #29253a;
}

tr:first-child th:first-child {
    border-top-left-radius: 8px;
}
tr:first-child th:last-child {
    border-top-right-radius: 8px;
}

.domelius-box {
  background-color: #1e1b2c;
  border: 1px solid #444;
  border-radius: 12px;
  padding: 30px 20px;
  margin: 40px auto;
  max-width: 900px;
  color: #ffd700;
}

.domelius-box {
  background-color: #1e1b2c;
  border: 1px solid #444;
  border-radius: 12px;
  padding: 30px 20px;
  margin: 40px auto;
  max-width: 900px;
  color: #ffd700;
}

.domelius-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.domelius-image img {
  max-width: 300px;
  border-radius: 8px;
  border: 2px solid #ffd700;
  background-color: #2c2540;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.domelius-image img:hover {
  transform: scale(1.03);
}

.domelius-text {
  flex: 1 1 400px;
  font-size: 1.1em;
  line-height: 1.6;
  color: #c0b283;
}

.domelius-text h3 {
  color: #ffd700;
  margin-bottom: 10px;
}

/* Lightbox Styles */
#lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
}

#lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border: 2px solid #ffd700;
  border-radius: 10px;
}

.wow-achievement {
  color: #ffd700 !important;
  font-weight: bold;
}

.row-icon {
  width: 100px;
  height: 100px;
  vertical-align: middle;
  margin-right: 6px;
  cursor: zoom-in;
}