/*===============================================
  Dein Furry Portfolio - CSS mit animierter Umrandung
===============================================*/

html {
  cursor: url("/img/paw.png"), auto;
}

body {
  font-family: "Roboto", sans-serif;

  background: linear-gradient(-45deg, #1e3c72, #2a5298, #6dd5fa);
  background-size: 400% 400%;
  animation: gradientAnimation 15s ease infinite;

  color: #ecf0f1;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;

  padding: 20px;
  padding-bottom: calc(20px + env(safe-area-inset-bottom));
  min-height: 100dvh;
  transform: translateZ(0);
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.container {
  margin-left: auto;
  margin-right: auto;

  position: relative;

  max-width: 600px;
  width: 100%;
  padding: 40px 25px 25px 25px;
  text-align: center;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);

  background-color: rgba(44, 44, 46, 0.25);

  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 255, 255, 0.1);
}

.gradient-border {
  width: 150px;
  height: 150px;
  position: relative;
  padding: 5px;

  box-sizing: border-box;

  border-radius: 50%;
  margin: 0 auto 15px;

  background: linear-gradient(60deg, #d60270, #9b4f96, #0038a8, #d60270);
  background-size: 300% 300%;
  animation: animated-border 4s ease-in-out infinite,
    fadeInUp 0.5s ease-out 0.2s forwards;

  opacity: 0;
  transform: translateZ(0);
}

@keyframes animated-border {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.profile-picture {
  width: 100%;
  height: 100%;

  object-fit: cover;
  border-radius: 50%;
  border: none;
}

.profile-name {
  margin-top: 15px;
  margin-bottom: 5px;
  font-size: 2em;
}

.profile-bio {
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 1.1em;
  color: #bdc3c7;
}

.links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.link-button {
  box-sizing: border-box;

  display: flex;
  align-items: center;
  text-align: left;
  width: 100%;

  padding: 12px 20px;
  font-size: 1em;

  background-color: rgba(52, 152, 219, 0.15);
  border: 1px solid rgba(52, 152, 219, 0.3);
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease,
    border-color 0.2s ease;
}

.link-button i {
  margin-left: auto;
  font-size: 1.1em;
  color: #eaf2f8;
  opacity: 0.8;
}

.link-button:hover {
  background-color: rgba(52, 152, 219, 0.3);
  border-color: rgba(93, 173, 226, 0.5);
  transform: scale(1.02);
  cursor: url("/img/paw_select.png"), auto;
}

.animated-text {
  background: linear-gradient(90deg, #f8a1d1, #a37eec, #00b8d4, #f8a1d1);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: textGradientAnimation 4s linear infinite;
}

@keyframes textGradientAnimation {
  from {
    background-position: 0% center;
  }
  to {
    background-position: -200% center;
  }
}

/* ===============================================
   Verbesserte Animation für fallende Pfoten
   ===============================================*/

.paws-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.paw {
  position: absolute;
  top: -10%;
  background-image: url("/img/paw.svg");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0;
}

@keyframes fall-1 {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.4;
  }
  90% {
    opacity: 0.4;
  }
  100% {
    transform: translateY(110vh) rotate(180deg);
    opacity: 0;
  }
}

@keyframes fall-2 {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.5;
  }
  90% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(110vh) translateX(150px) rotate(450deg);
    opacity: 0;
  }
}

@keyframes fall-3 {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.3;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(110vh) translateX(-150px) rotate(-360deg);
    opacity: 0;
  }
}

@keyframes color-change {
  0% {
    filter: hue-rotate(0deg) saturate(1);
  }
  50% {
    filter: hue-rotate(180deg) saturate(2);
  }
  100% {
    filter: hue-rotate(360deg) saturate(1);
  }
}

.paw:nth-child(1) {
  left: 10%;
  width: 20px;
  height: 20px;
  animation: fall-1 14s linear infinite;
  animation-delay: -7s;
}
.paw:nth-child(2) {
  left: 20%;
  width: 30px;
  height: 30px;
  animation: fall-2 12s linear infinite;
  animation-delay: -5s;
}
.paw:nth-child(3) {
  left: 30%;
  width: 15px;
  height: 15px;
  animation: fall-3 18s linear infinite;
  animation-delay: -10s;
}

.paw:nth-child(4) {
  left: 40%;
  width: 25px;
  height: 25px;
  animation: fall-1 15s linear infinite, color-change 10s ease-in-out infinite;
  animation-delay: -3s;
}

