        body {
            background-color: #000000;
            color: #ffffff;
            font-family: 'EB Garamond', serif;
            margin: 0;
            padding: 20px 20px 80px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            min-height: 100vh;
            line-height: 1.5;
            text-align: center;
            -webkit-font-smoothing: antialiased;
        }
	
        /* Container für das Cover-Bild */
        .cover-container {
            width: 100%;
            max-width: 420px; 
            margin-top: 50px;
            margin-bottom: 20px;
            display: flex;
            justify-content: center;
        }

        .cover-image {
		cursor: pointer;
            width: 100%;
            height: auto;
            aspect-ratio: 3 / 4;
            object-fit: cover;
            border: 1px solid #2b2b2b;
            box-shadow: 0 20px 50px rgba(0,0,0,0.9);
            transition: transform 0.6s ease-in-out, box-shadow 0.6s ease-in-out;
        }

        .cover-image:hover {
            transform: scale(1.03); 
            box-shadow: 0 30px 70px rgba(255, 69, 0, 0.2);
        }

        .availability-note {
            display: block;
            margin-bottom: 20px;
            font-size: 0.9rem;
            color: #ffffff; 
            letter-spacing: 1px;
        }

        /* Buttons */
        .buy-badge {
            display: inline-block;
            padding: 15px 40px;
            margin-bottom: 40px; 
            border: 1px solid #ffffff; 
            background-color: transparent;
            color: #ffffff;
            font-size: 1.2rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.4s ease-in-out;
            text-decoration: none;
        }

        .buy-badge:hover {
            background-color: #ff4500;
            border-color: #ff4500;
            color: #000000;
            box-shadow: 0 0 30px rgba(255, 69, 0, 0.4);
        }

        /* VIDEO SEKTION - Breite an .cover-container angepasst */
        .video-section {
            width: 100%;
            max-width: 420px; /* Gleiche Breite wie Cover */
            margin: 20px auto 60px auto;
        }

        .video-container {
            position: relative;
            padding-bottom: 177.78%; /* 9:16 Seitenverhältnis */
            height: 0;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0,0,0,0.8);
            border: 1px solid #2b2b2b;
            border-radius: 4px;
        }

        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        /* Klappentext */
        .blurb-container {
            max-width: 700px;
            margin-bottom: 80px; 
            padding: 0 20px;
        }

        .blurb-text {
            font-size: 1.7rem; 
            color: #e0e0e0;
            font-weight: 500;
        }

        .blurb-divider {
            width: 40px;
            height: 1px;
            background-color: #333;
            margin: 40px auto;
        }

        /* Seller Links */
        .seller-list {
            font-size: 1rem;
            margin-bottom: 80px;
            color: #888;
        }

        .seller a {
            color: #ffffff !important;
            text-decoration: none;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin: 12px 0;
            transition: all 0.4s ease-in-out;
        }
		
		.otherbook:hover {
            color: #ff4500 !important;
            text-decoration: none;            
            transition: all 0.4s ease-in-out;
        }
		.otherbook {
            color: #ffffff !important;
            text-decoration: underline dotted;          
            transition: all 0.4s ease-in-out;
        }

        .seller a:hover {
            color: #ff4500 !important;
            border-bottom-color: #ff4500;
        }

        /* Footer */
        .impressum-container {
            width: 100%;
            max-width: 500px;
            margin-top: auto;
            padding-top: 30px;
            border-top: 1px solid #111;
        }

        h2 {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 4px;
            color: #444;
            margin-bottom: 15px;
        }

        .impressum-details {
            font-size: 0.9rem; 
            color: #555;
        }

        /* Responsive */
        @media (max-width: 600px) {
            .blurb-text { font-size: 1.4rem; }
            .cover-container { max-width: 300px; }
            .video-section { max-width: 300px; } /* Auch hier bündig zum Cover */
            .buy-badge { font-size: 1rem; padding: 12px 25px; }
        }
		.seller_outer {
			display: grid;
			width: max-content;
			grid-template-columns: max-content auto;
			text-align: left;
			margin-left: auto;
			margin-right: auto;
			
  }
  /* Der Link-Container, der fixiert wird */
.floating-profile-link {
  position: fixed;
  top: 20px;
  left: 20px;
  width: 80px;
  height: 80px;
  z-index: 1000;
  display: block; /* Wichtig, damit der Link die volle Größe des Bildes annimmt */
  
  /* Die Animation (Ease) für das Vergrößern */
  transition: transform 0.3s ease-in-out;
}

/* Das Bild innerhalb des Links */
.floating-profile-link img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover; /* Verhindert Verzerrungen */
  box-shadow: 0 4px 10px rgba(0, 0, 0); /* Der Standard-Schatten */
  display: block;
  
  /* Die Animation für den Schatten */
  transition: box-shadow 0.3s ease-in-out;
}

/* DER HOVER-EFFEKT */
/* Wenn die Maus über den Link fährt... */
.floating-profile-link:hover {
  transform: scale(1.08); /* ...vergrößert sich der gesamte Link um 8% */
}

.floating-profile-link:hover img {
  box-shadow: 0 8px 18px rgba(0, 0, 0); /* ...und der Schatten wird etwas weicher und größer, was einen "Anhebe"-Effekt erzeugt */
}

.impressum-container a, .share-buttons a  {
	color: #555;
	text-decoration: none;
	transition: all 0.4s ease-in-out;
	padding: 10px 30px 10px 30px;
	
}
.share-buttons a  { 
display: block;
	border: 1px solid #555;
	margin-bottom: 10px;
	}


.impressum-container a:hover, .share-buttons a:hover {
	color: #ff4500;
	text-decoration: none;
}

.share-buttons a:hover { 
border: 1px solid #ff4500;
background: #ff4500;
color: black;
 transform: scale(1.05); 

}
.share-buttons {
	margin-bottom: 20px;
	
}

