/* GLOBAL */
body {
    margin: 0;
    background: radial-gradient(circle at top, #1a1a2e, #0d0d16);
    font-family: "VT323", monospace;
    color: #eae6ff;
    cursor: crosshair;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* FOND ÉTOILÉ */
.bg {
    position: fixed;
    inset: 0;
    background: url('fond.png') center/cover no-repeat;
    z-index: -1;
    opacity: 0.35;
}

/* COMPUTER FRAME */
.computer {
    background: #1a1028;
    border-radius: 20px;
    padding: 25px;
    box-shadow:
      0 0 25px #ff7ee5aa,
      0 0 60px #7b5bff88;
    border: 2px solid #ff9cf5;
    max-width: 900px;
    width: 95%;
}

/* SCREEN */
.screen {
    background: #05000f;
    border-radius: 12px;
    padding: 20px;
    border: 2px solid #7b5bff;
    box-shadow: inset 0 0 20px #ff7ee533;
    position: relative;
}

/* HEADER AVEC MASCOTTE */
.screen-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.screen-title {
    font-size: 1.8rem;
    color: #ffb3ff;
    text-shadow: 0 0 8px #ff7ee5;
}

.mascot {
  width: 80px;
  height: auto;
  filter: drop-shadow(0 0 8px #ffb3ff);
  border-radius: 12px;
  margin-left: 10px;
}

/* PHRASES PRINCIPALES (FR + EN) */
.screen-sub.main {
    font-size: 1.1rem;
    color: #e5d0ff;
    margin-bottom: 8px;
}

/* PHRASES TERMINAL VERT (FR + EN) */
.screen-line.small {
    font-size: 0.9rem;
    color: #9fffbf;
    font-family: "Courier New", monospace;
    margin-bottom: 12px;
}

/* SÉPARATEUR */
.separator {
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #ff7ee5, #7b5bff);
  margin: 14px 0;
  border-radius: 2px;
  box-shadow: 0 0 10px #ffb3ff;
}

/* CLAVIER */
.keyboard {
    margin-top: 25px;
    background: #241331;
    border-radius: 14px;
    padding: 15px 18px 20px;
    box-shadow: inset 0 0 10px #000000aa;
    border: 1px solid #ff9cf5;
}

.keys-row {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.key {
    min-width: 70px;
    padding: 8px 12px;
    border-radius: 6px;
    background: linear-gradient(145deg, #ff7ee5, #7b5bff);
    color: #1a1028;
    font-weight: bold;
    font-size: 0.8rem;
    text-align: center;
    text-decoration: none;
    box-shadow:
      0 2px 0 #3b104f,
      0 0 10px #ff7ee5aa;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: transform 0.1s ease, box-shadow 0.1s ease, filter 0.1s ease;
}

.key:hover {
    transform: translateY(1px);
    box-shadow:
      0 1px 0 #3b104f,
      0 0 16px #ffb3ffdd;
    filter: brightness(1.1);
}

.key:active {
    transform: translateY(2px);
    box-shadow:
      0 0 0 #3b104f,
      0 0 8px #ff7ee5aa;
}

.keyboard-label {
    text-align: center;
    font-size: 0.75rem;
    color: #c9a8ff;
    margin-top: 6px;
    opacity: 0.8;
}

/* MOBILE */
@media (max-width: 600px) {
    .screen-title {
      font-size: 1.4rem;
    }
    .key {
      min-width: 60px;
      font-size: 0.7rem;
      padding: 7px 8px;
    }
}
footer {
    text-align: center;
    margin: 40px 0 20px;
    font-size: 1.1rem;
    color: #c9a8ff;
    opacity: 0.9;
    text-shadow: 0 0 6px #ff7ee5;
}

