 <style>
        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        /* Ensures the body can scroll and footer stays at bottom */
        body { 
            background-color: #fff; 
            font-family: 'Arial', sans-serif; 
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        .header-section {
            background-color: #050a12;
            width: 100%;
            height: 450px;
            display: flex;
            position: relative;
            overflow: hidden;
            flex-shrink: 0; /* Keeps header height consistent */
        }

        /* 1. Player Image */
        .player-container {
            position: relative;
            height: 100%;
            z-index: 30;
            flex: 0 0 auto;
        }
        .player-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

        /* 2. Background Graphic with Masking */
        .graphic-container {
            position: absolute;
            top: 0; right: 0; width: 100%; height: 100%;
            z-index: 10;
            display: flex; justify-content: flex-end; align-items: center;
        }
        .graphic-img {
            height: 140%;
            opacity: 0.6; 
            transform: translate(5%, 0);
            -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0) 20%, rgba(0,0,0,1) 75%);
            mask-image: linear-gradient(to right, rgba(0,0,0,0) 20%, rgba(0,0,0,1) 75%);
        }

        /* 3. Hero Text Overlay */
        .content-overlay {
            position: absolute;
            top: 0; 
            left: 55%; 
            width: 40%; 
            height: 100%;
            z-index: 50;
            display: flex;
            align-items: center;
        }
        .text-box {
            max-width: 480px; 
            text-align: left; 
            color: white;
        }
        .text-box p {
            font-size: 19px;
            line-height: 1.6;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
        }

        /* 4. Main Content Area (Scrollable) */
        main {
            padding: 80px 20px;
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }
        main h2 { margin-bottom: 20px; font-size: 2rem; color: #050a12; }
        main p { font-size: 1.1rem; line-height: 1.8; color: #444; margin-bottom: 40px; }

        /* 5. Footer with Legal Links */
        footer {
            margin-top: auto;
            background-color: #050a12;
            padding: 25px;
            text-align: center;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        footer a {
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            margin: 0 15px;
            font-size: 14px;
            transition: color 0.3s;
        }
        footer a:hover { color: #fff; }

        /* Mobile & Tablet Adjustments */
        @media (max-width: 1100px) {
    .header-section { 
        height: auto; 
        flex-direction: column; 
    }

    /* Player: feste Höhe, kein responsives "Mitskalieren" */
    .player-container { 
        height: 350px; 
        width: 100%;
        margin: 0 auto; 
        overflow: hidden;
        position: relative;
    }

    /* Bild: nicht verzerren; statt Skalieren -> sauberer Crop */
    .player-img { 
        height: 350px;
        width: 100%;
        object-fit: cover;
        display: block;
    }

    .content-overlay { 
        position: static; 
        width: 100%; 
        padding: 40px 20px; 
        background: #050a12; 
        justify-content: center; 
    }

    .text-box { 
        text-align: center; 
    }

    .graphic-container { 
        display: none; 
    }

    footer a { 
        display: block; 
        margin: 10px 0; 
    }
}
/* FastSpring Compliance Block */
.fs-box {
    border: 1px solid #ddd;
    padding: 30px;
    border-radius: 4px;
    background: #fafafa;
    margin-top: 40px;
    text-align: left;
}

.fs-info {
    font-size: 0.8rem;
    color: #555;
    line-height: 1.4;
    margin-top: 6px;
}
.menu-icon {
            position: absolute;
            top: 20px;
            right: 20px;
            cursor: pointer;
            z-index: 1001;
        }
        .menu-icon span {
            display: block;
            width: 30px;
            height: 3px;
            background-color: #ffffff;
            margin: 6px 0;
        }

        .nav-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 250px;
            height: 100%;
            background-color: #050a12;
            padding-top: 80px;
            transition: 0.4s;
            z-index: 1000;
        }
        .nav-menu a {
            display: block;
            padding: 15px 25px;
            color: #ffffff;
            text-decoration: none;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .nav-menu.active { right: 0; }
		.purchase-layout {
    display: flex;
    gap: 40px;   /* vorher z. B. 40px */
    align-items: flex-start;
    margin-top: 40px;
}

.purchase-box {
    margin-top: 25px;
    padding: 16px 18px;
    width: 220px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    text-align: left;
}


.order-btn {
    display: block;
    width: 100%;
    height: 42px;
    line-height: 42px;
    background-color: #050a12;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    margin-bottom: 8px;
}


.order-btn.secondary {
    background: white;
    color: #050a12;
    border: 2px solid #050a12;
}



.feature-list {
    flex: 1;
    text-align: left;
}

.feature-list li {
    margin-bottom: 12px;
    line-height: 1.5;
}

/* Mobile: untereinander */
@media (max-width: 900px) {
    .purchase-layout {
        flex-direction: column;
    }

   .purchase-box {
    margin-top: 30px;
    max-width: 220px;
}
}
.features-box h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #050a12;
    text-align: left;
}
.features-box {
    text-align: left;
}
.preview-image {
    flex: 0 0 320px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 20px;
}

.preview-image img {
    max-width: 320px;
    width: 100%;
    height: auto;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    border-radius: 3px;
}

@media (max-width: 900px) {
    .preview-image {
        order: 2;
        margin: 30px 0;
    }
}
/* ===== Purchase Table ===== */

.purchase-table {
    width: 100%;
    max-width: 560px;
    margin-top: 30px;

    border-collapse: separate;
    border-spacing: 26px 0;   /* Abstand zwischen den Boxen */
}

/* Tabellenkopf */
.purchase-table th {
    background: #f5f5f5;
    font-weight: bold;
    border: 1px solid #ddd;
    padding: 16px 20px;
    text-align: left;
}

/* Tabellenzellen */
.purchase-table td {
    border: 1px solid #ddd;
    padding: 18px 20px;
    vertical-align: top;
    text-align: left;
}

/* Inhalt pro Zelle (für Button unten) */
.cell-box {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Feature-Liste */
.cell-box ul {
    margin: 12px 0 22px 18px;
    padding: 0;
    min-height: 220px; /* entscheidend */
}

.cell-box li {
    margin-bottom: 8px;
}

/* Button */
a.table-btn {
    display: block;
    width: 100%;
    height: 42px;
    line-height: 42px;

    margin-top: auto;   /* entscheidend: Button immer unten */

    background-color: #050a12;
    color: #ffffff;

    text-decoration: none;
    font-weight: bold;
    text-align: center;
}
/* ===== Slider / Carousel ===== */
.slider-container {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  user-select: none;
}

.slider-slides {
  position: relative;
  height: 300px;        /* EINZIGE Höhenangabe */
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s linear;
}

.slide.is-active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Pfeile links/rechts */
.slider-prev,
.slider-next{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(0,0,0,0.45);
  color: #fff;
  font-size: 22px;
  line-height: 44px;
  text-align: center;
  z-index: 2;
}

.slider-prev{ left: 10px; }
.slider-next{ right: 10px; }

.slider-prev:hover,
.slider-next:hover{
  background: rgba(0,0,0,0.60);
}

/* Footer: Caption + Dots */
.slider-footer{
  padding: 14px 0 0;
  text-align: center;
}

.slider-caption{
  font-size: 14px;
  color: #050a12;
  margin: 0 0 10px 0;
}

/* Dots */
.slider-dots{
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-bottom: 6px;
}

.slider-dots .dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.35);
  background: transparent;
  cursor: pointer;
}

.slider-dots .dot.is-active{
  background: rgba(0,0,0,0.55);
  border-color: rgba(0,0,0,0.55);
}

/* Optional: auf kleinen Screens Pfeile etwas kleiner */
@media (max-width: 600px){
  .slider-prev,
  .slider-next{
    width: 40px;
    height: 40px;
    font-size: 20px;
    line-height: 40px;
  }
}
.price-image {
    list-style: none;
    margin: 12px 0 16px 0;
    padding: 0;
    text-align: center;
}

.price-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}
    </style>