@charset "UTF-8";
/* CSS Document */

        @font-face {
      font-family: ratfur;
      src: url("fonts/Cookies.ttf");
    }

            body {
			font-family: 'ratfur', sans-serif;
            margin: 0px;
            padding: 0px;
            background: #ffffff;
        }
            
			img,
			object,
			.custom-audio-player,
			details,
			summary {
				display: block;
				margin: 0;
				padding: 0;
			}


            .img {
            width: 100%;
            max-width: 100%;
            margin: 0px;
            padding: 0px;
            border: none;
            
}
            
            .footer{
            width: 100%;
            max-width: 100%;
            margin: 0px;
            padding: 0px;
            border: none;
            position: relative;
            margin-bottom: -5px;
            

            }
    


    
            .svg-wrapper {
            width: 100%;
            height: auto;
            border: 1px solid #333;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 0 30px rgba(255, 0, 255, 0.2);
        }
            
    

         

/* === Details / Summary === */
details {
  padding: 0;
}

summary {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  cursor: pointer;
  padding: 10px 0;
  overflow: visible;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "➳";
  font-size: 2.5rem;
  line-height: 1;
  display: inline-block;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

details[open] summary::after {
  transform: rotate(180deg);
}


.custom-audio-player {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 0;
    margin: 0 auto;
    width: 100%;
}

.play-btn {
    font-family: 'ratfur', 'Helvetica Neue', sans-serif;
	-webkit-appearance: none;          /* Entfernt iOS-Standard-Styling */
    appearance: none;
    
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid #1a1a1a;
    background: #95202B;
    
    /* FARBE MIT !IMPORTANT ERZWINGEN */
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    
    font-size: 32px;                   /* Etwas größer für bessere Sichtbarkeit */
    font-weight: bold;
   
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    -webkit-tap-highlight-color: transparent;
    outline: none;
    padding: 0;
    line-height: 1;
    text-align: center;
}

/* ALLE Zustände mit !important überschreiben */
.play-btn:focus,
.play-btn:active,
.play-btn:hover,
.play-btn:focus-visible {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    background: #95202B;
}

.play-btn:active {
    transform: scale(0.92);
    background: #7a1a22;
}

/* Media-Queries für verschiedene Bildschirmgrößen */
@media (max-width: 480px) {
    .play-btn {
        flex: 0 0 56px;
        width: 56px;
        height: 56px;
        font-size: 28px;
    }
}

@media (min-width: 768px) {
    .play-btn {
        flex: 0 0 96px;
        width: 96px;
        height: 96px;
        font-size: 48px;
    }
}

@media (min-width: 1200px) {
    .play-btn {
        flex: 0 0 120px;
        width: 120px;
        height: 120px;
        font-size: 60px;
    }
}