body {
  font-family: 'Ubuntu', sans-serif;
  background: linear-gradient(to top, #750422 15%, #0D0126 85%);
  color: #FFFFFF;
  margin: 0;
  padding: 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  background-color: rgba(0, 0, 0, 0);
  padding: 20px;
  border-radius: 10px;
  margin: 20px auto;
}

.header {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
  margin: 0;
}

.header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}

.header .title, .header .timer, .header .subtitle {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2em;
  font-weight: bold;
  color: white;
  text-align: center;
}

.header .title {
  top: 30%;
}

.header .timer {
  top: 55%;
  font-size: 1.5em;
}

.header .subtitle {
  top: 65%;
  font-size: 1.5em;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.card {
  background-color: #1A083D;
  border-radius: 10px;
  padding: 20px;
  flex: 1 1 calc(50% - 20px);
  box-sizing: border-box;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  position: relative;
}

.card-content {
  padding-bottom: 70px;
}

.card-content-two {
  padding-bottom: 0px;
}

.card.full-width {
  flex: 1 1 100%;
}

.card h2 {
  color: #A6032F;
  margin-top: 0;
}

.card p {
  color: #FFFFFF;
}

.card strong {
  color: #E10641; 
}

.card .country {
  position: absolute;
  left: 30px;
  bottom: 30px;
  width: auto;
  height: 50px;
  z-index: 2;
}

.card .country_two {
  position: absolute;
  right: 30px;
  top: 25%;
  width: auto;
  height: 50px;
  z-index: 2;
}

.card .logo {
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: 150px;
  height: 150px;
  z-index: 2;
}

.website-logo {
  position: absolute;
  right: 20px;
  top : 20px;
  width: auto;
  height: 35px;
  z-index: 2;
}

.wiki-logo {
  position: absolute;
  right: 70px;
  top : 20px;
  width: auto;
  height: 35px;
  z-index: 2;
}

.wiki-logo-two {
  position: absolute;
  right: 20px;
  top : 20px;
  width: auto;
  height: 35px;
  z-index: 2;
}

#map {
  width: 100%;
  height: 300px;
  border-radius: 10px;
}

.status-box {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 200px;
  padding: 10px;
  border-radius: 10px;
  color: white;
  text-align: center;
  word-wrap: break-word;
}

.status-box.go {
  background-color: green;
}

.status-box.tbc {
  background-color: orange;
}

.status-box.tbd {
  background-color: red;
}

.status-abbrev {
  font-size: 1.3em;
  font-weight: bold;
}

.status-name {
  font-size: 1.0em;
}

.status-description {
  font-size: 0.8em;
}