.paw:nth-child(5) {
  left: 50%;
  width: 20px;
  height: 20px;
  animation: fall-2 12s linear infinite;
  animation-delay: -4s;
}

.paw:nth-child(6) {
  left: 60%;
  width: 35px;
  height: 35px;
  animation: fall-3 16s linear infinite, color-change 20s ease-in-out infinite;
  animation-delay: -8s;
}

.paw:nth-child(7) {
  left: 70%;
  width: 18px;
  height: 18px;
  animation: fall-1 20s linear infinite;
  animation-delay: -1s;
}
.paw:nth-child(8) {
  left: 80%;
  width: 28px;
  height: 28px;
  animation: fall-2 11s linear infinite;
  animation-delay: -11s;
}
.paw:nth-child(9) {
  left: 90%;
  width: 22px;
  height: 22px;
  animation: fall-3 13s linear infinite;
  animation-delay: -2s;
}

.paw:nth-child(10) {
  left: 65%;
  width: 16px;
  height: 16px;
  animation: fall-2 17s linear infinite, color-change 15s ease-in-out infinite;
  animation-delay: -6s;
}

.paw:nth-child(11) {
  left: 25%;
  width: 24px;
  height: 24px;
  animation: fall-1 15s linear infinite;
  animation-delay: -9s;
}
.paw:nth-child(12) {
  left: 5%;
  width: 30px;
  height: 30px;
  animation: fall-3 19s linear infinite;
  animation-delay: -12s;
}

/* Styling für den Discord-Status */
#discord-link {
  position: relative; /* Wichtig für die Positionierung des Punktes */
}

.discord-status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #5865f2;
  border: 2px solid #1c1c1e;
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
}

.discord-status-dot.online {
  background-color: #3ba55d;
}
.discord-status-dot.idle {
  background-color: #faa61a;
}
.discord-status-dot.dnd {
  background-color: #ed4245;
}
.discord-status-dot.offline {
  background-color: #747f8d;
}

/* ===============================================
   Styling für die Spoiler-Funktion
   ===============================================*/

.gallery-item[data-spoiler="true"] {
  position: relative;
  cursor: pointer;
}

.gallery-item[data-spoiler="true"] img {
  filter: blur(20px);
  transform: scale(1.1);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.gallery-item[data-spoiler="true"].revealed img {
  filter: blur(0);
  transform: scale(1);
}

.spoiler-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;

  color: white;
  font-weight: bold;
  font-size: 1.2em;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.gallery-item[data-spoiler="true"].revealed .spoiler-text {
  opacity: 0;
}

.gallery-page-container {
  width: 90%;
  max-width: 1200px;
  margin: 40px auto;
  text-align: center;
  background-color: #34495e;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.gallery-page-container h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.back-button {
  display: inline-block;
  margin-bottom: 30px;
  padding: 10px 20px;
  background-color: #3498db;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.2s;
}

.back-button:hover {
  background-color: #2980b9;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 15px;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease-in-out;
}

.gallery-item:hover {
  transform: scale(1.03);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
  margin: auto;
  display: block;
  max-width: 85%;
  max-height: 85%;
}

.lightbox-close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}

.lightbox-close:hover {
  color: #bbb;
}

/* ===============================================
   Anpassungen für mobile Geräte (Responsive Design)
   ===============================================*/

@media (max-width: 768px) {
  body {
    align-items: flex-start;
    padding-top: 30px;
    padding-bottom: 50px;
  }

  .container {
    padding-top: 50px;
    background-color: rgba(44, 44, 46, 0.4);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  p.profile-bio {
    animation: none;
    width: auto;
    overflow: visible;
    white-space: normal;
    border-right: none;
  }

  .comment-footer {
    flex-wrap: wrap;
    gap: 10px;
  }

  .like-section {
    width: 100%;
    justify-content: flex-end;
  }
}

@media (max-width: 390px) {
  .gradient-border {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
  }

  h1.profile-name {
    font-size: 1.6em;
    margin-top: 0;
    margin-bottom: 8px;
  }

  p.profile-bio {
    font-size: 1em;
    line-height: 1.4;
  }

  .link-button {
    padding: 10px 15px;
    font-size: 0.9em;
  }

  .friend-card img {
    width: 70px;
    height: 70px;
  }

  .comment-footer {
    flex-wrap: wrap;
    gap: 10px;
  }

  .like-section {
    width: 100%;
    justify-content: flex-end;
  }

  .about-details {
    grid-template-columns: 1fr;
  }
}

/* ===============================================
   Styling für das "Friends"-Overlay
   ===============================================*/

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);

  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background-color: #2c2c2e;
  padding: 30px;
  border-radius: 15px;
  max-width: 800px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);

  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.overlay.active .modal {
  transform: scale(1);
}

