/* ========== IMPORT FONTS ========== */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&display=swap');

/* ========== BASE ========== */
body {
  background-color: #232323;
  color: #FFF9EE;
  font-family: 'Helvetica Neue', sans-serif;
  padding: 2rem;
  transition: all 0.3s ease;
}

h3 {
  color: #57B6FF;
  font-family: 'Courier New', monospace;
  letter-spacing: 1px;
  text-align: center;
}

h4 {
  color: #57B6FF;
  font-family: 'Courier New', monospace;
  letter-spacing: 1px;
  text-align: left;
}

h5 {
  text-align: center;
}

a {
  color: #E986E2;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

a:hover {
  color: #57B6FF;
  text-shadow: 0 0 8px #E986E2;
}

/* ========== TOP BAR ========== */

.nav {
  list-style-type: none;
  text-align: center;
  padding: 10px;
  margin-bottom: 4px;
}

.nav li {
  display: inline-block;
  background: linear-gradient(to right, #00F2FA, #57B6FF);
  color: #232323;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  font-family: 'Courier New', monospace;
  padding: 10px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 0 6px #00F2FA88;
  transition: all 0.3s ease;
  text-align: center;
}

.nav li:hover {
  box-shadow: 0 0 12px #00F2FA;
  background: linear-gradient(to right, #57B6FF, #00F2FA);
  color: #232323;
}

.nav a {
  color: #232323;
  text-decoration: none;
  padding: 10px;
}

.nav li:active {
  transform: scale(0.97);
}

/* ========== SECTION PANELS ========== */
.section {
  background-color: #3D0B37;
  border: 4px solid #00F2FA;
  margin-bottom: 2rem;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 0 6px #00F2FA88;
  transition: box-shadow 0.3s ease;
  width: auto;
}

.section:hover {
  box-shadow: 0 0 14px #00F2FA;
}

.title {
  text-align: center; 
  border: 4px solid #00F2FA;  
  border-radius: 12px; 
  box-shadow: 0 0 6px #00F2FA88; 
  background:#262626;
  width: auto;
}

.title:hover {
  box-shadow: 0 0 14px #00F2FA;
}

.col {
  display: -webkit-flex;
  display: flex;
}

/* ========== SUBSECTIONS ========== */
.subsection {
  background: linear-gradient(to bottom, #565656,#232323,#232323, #232323);
  border-left: 5px solid #E986E2;
  border-right: 5px solid #E986E2;
  padding: 10px;
  margin-bottom: 1rem;
  border-radius: 10px;
  box-shadow: inset 0 0 8px #E986E244;
  transition: box-shadow 0.3s ease;
}

.subsection:hover {
  box-shadow: 0 0 12px #E986E2aa;
}

.left {
   -webkit-flex: 2;
   -ms-flex: 2;
   flex: 2;
   padding: 10px;
}

.right {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 192px;
  padding: 10px;
}

.center {
  padding-right: 1rem;
  margin-left: auto; 
  margin-right: 0;
  height: auto;
}

.center h3 {
  text-align:center;
}

@media (max-width: 600px) {
  .col {
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}

/* ========== TABLES ========== */
.overflow {
  overflow-x: auto;
  max-width: 100%;
}

table {
  table-layout: fixed;
  border-collapse: collapse;
  margin-top: 1rem;
  border: 2px solid #E986E2;
  border-radius: 10px;
  min-width: 100%;
}

th {
  background: linear-gradient(to bottom, #00F2FA, #57B6FF, #3D0B37);
  color: #232323;
  padding: 0.75rem;
  text-transform: uppercase;
  border: 1px solid #E986E2;
  border-radius: 6px 6px 0 0;
  box-shadow: 0 0 8px #00F2FA88;
  transition: box-shadow 0.3s ease;
}

td {
  padding: 0.75rem;
  text-align: center;
  border: 1px solid #E986E2;
  background-color: #3D0B37;
  color: #FFF9EE;
}

tr:nth-child(even) td {
  background-color: #565656;
}

/* ========== BUTTONS ========== */
.button-custom {
  background: linear-gradient(to right, #00F2FA, #57B6FF);
  color: #232323;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  font-family: 'Courier New', monospace;
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 0 6px #00F2FA88;
  transition: all 0.3s ease;
  text-align: center;
}

.button-custom:hover {
  box-shadow: 0 0 12px #00F2FA;
  background: linear-gradient(to right, #57B6FF, #00F2FA);
  color: #232323;
}

.button-custom:active {
  transform: scale(0.97);
}

/* ========== ADDITIONAL HEADING COLORS ========== */
.heading-red {
  color: #FF4040 !important;
}

.heading-gold {
  color: #F5D400 !important;
}

.heading-green {
  color: #66FF00 !important;
}

/* ========== TABLE CELL HIGHLIGHT COLORS ========== */
.cell-red {
  background: linear-gradient(to bottom right, #FF4040, #3D0B37);
  color: #232323;
  font-weight: bold;
}

.cell-gold {
  background: linear-gradient(to bottom right, #F5D400, #F5D400, #FF4040);
  color: #232323;
  font-weight: bold;
}

.cell-green {
  background: linear-gradient(to bottom right, #66FF00, #565656);
  color: #232323;
  font-weight: bold;
}

/* ========== CENTERED IMAGE CONTAINER ========== */
.image-container {
  display: flex;
  justify-content: center;
  margin: 10px;
  text-align: center;
}

img {
max-width: 100%;
height: auto;
align-items: center;
}

.icon {
  width: 288px;
  height: auto;
}