:root {
  --bg: #0f1115;
  --card: rgba(255,255,255,0.04);
  --border: rgba(255,255,255,0.08);
  --text: #e6e6e6;
  --accent: #4fd1c5;
  --accent-soft: rgba(79,209,197,0.2);
  --danger: #ff7a7a;
  --radius: 16px;
}

/* Title */
.start-title {
	text-align: center;
	position: relative;
	padding: 3rem 0.5rem;
}

.start-title h1 {
	font-size: 4rem;
	letter-spacing: 2px;
	background: linear-gradient(90deg, #4fd1c5, #90cdf4);
	-webkit-background-clip: text;
	color: transparent;
	margin: 0;
}

/* Button */

.back-button {
	position: absolute;
	left: 0;
	bottom: 0.5rem;
}

.back-button a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.6rem 0.7rem;
    border-top-right-radius: 999px;
	border-bottom-right-radius: 999px;
    background: #f5f5f7;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: all 0.25s ease;
}

.back-button a::before {
    content: "←";
    font-size: 16px;
    transition: transform 0.25s ease;
}

.back-button a:hover {
    background: #e9e9ee;
    box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

.back-button a:hover::before {
    transform: translateX(-3px);
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid var(--border);
  font-size: 0.85rem;
}

.badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--danger);
}

/* Search */
.klarik-content-search {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

.search-container {
  display: flex;
  width: 420px;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.search-container input {
  flex: 1;
  padding: 14px;
  background: transparent;
  border: none;
  color: var(--text);
}

.search-container input:focus {
  outline: none;
}

.search-container button {
  background: transparent;
  border: none;
  padding: 0 16px;
  cursor: pointer;
  color: var(--accent);
}

/* Cards */
.start-wrapper,
.main-text,
.archiv-wrapper {
  max-width: 900px;
  margin: 40px auto;
  padding: 30px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

/* Headlines */
main h1, main h2 {
  font-weight: 600;
}

.main-text-title {
  font-size: 2rem;
  margin-bottom: 20px;
}

/* List */
main ul {
  padding-left: 20px;
}

main li {
  margin-bottom: 6px;
}

/* Subtle glow effect */
.start-wrapper:hover,
.main-text:hover {
  border-color: var(--accent-soft);
  box-shadow: 0 0 30px rgba(79,209,197,0.05);
}

/* Archiv */
.archiv-title {
  text-align: center;
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 600px) {
  .start-title h1 {
    font-size: 2.5rem;
  }

  .search-container {
    width: 100%;
  }
}