/* ✨ BASIS-STYLE & HINTERGRUND ----------------------------------- */

body {
  margin: 0;
  padding: 0;
  font-family: 'VT323', monospace;
  background: url('bg-unsure.jpg') no-repeat center center fixed;
  background-size: cover;
  color: black;
}

.kpop-wrapper {
  background-color: rgba(255, 255, 255, 0.85);
  border: 2px solid #000;
  border-radius: 25px;
  padding: 25px 40px;
  width: fit-content;
  margin: 50px auto;
  text-align: center;
  box-shadow: 5px 5px 0px #000, 10px 10px 0px #999;
  font-family: 'VT323', monospace;
  backdrop-filter: blur(3px);
  transition: transform 0.3s ease;
}

.kpop-wrapper:hover {
  transform: rotate(-1.5deg);
}

.kpop-wrapper h1 {
  font-size: 2.8em;
  color: #000;
  text-shadow: 1px 1px 0 #ff90c2;
  margin-bottom: 10px;
}

.kpop-wrapper p {
  font-size: 1.3em;
  color: #444;
  font-style: italic;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 8px;
}

.deco-left,
.deco-right {
  width: 40px;
  height: auto;
  filter: drop-shadow(0 0 3px #000);
}

.deco-left {
  transform: rotate(-6deg);
}

.deco-right {
  transform: rotate(8deg);
}

.kpop-wrapper .subtitle {
  position: relative;
  display: inline-block;
  font-size: 1.1em;
  color: #5a004f;
  background-color: #ffe0f7; /* zartes Rosa */
  padding: 12px 20px;
  border-radius: 20px;
  border: 2px solid #ff69b4; /* Knalliges Bubblegum-Pink */
  box-shadow: 3px 3px 0 #ff90c2; /* softer Pink Shadow */
  font-style: normal;
  margin-top: 12px;
}

/* Sprechblasen-Spitze */
.kpop-wrapper .subtitle::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 40px;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-top-color: #ff69b4; /* Spitze Rahmenfarbe */
  border-bottom: 0;
  margin-left: -10px;
}

.kpop-wrapper .subtitle::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 41px;
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-top-color: #ffe0f7; /* Hintergrundfarbe */
  border-bottom: 0;
  margin-left: -8px;
}

.subtitle .icon {
  color: #ff69b4; /* passender Pink-Ton */
  font-size: 1.2em;
  margin-right: 8px;
  vertical-align: middle;
}


/* ✨ TEXTSTYLES & HEADER ---------------------------------------- */

header {
  text-align: center;
  padding: 30px 0;
}
h1 {
  font-size: 2.5em;
  color: black;
  margin-bottom: 15px;
  text-align: center;
}

p {
  font-size: 1.1em;
  color: black;
  text-align: center;
}

.home-link {
  text-align: center;
  margin-top: 30px;
}

.home-link a {
  display: inline-block;
  font-size: 1.1em;
  font-family: 'VT323', monospace;
  color: #fff;
  background-color: #ff90c2;
  padding: 10px 20px;
  border: 2px solid #000;
  border-radius: 25px;
  text-decoration: none;
  box-shadow: 3px 3px 0 #999;
  transition: 0.2s ease-in-out;
}

.home-link a:hover {
  background-color: #ffcaf2;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 4px 4px 0 #555;
}