.modal .close-button {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 2.5em;
  color: #fff;
  cursor: url("/img/paw_select.png"), auto;
  line-height: 1;
}

.modal h2 {
  text-align: center;
  margin-top: 0;
  font-size: 2em;
}

.friends-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.friend-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.friend-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #4a4a4c;
  margin-bottom: 10px;
}

.friend-card span {
  font-weight: bold;
  margin-top: 10px;
}

/* ===============================================
   Animationen beim Laden der Seite
   ===============================================*/

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.profile-name,
.link-button,
.icon-button {
  opacity: 0;
  animation: fadeInUp 0.5s ease-out forwards;
}

.icon-button {
  animation-delay: 0.5s;
}

.gradient-border {
  animation-delay: 0.2s;
}
.profile-name {
  animation-delay: 0.4s;
}

.links .link-button:nth-child(1) {
  animation-delay: 0.8s;
}
.links .link-button:nth-child(2) {
  animation-delay: 0.9s;
}
.links .link-button:nth-child(3) {
  animation-delay: 1s;
}
.links .link-button:nth-child(4) {
  animation-delay: 1.1s;
}
.links .link-button:nth-child(5) {
  animation-delay: 1.2s;
}
.links .link-button:nth-child(6) {
  animation-delay: 1.3s;
}
.links .link-button:nth-child(7) {
  animation-delay: 1.4s;
}
.links .link-button:nth-child(8) {
  animation-delay: 1.5s;
}
.links .link-button:nth-child(9) {
  animation-delay: 1.6s;
}
.links .link-button:nth-child(10) {
  animation-delay: 1.7s;
}

/* ===============================================
   Bio mit Typewriter-Effekt
   ===============================================*/

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 306px;
  }
}

@keyframes blink-caret {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: #777;
  }
}

p.profile-bio {
  font-family: "Poppins", sans-serif;
  font-size: 1.1em;
  color: #a7a7a7;
  margin: 0 auto 30px auto;

  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: 3px solid #777;
  width: 0;

  animation: typing 3.5s steps(46, end) both,
    blink-caret 0.75s step-end infinite;

  animation-delay: 0.8s;
}

/* --- Styling für die Kommentar-Sektion --- */
.comments-section {
  margin-top: 40px;
  background-color: rgba(44, 44, 46, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 15px;
}

.comment-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
  resize: none;
}

.char-counter-wrapper {
  text-align: right;
  font-size: 0.9em;
  color: #a7a7a7;
  margin-top: -5px;
  padding-right: 5px;
}

.comment-form h3 {
  margin: 0;
  text-align: left;
}

.comment-form input,
.comment-form textarea {
  width: 100%;
  resize: none;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #555;
  background-color: #1c1c1e;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 1em;
  box-sizing: border-box;
}

.comment-form button {
  align-self: flex-start;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  background-color: #3498db;
  color: white;
  font-weight: bold;
  cursor: url("/img/paw.png"), auto;
  transition: background-color 0.2s;
}

.comment-form button:hover {
  background-color: #2980b9;
  cursor: url("/img/paw_select.png"), auto;
}

.comments-list h3 {
  text-align: left;
  border-bottom: 1px solid #4a4a4c;
  padding-bottom: 10px;
}

.comment {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 10px;
  text-align: left;
}

.comment-author {
  color: #3498db;
  font-weight: bold;
}

.comment-text {
  margin: 5px 0;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.comment-date {
  font-size: 0.8em;
  color: #a7a7a7;
  opacity: 0.7;
}

.icon-button {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5em;
  color: #a7a7a7;
  cursor: url("/img/paw.png"), auto;
  transition: color 0.2s, transform 0.2s;
}

.icon-button:hover {
  color: #fff;
  transform: scale(1.1);
  cursor: url("/img/paw_select.png"), auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  background-color: #1c1c1e;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
  cursor: url("/img/paw_select.png"), auto;
}

/* --- Styling für die Bild-Lightbox --- */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);

  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 35px;
  font-size: 40px;
  color: #fff;
  cursor: url("/img/paw_select.png"), auto;
  transition: color 0.3s ease;
}

.lightbox-close:hover {
  color: #bbb;
}

.lightbox-content {
  max-width: 90%;
  max-height: 85%;
  object-fit: contain;
}

/* --- Styling für die Event-Liste im Overlay --- */
.events-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 20px;
}

