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

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

/*NAVBAR*/
.topbar { background: #272727 }

/*COPYRITGH*/
footer.copyright { background: #272727 }


.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: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  text-align: center;
  background: #333;
  color: #fff;
}

input::placeholder {
  color: #bbb;
}

.blue-btn {
  text-align: center;
  background: linear-gradient(145deg, #6fbaff, #4da6ff);
  border: none;
  color: #fff;
  border-radius: .8em;
  padding: .6em 1em;
  font-weight: bold;
  cursor: pointer;
}

.blue-btn:hover { 
  background: linear-gradient(145deg, #4da6ff, #1e90ff);
}

.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;
  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: none;
  color: #fff;
  border-radius: 12px;
  padding: 0.75em 1.2em;
  font-weight: bold;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  text-decoration: none;
  user-select: none;
}

/* 🧊 Schwebe-Effekt */
.blue-btn:hover {
  background: linear-gradient(145deg, #4da6ff, #1e90ff);
}

.blue-btn:active {
  background: linear-gradient(145deg, #1e90ff, #4da6ff);
}

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

.black-btn:active {
  background: linear-gradient(145deg, #1e90ff, #4da6ff);
}

.disclaimer {
    margin-top: 20px;
    font-size: 12px;
    color: #bbbbbb;
    opacity: 0.7;
    text-align: center;
}
