/* style.css – überarbeitetes Stylesheet für MarvinVlogt-Seiten */

:root {
  --accent: #ff3b3b;
  --bg: #0d1320;
  --text: #e5e9f5;
  --link: #9fb3e8;
  --card-bg: rgba(255,255,255,0.05);
}

body {
  margin: 0;
  font-family: Inter, system-ui, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container {
  max-width: 700px;
  margin: 3rem auto;
  padding: 2rem;
  background: var(--card-bg);
  border-radius: 1rem;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
}

h1 {
  color: var(--accent);
  margin-top: 0;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--link);
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

a:hover {
  text-decoration: underline;
  color: #b3c7ff;
}

/* Externe Links Symbol */
a[target="_blank"]:not(.btn)::after {
  content: " ↗";
  font-size: 0.85em;
  color: var(--link);
}

.btn {
  display: block;
  background: var(--accent);
  color: white;
  padding: 0.7rem 1.2rem;
  border-radius: 0.6rem;
  text-decoration: none;
  font-weight: 600;
  margin: 0.6rem auto;
  transition: background 0.2s ease-in-out;
  max-width: 250px;
}

.btn[target="_blank"]::after {
  content: " ↗";
  font-size: 0.85em;
  color: white;
}

.btn:hover {
  background: #e23333;
}

.card {
  text-align: center;
  padding: 2rem 3rem;
  border-radius: 1rem;
  background: var(--card-bg);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
  max-width: 500px;
  margin: 4rem auto;
}

.links a {
  display: block;
  margin-top: 0.4rem;
}

.links a[href$="impressum.html"]::after,
.links a[href$="datenschutz.html"]::after {
  content: none !important;
}

footer {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: #93a3c9;
  text-align: center;
}

@media (max-width: 700px) {
  .container, .card {
    margin: 2rem 1rem;
    padding: 1.5rem;
  }
  h1 {
    font-size: 1.5rem;
  }
}