<style>
/* --- Algemene Stijlen & Body --- */
body {
    font-family: 'Roboto', sans-serif;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.bg-image {
    background-image: url('src/8k_iptvbg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.containerH {
    max-width: 80%;
    margin: 0 auto;
	padding: 3rem 2rem;
    border-radius: 15px;
	margin-bottom: 2rem;
}


/* --- Contact Widget & Buttons --- */
.contact-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.contact-button {
    background-color: #FABE23;
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, transform 0.3s;
}

.contact-button:hover {
    background-color: #000000;
    transform: scale(1.1);
}

.contact-options {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.contact-options.show {
    display: flex;
}

.contact-option {
    background-color: #ffffff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.contact-option:hover {
    transform: scale(1.1);
}

.contact-option.telegram { background-color: #0088cc; }
.contact-option.email { background-color: #D44638; }
.contact-option.whatsapp { background-color: #25D366; }

.icon {
    width: 30px;
    height: 30px;
    fill: white;
}

/* --- IPTV 8K Sectie --- */
.iptv-8k-container {
    background: linear-gradient(135deg, #1a1a1a, #000000CC);
    color: #ffffff;
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    max-width: 1200px;
    margin: 2rem auto;
}

.iptv-8k-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
    color: #ffd700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.iptv-8k-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #e0e0e0;
}

.iptv-8k-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.iptv-8k-feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.iptv-8k-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.iptv-8k-feature-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #ffd700;
}

.iptv-8k-feature-description {
    font-size: 1rem;
    color: #cccccc;
}

.iptv-8k-cta {
    font-size: 1.3rem;
    text-align: center;
    margin-top: 3rem;
    color: #ffffff;
    font-weight: bold;
}

/* --- Logo Slideshow --- */
.logo-slideshow {
    width: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px 0;
	max-width: 80%;
	border-radius: 15px;
	margin: 0 auto;
	margin-bottom: 2rem;
}

.logo-container {
    display: flex;
    transition: transform 0.5s ease;

}

.logo-slide {
    flex: 0 0 auto;
    width: 16.66%;
    padding: 0 10px;
    box-sizing: border-box;
}

.logo-slide img {
    width: 100%;
    height: 66px;
    object-fit: contain;
    border-radius: 0;
}

/* --- Contact Container --- */
.contact-container {
    background-color: #000000;
    color: #ffd700;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 2rem auto;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, rgba(0,0,0,0) 70%);
    transform: rotate(45deg);
    z-index: 1;
}

.contact-content {
    position: relative;
    z-index: 2;
}

.contact-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255,215,0,0.5);
}

.contact-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    background-color: #25D366;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
    margin-right: 0.5rem;
    fill: #ffffff;
}

/* --- howto Sectie --- */
.howto-container {
    max-width: 80%;
    margin: 0 auto;
	margin-top: 2em;
	padding: 3rem 2rem;
    border-radius: 15px;
}

.howto-title {
    text-align: center;
    color: #ffd700;
    margin-bottom: 30px;
    font-size: 28px;
}

.howto-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #ffd700;
}

.howto-question {
    background-color: transparent;
    color: #fff;
    cursor: pointer;
    padding: 15px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.howto-question:hover { background-color: #333; }

.howto-question:after {
    content: '\002B';
    color: #ffd700;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.howto-question.active:after { content: "\2212"; }

.howto-answer {
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background-color: #111;
}

.howto-answer p {
    margin-top: 10px;
    margin-bottom: 10px;
}

/* --- FAQ Sectie --- */
.faq-container {
    max-width: 80%;
    margin: 0 auto;
	margin-top: 2em;
	padding: 3rem 2rem;
    border-radius: 15px;
}

.faq-title {
    text-align: center;
    color: #ffd700;
    margin-bottom: 30px;
    font-size: 28px;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #ffd700;
}

.faq-question {
    background-color: transparent;
    color: #fff;
    cursor: pointer;
    padding: 15px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover { background-color: #333; }

.faq-question:after {
    content: '\002B';
    color: #ffd700;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.faq-question.active:after { content: "\2212"; }

.faq-answer {
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background-color: #111;
}

.faq-answer p {
    margin-top: 10px;
    margin-bottom: 10px;
}

/* --- Poster & Slider --- */
.poster-container {
    display: flex;
    transition: transform 300ms ease-in-out;
}

.poster-item {
    position: relative;
    width: 256px;
    height: 384px;
    flex-shrink: 0;
    overflow: hidden;
}

.poster-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.poster-title {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-weight: bold;
    padding: 5px 0;
    font-size: 1rem;
}

.sliderM {
    overflow: hidden;
    width: 100%;
    background: none;
}

.slide-trackM {
    display: flex;
    width: calc(250px * 10);
    animation: scroll 20s linear infinite;
}

.slide-trackM:hover { animation-play-state: paused; }

.imgM {
    width: 200px;
    height: 300px;
    margin: 10px;
    border-radius: 8px;
    object-fit: cover;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 3)); }
}

/* --- Media Queries --- */
@media (max-width: 1200px) {
    .logo-slide { width: 10%; }
}

@media (max-width: 1024px) {
    .logo-slide { width: 25%; }
}

@media (max-width: 768px) {
    .iptv-8k-container { padding: 2rem 1rem; }
    .iptv-8k-title { font-size: 2rem; }
    .iptv-8k-subtitle { font-size: 1rem; }
    .iptv-8k-feature-title { font-size: 1.1rem; }
    .iptv-8k-feature-description { font-size: 0.9rem; }
    .iptv-8k-cta { font-size: 1.1rem; }
    .logo-slide { width: 33.33%; }
    .contact-container { margin: 1rem; padding: 1.5rem; }
    .contact-title { font-size: 1.75rem; }
    .contact-text { font-size: 1rem; }
}

@media screen and (max-width: 600px) {
    .faq-title { font-size: 24px; }
    .faq-question { font-size: 16px; padding: 10px; }
}

@media (max-width: 480px) {
    .logo-slide { width: 50%; }
}
</style>