@charset "utf-8";
/* CSS Document */

#command-station {
    width: 100vw;
    height: 100vh;
    background: url('images/command.png') no-repeat center center fixed;
    background-size: cover;
    position: relative;

    display: flex;
    justify-content: center;   /* centers left/right */
    align-items: flex-start;    /* keeps items at the top */
}
 .top-links {
      position: fixed;
      top: 10px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 16px;
      z-index: 3;
    }
    .top-links a {
      text-decoration: none;
      padding: 8px 14px;
      background: rgba(0,0,0,0.5);
      color: #fff;
      border-radius: 4px;
      font-size: 0.95rem;
      transition: 0.3s;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .top-links img {
      height: 20px;
      width: auto;
      display: block;
    }
    .top-links a:hover {
      background: rgba(255,255,255,0.85);
      color: #000;
    }

.text-box {
    background: rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
    color: #fff;
    width: fit-content;
    max-width: 600px;
    backdrop-filter: blur(4px);

    margin-top: 500px; /* pushes it down */
}
/* Main command panel container */
/* Grid container */
.command-panel-grid {
    width: 85%;
    margin: 0 auto;
    margin-top: 200px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* Each block */
.panel-block {
    background: rgba(0, 0, 0, 0.45);
    padding: 10px;
    border-radius: 12px;
    border: 2px solid rgba(255, 0, 0, 0.5);
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    color: #fff;
}

/* Titles */
.panel-block h2 {
    color: #ff9444;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 0, 0, 0.3);
    padding-bottom: 5px;
}

/* Lists */
.panel-block ul {
    list-style: none;
    padding-left: 0;
}

.panel-block li {
    margin: 6px 0;
    line-height: 1.4;
}

.panel-block li b {
    color: #12FB00;
}
.panel-block li h {
    color: #F90303;
}
.command-line {
    display: flex;
    justify-content: space-between;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr; /* left grows, right stays aligned */
    align-items: center;
    column-gap: 40px; /* space between left and right */
}
