/* Global properties ======================================================== */
/* Page background and default text */
body {
    background-image: url("mainbackground.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    font-family: Tahoma, Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: yellow;
    font-weight: bold;
    margin: 0;
}

p {
    background: rgba(0, 0, 0, 0.6);
    padding: 6px;
    border-radius: 4px;
}

a {
  color: #0087cc;
}
a:hover {
  color: #ff7b29;
}

h1 {
  font-size: 38px;
  font-weight: bold;
  color: yellow;
  margin-bottom: 6px;
  text-shadow: 2px 2px 3px black;
}

h2 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 6px;
  font-style: italic;
  text-shadow: 1px 1px 2px black;
}

.byline {
  color: white;
  font-family: Georgia, Times, "Times New Roman", serif;
  font-style: italic;
  font-size: 20px;
  margin-bottom: 18px;
}

header {
  text-align: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.7);
  border-bottom: 3px solid #949599;
}

main {
  max-width: 900px;
  margin: 0 auto;
  padding: 16px;
}


.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
  margin-bottom: 24px;
}

.hero-text {
  flex: 1 1 260px;
}

.hero-text ul {
  padding-left: 18px;
  font-size: 11px;
  font-weight: normal;
}

.hero-img {
  flex: 1 1 260px;
}

.hero-img img {
  width: 100%;
  border-radius: 8px;
  border: 3px solid #949599;
  display: block;
  transition: transform 0.3s, box-shadow 0.3s;
}


.hero-img img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}


table,
th,
td {
  border: 3px solid black;
  border-collapse: collapse;
  background: #4682B4;
  font-size: 14px;
  color: black;
  font-weight: bold;
}

table {
  width: 100%;
  margin-top: 12px;
}

th,
td {
  padding: 6px;
}

thead {
  background: #2f4f6f;
}

tbody tr:nth-child(even) {
  background: #5a9ad1;
}

tbody tr:nth-child(odd) {
  background: #4682B4;
}

tbody tr:hover {
  background: #ffeb99;
  cursor: pointer;
}

.weight {
  font-size: 11px;
  color: #ffeb3b;
  text-transform: uppercase;
}

.note-tag {
  display: inline-block;
  font-size: 10px;
  background: #333;
  color: white;
  padding: 2px 6px;
  border-radius: 999px;
}

.card {
  background: rgba(0, 0, 0, 0.75);
  border-radius: 8px;
  padding: 12px;
  margin-top: 16px;
  border: 3px solid #949599;
}


button {
  background: red;
  color: white;
  border: 2px solid black;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
  font-weight: bold;
  margin-right: 6px;
}

button:hover {
  background: #ff7b29;
}

.btn-secondary {
  background: #333;
  color: white;
}

.btn-secondary:hover {
  background: #555;
}


.winner-output {
  margin-top: 8px;
  font-size: 12px;
  background: rgba(0, 0, 0, 0.6);
  padding: 6px;
  border-radius: 4px;
}


#prelims-section {
  margin-top: 10px;
}

#prelims-table {
  margin-top: 10px;
}

.hidden {
  display: none;
}


input,
textarea,
select {
  border: 2px solid #0066ff;
  background-color: #e6f0ff;
  padding: 8px;
  border-radius: 6px;
  width: 300px;
  color: black;
  font-weight: normal;
}

input[type="radio"],
input[type="checkbox"] {
  width: auto;
}

label {
  color: #0033cc;
  font-weight: bold;
}


.footer-text