.events-column {
  flex: 1;
  min-width: 0;
}

.events-column h3 {
  margin-top: 0;
  border-bottom: 1px solid #4a4a4c;
  padding-bottom: 10px;
}

.events-column:nth-child(2) h3 {
  margin-top: 30px;
}

.attended-list p {
  background-color: rgba(0, 0, 0, 0.15);
  padding: 10px;
  border-radius: 8px;
  margin: 0 0 10px 0;
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.event-card {
  display: flex;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 15px;
  border-radius: 10px;
}

.event-card img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-right: 20px;
}

.event-info h3 {
  margin: 0 0 5px 0;
  font-size: 1.2em;
}

.event-info p {
  margin: 0;
  color: #a7a7a7;
}

/* --- Styling für den Like-Bereich --- */
.comment-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  padding-top: 10px;
  border-top: 1px solid #4a4a4c;
}

.like-section {
  display: flex;
  align-items: center;
  gap: 8px;
}

.like-button {
  background: none;
  border: none;
  font-size: 1.3em;
  cursor: url("/img/paw_select.png"), auto;
  padding: 0;
  transition: transform 0.2s ease, color 0.2s ease;
}

.like-button:hover {
  transform: scale(1.2);
}

.like-button.liked {
  color: #e74c3c;
  transform: scale(1.2);
  cursor: url("/img/paw.png"), auto;
}

.like-count {
  font-weight: bold;
  font-size: 0.9em;
}

.discord-status-dot-avatar {
  position: absolute;
  right: 5px;
  bottom: 5px;

  width: 20px;
  height: 20px;
  border-radius: 50%;

  border: 3px solid #2c2c2e;

  background-color: #747f8d;

  z-index: 10;
}

.discord-status-dot-avatar.online {
  background-color: #3ba55d;
}
.discord-status-dot-avatar.idle {
  background-color: #faa61a;
}
.discord-status-dot-avatar.dnd {
  background-color: #ed4245;
}
.discord-status-dot-avatar.offline {
  background-color: #747f8d;
}
.status-tooltip {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);

  background-color: #1a1a1c;
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.9em;
  white-space: nowrap;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  z-index: 20;
}

.status-tooltip.show {
  animation: fadeInOut 3s ease-in-out forwards;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -10px);
  }
  15%,
  85% {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
  }
  100% {
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -10px);
  }
}

/* --- Styling für den Event-Countdown --- */
.countdown-container {
  position: absolute;
  top: 50%;
  right: 105%;
  transform: translateY(-50%);

  background-color: rgba(26, 26, 28, 0.6);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 10px 15px;

  text-align: center;
  width: 240px;
}

.countdown-title {
  font-size: 0.8em;
  font-weight: bold;
  color: #a7a7a7;
  margin-bottom: 5px;
}

.countdown-timer {
  font-size: 1.4em;
  font-weight: bold;
  color: #fff;
  letter-spacing: 1.5px;
}

/* --- Quiz Styles --- */
#quiz-container {
  text-align: center;
  color: #fff;
}

#quiz-question {
  font-size: 1.5em;
  margin-bottom: 20px;
}

#quiz-answers {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2x2 grid */
  gap: 15px;
  margin-bottom: 20px;
}

.answer-btn {
  width: 100%;
  padding: 15px;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
  border: 2px solid #4a4a4c;
  background-color: #3a3a3c;
  color: #fff;
  border-radius: 8px;
  transition: background-color 0.2s, transform 0.2s;
}

.answer-btn:hover:not([disabled]) {
  background-color: #4a4a4c;
  transform: scale(1.03);
}

.answer-btn.correct {
  background-color: #2ecc71; /* Green */
  border-color: #27ae60;
}

.answer-btn.incorrect {
  background-color: #e74c3c; /* Red */
  border-color: #c0392b;
}

#quiz-feedback {
  min-height: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

#quiz-results {
  font-size: 1.5em;
}

#quiz-overlay .modal {
  background-color: transparent;
  box-shadow: none;
}

/* --- Styling für das "About Me"-Overlay --- */

.about-content p {
  font-size: 1.1em;
  line-height: 1.6;
  text-align: left;
}

.separator {
  border: none;
  height: 1px;
  background-color: #4a4a4c;
  margin: 30px 0;
}

.about-details {
  display: grid;
  /* Erstellt zwei Spalten auf größeren Bildschirmen */
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 10px;
  border-radius: 8px;
}

.detail-item i {
  font-size: 1.5em;
  color: #a7a7a7;
}
