@font-face {
  font-family: 'TradeWinds';
  src: url('/assets/fonts/TradeWinds-Regular.ttf') format('truetype');
}

body {
  margin: 0; 
  padding: 0;
  height: 100vh;
  background: #272727;
  font-family: 'TradeWinds', cursive;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
}

.border {
  margin: 10px;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.content { 
  text-align: center; 
}

h1 { 
  font-size: 36px; 
  margin-bottom: 10px; 
  text-shadow: 2px 2px 0 #000;
}

p { 
  font-size: 15px; 
  margin-bottom: 25px; 
  color: #ddd;
}

input {
  width: 260px;
  padding: 10px;
  border: 2px solid #000;
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  text-align: center;
  background: #333;
  color: #fff;
  box-shadow: inset 2px 2px 0 #000;
}

input::placeholder {
  color: #bbb;
}

.blue-btn {
  text-align: center;
  background: linear-gradient(145deg, #6fbaff, #4da6ff);
  border: 2px solid #000;
  color: #fff;
  box-shadow: 3px 3px 0 #000;
  border-radius: .8em;
  padding: .6em 1em;
  font-weight: bold;
  transition: .2s;
  cursor: pointer;
}

.blue-btn:hover { 
  background: linear-gradient(145deg, #4da6ff, #1e90ff);
  transform: translateY(-2px);
  box-shadow: 5px 5px 0 #000; 
}

.msg { 
  margin-top: 10px; 
  font-size: 14px; 
  color: #aaa; 
}

a { 
  color: #6fbaff; 
  font-size: 13px; 
  text-decoration: none; 
  cursor: pointer; 
}

a:hover {
  text-decoration: underline;
}

.topbar, central { 
  position: fixed;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75em 1.25em;
  width: 100%;
  height: 50px;
  background: #272727;
  border-bottom: 2px solid #4da6ff;
  box-shadow: 0px 6px 0 #4da6ff;
  text-shadow: 2px 2px 0 #4da6ff;
  color: #fff;
  font-size: 24px;
}

.logo {
  height: 50px;
  width: auto;
  object-fit: contain;
}

/* =========  BUTTON STYLES  ========= */

.blue-btn {
  text-align: center;
  background: linear-gradient(145deg, #6fbaff, #4da6ff);
  border: 3px solid #000;
  color: #fff;
  border-radius: 12px;
  padding: 0.75em 1.2em;
  font-weight: bold;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 5px 5px 0 #000;
  transition: all 0.2s ease;
  user-select: none;
}

/* 🧊 Schwebe-Effekt */
.blue-btn:hover {
  transform: translateY(-3px);
  box-shadow: 7px 7px 0 #000, 0 0 10px rgba(111, 186, 255, 0.6);
  background: linear-gradient(145deg, #4da6ff, #1e90ff);
}

/* 🕳️ Eingedrückt-Effekt beim Klicken */
.blue-btn:active {
  transform: translateY(3px);
  box-shadow: inset 3px 3px 0 #000;
  background: linear-gradient(145deg, #1e90ff, #4da6ff);
}

/* ===== Schwarze Variante ===== */
.black-btn {
  background: linear-gradient(145deg, #4da6ff, #6fbaff);
  border: 3px solid #000;
  border-radius: 12px;
  box-shadow: 5px 5px 0 #000;
  padding: 0.75em 1.2em;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  user-select: none;
}

/* Schwebe-Animation */
.black-btn:hover {
  transform: translateY(-3px);
  box-shadow: 7px 7px 0 #000, 0 0 10px rgba(79,150,255,0.7);
}

/* Eingedrückt-Animation */
.black-btn:active {
  transform: translateY(3px);
  box-shadow: inset 3px 3px 0 #000;
  background: linear-gradient(145deg, #1e90ff, #4da6ff);
}

