:root {
  --main: #ff7a00;
  --bg: #f3f4f6;
  --text: #111;
  --card: #ffffff;
  --muted: #666;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

/* HEADER */
header {
  background: linear-gradient(135deg, #ff7a00, #ff5200);
  color: white;
  padding: 18px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

header h1 {
  margin: 0;
  font-size: 20px;
  letter-spacing: 0.5px;
}

/* SEARCH BAR */
.search-box {
  padding: 25px;
  text-align: center;
}

.search-box input {
  width: 100%;
  max-width: 600px;
  padding: 14px 16px;
  border-radius: 12px;
  border: none;
  outline: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  font-size: 15px;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  padding: 20px 25px 40px;
}

/* CARD */
.card {
  background: var(--card);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.card-content {
  padding: 15px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* ARTICLE PAGE */
.article {
  max-width: 850px;
  margin: 30px auto;
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.article h2 {
  font-size: 26px;
  margin-bottom: 15px;
}

/* TEXT */
.article p {
  line-height: 1.7;
  font-size: 16px;
  margin-bottom: 14px;
}

/* LOCK BOX */
.lock {
  margin-top: 25px;
  padding: 20px;
  border-radius: 14px;
  background: #111;
  color: white;
  text-align: center;
}

.lock input {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border-radius: 10px;
  border: none;
  outline: none;
}

.btn {
  margin-top: 10px;
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 10px;
  background: var(--main);
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s;
}

.btn:hover {
  background: #e86600;
}

/* FULL CONTENT */
#full {
  margin-top: 25px;
  animation: fadeIn 0.3s ease;
}

.rechts {
     width: 65px;
     height: 30px;
     font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
     font-size: 15px;
     background-color: black;
     border: none;
     color: white;
    background-image: linear-gradient(to right, #EE1D52 0%, #79CBCA 51%, #77A1D3 100%);
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
}


@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}