u003cstyleu003e n/* u002du002d- STYLES FOR STANDALONE SHARE BANNER u002du002d- */n.standalone-share-banner {n position: absolute; /* Crucial for positioning the toast */n top: 320px;nright: 0; nmax-width: 110px;nmin-width:80px;n nheight: 40px;nz-index: 10;nn /* margin: 20px auto; /* Center the banner */ */n /* border-radius: 8px; */n /* overflow: hidden; /* Ensures toast corners don’t stick out */ */n}nn.standalone-share-banner img {n cursor: pointer;n transition: opacity 0.3s ease;n}nn.standalone-share-banner img:hover {n opacity: 0.85;n}nn.standalone-share-toast {n position: absolute;n bottom: 20px; /* Positioned 20px from the bottom, *inside* the banner */n left: 50%;n transform: translateX(-50%) translateY(20px); /* Start hidden below */n background-color: #0678E3;n color: white;n padding: 12px 24px;n border-radius: 8px;n font-size: 14px;n font-weight: 500;n z-index: 10;n opacity: 0;n transition: all 0.3s ease;n box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);n pointer-events: none;n font-family: -apple-system, BlinkMacSystemFont, ‘Segoe UI’, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;n}nn.standalone-share-toast.show {n opacity: 1;n transform: translateX(-50%) translateY(0); /* Animate into view */n}nn @media (max-width: 768px) {n .standalone-share-banner {n top: 80px;n }n }n u003c/styleu003enu003cdiv class=u0022standalone-share-banneru0022u003en u003cimg src=u0022https://snipeproductions.com/wp-content/uploads/2025/12/BOTTONS-SHARE-OF-DERECHA.pngu0022 alt=u0022Share This Pageu0022u003en u003cdiv class=u0022standalone-share-toastu0022u003eLink copied to clipboard!u003c/divu003enu003c/divu003enu003cscriptu003en(function() {n ‘use strict’;nn /**n * Shows the toast message for a specific banner.n * @param {HTMLElement} toastElement – The specific toast element to show.n */n function showBannerToast(toastElement) {n // If a timer is already running for this toast, clear itn if (toastElement.vptToastTimer) {n clearTimeout(toastElement.vptToastTimer);n }n n // Show the toastn toastElement.classList.add(‘show’);n n // Set a new timer to hide itn toastElement.vptToastTimer = setTimeout(() =u003e {n toastElement.classList.remove(‘show’);n toastElement.vptToastTimer = null; // Clear the timer IDn }, 3000);n }n n /**n * Handles the share logic for a clicked banner.n * @param {HTMLElement} toastElement – The toast element associated with the clicked banner.n */n async function shareBannerPage(toastElement) {n const url = window.location.href;n const title = document.title;n n if (navigator.share) {n // Use the Web Share APIn try {n await navigator.share({ title: title, url: url });n } catch (err) {n // If user aborts (AbortError), do nothing.n // For other errors, fall back to clipboard.n if (err.name !== ‘AbortError’) {n navigator.clipboard.writeText(url).then(() =u003e showBannerToast(toastElement));n }n }n } else {n // Fallback for browsers that don’t support Web Share APIn navigator.clipboard.writeText(url).then(() =u003e showBannerToast(toastElement));n }n }nn // Run this script when the DOM is fully loadedn document.addEventListener(‘DOMContentLoaded’, function() {n // Find ALL share banners on the pagen const allBanners = document.querySelectorAll(‘.standalone-share-banner’);n n // Loop through each banner and set it upn allBanners.forEach(banner =u003e {n const img = banner.querySelector(‘img’);n const toast = banner.querySelector(‘.standalone-share-toast’);n n if (img u0026u0026 toast) {n // Add a click listener to the imagen img.addEventListener(‘click’, function() {n shareBannerPage(toast);n });n } else {n console.warn(‘Share banner setup incomplete. Missing img or toast element.’, banner);n }n });n });n})();nu003c/scriptu003e
◦ CLICK ON [LIGHTS 𖡊 ON/OFF] TO RETAIN YOUR FAVORITE SUBTITLES OF CHOICE. TO CHOOSE SUBTITLES, CLICK ON PLAY [▶] 2X, THEN [⚙︎ ICON] /SCROLL TO ⇄ [CC] & PICK ◦ NOTE: THIS PLAYER IS DERIVED FROM THE ORIGINAL YOUTUBE SOURCE. SUBTITLES WILL DISAPPEAR IF YOU CLICK ON [FULL SCREEN] TO BYPASS THIS, CLICK ON [LIGHTS 𖡊 ON/OFF].
◦ [ENGLISH] ◦ DIRILIŞ ERTUĞRUL ◦
◦ [ESPAÑOL] ◦ DIRILIŞ ERTUĞRUL ◦
◦ [ARABIC-العربية] ◦ ديريليس أرطغرل ◦
◦ [PORTUGUÊS] ◦ DIRILIŞ ERTUĞRUL ◦
STAY TUNED: FOLLOW THE PRODUCERS 🐎
u003cstyleu003en/* This CSS creates the main 2-column grid */n.custom-grid-container {n display: flex; /* Establishes a flexbox layout */n gap: 10px; /* Adjust the space between the two columns */n align-items: flex-start; /* Aligns items to the top */n}nn/* This styles each column */n.custom-grid-column {n flex: 1; /* Makes each column take up equal space */n min-width: 0; /* Prevents columns from overflowing on small screens */n flex-direction: column;n /* Adds space between the banners and social icons within a column */n}nn .custom-grid-column figure {n margin: 0px !important;n }nn/* This ensures your images are responsive and fit the column width */n.custom-grid-column .wp-block-image img {n width: 100%;n height: auto;n display: block;n}nn/* This styles the row for your social icons */n.social-icons-row {n display: flex;n justify-content: center; /* Centers the icons horizontally */n align-items: center;n gap: 10px; /* Adjust the space between social icons */n flex-wrap: nowrap; /* Prevents icons from wrapping to a new line */n}nn/* Styles individual social icons for uniform size */n.social-icons-row .wp-block-image {n margin: 0 !important; /* Overrides default WordPress margins */n width: 45px; /* Adjust the size of your social icons */n height: 45px;n}nn/* u002du002d- ✅ NEW: Mobile Adjustments u002du002d- */n/* These styles apply only to screens 600px wide or smaller */n@media screen and (max-width: 600px) {n /* Reduce the vertical space between banners and icons on mobile */n .custom-grid-column {n gap: 10px; n }nn /* Reduce the size of social icons to fit on one line */n .social-icons-row .wp-block-image {n width: 20px; n height: 20px;n }n n /* Reduce the space between the smaller icons */n .social-icons-row {n gap: 8px;n }n}nu003c/styleu003ennu003cdiv class=u0022custom-grid-containeru0022u003enn u003cdiv class=u0022custom-grid-columnu0022u003en u003cfigure class=u0022wp-block-image size-largeu0022u003eu003ca href=u0022https://bozdagfilm.com.tr/u0022u003eu003cimg src=u0022https://snipeproductions.com/wp-content/uploads/2024/07/BANNER-SOCIAL-MEDIA-BOZDAG-FILMS.jpgu0022 alt=u0022Bozdag Films Banneru0022 class=u0022wp-image-16423u0022/u003eu003c/au003eu003c/figureu003enu003cdiv class=u0022social-icons-rowu0022u003en u003cfigure class=u0022wp-block-imageu0022u003eu003ca href=u0022https://www.youtube.com/bozdagfilmu0022u003eu003cimg src=u0022https://snipeproductions.com/wp-content/uploads/2025/01/YOUTUB02.pngu0022 alt=u0022YouTubeu0022 class=u0022wp-image-2286u0022/u003eu003c/au003eu003c/figureu003en u003cfigure class=u0022wp-block-imageu0022u003eu003ca href=u0022https://www.instagram.com/bozdagfilmu0022u003eu003cimg src=u0022https://snipeproductions.com/wp-content/uploads/2025/01//INSTAGRA02.pngu0022 alt=u0022Instagramu0022 class=u0022wp-image-2285u0022/u003eu003c/au003eu003c/figureu003en u003cfigure class=u0022wp-block-imageu0022u003eu003ca href=u0022https://www.tiktok.com/@bozdagfilmresmiu0022u003eu003cimg src=u0022https://snipeproductions.com/wp-content/uploads/2025/01/TIKTOKD02.pngu0022 alt=u0022TikToku0022 class=u0022wp-image-2284u0022/u003eu003c/au003eu003c/figureu003en u003cfigure class=u0022wp-block-imageu0022u003eu003ca href=u0022https://x.com/bozdagfilmu0022u003eu003cimg src=u0022https://snipeproductions.com/wp-content/uploads/2025/01/XTWITT02.pngu0022 alt=u0022X/Twitteru0022 class=u0022wp-image-2283u0022/u003eu003c/au003eu003c/figureu003en u003cfigure class=u0022wp-block-imageu0022u003eu003ca href=u0022https://web.facebook.com/bozdagfilm?_rdc=1u0026_rdr#u0022u003eu003cimg src=u0022https://snipeproductions.com/wp-content/uploads/2025/01/FACEK02.pngu0022 alt=u0022Facebooku0022 class=u0022wp-image-2282u0022/u003eu003c/au003eu003c/figureu003en u003c/divu003en u003cfigure class=u0022wp-block-image size-largeu0022u003eu003ca href=u0022http://www.mehmetbozdag.com/u0022u003eu003cimg src=u0022https://snipeproductions.com/wp-content/uploads/2024/07/BANNER-SOCIAL-MEDIA-MEHMET-BOZDAG.jpgu0022 alt=u0022Mehmet Bozdag Banneru0022 class=u0022wp-image-16425u0022/u003eu003c/au003eu003c/figureu003enn u003cdiv class=u0022social-icons-rowu0022u003en u003cfigure class=u0022wp-block-imageu0022u003eu003ca href=u0022https://www.youtube.com/results?search_query=mehmet+bozda%C4%9Fu0022u003eu003cimg src=u0022https://snipeproductions.com/wp-content/uploads/2025/01/YOUTUB02.pngu0022 alt=u0022YouTubeu0022 class=u0022wp-image-2286u0022/u003eu003c/au003eu003c/figureu003en u003cfigure class=u0022wp-block-imageu0022u003eu003ca href=u0022https://www.instagram.com/mehmetbozdagu0022u003eu003cimg src=u0022https://snipeproductions.com/wp-content/uploads/2025/01//INSTAGRA02.pngu0022 alt=u0022Instagramu0022 class=u0022wp-image-2285u0022/u003eu003c/au003eu003c/figureu003en u003cfigure class=u0022wp-block-imageu0022u003eu003ca href=u0022https://www.tiktok.com/discover/mehmet-bozda%C4%9Fu0022u003eu003cimg src=u0022https://snipeproductions.com/wp-content/uploads/2025/01/TIKTOKD02.pngu0022 alt=u0022TikToku0022 class=u0022wp-image-2284u0022/u003eu003c/au003eu003c/figureu003en u003cfigure class=u0022wp-block-imageu0022u003eu003ca href=u0022https://x.com/mmehmetbozdag?lang=esu0022u003eu003cimg src=u0022https://snipeproductions.com/wp-content/uploads/2025/01/XTWITT02.pngu0022 alt=u0022X/Twitteru0022 class=u0022wp-image-2283u0022/u003eu003c/au003eu003c/figureu003en u003cfigure class=u0022wp-block-imageu0022u003eu003ca href=u0022https://web.facebook.com/mmehmetbozdagu0022u003eu003cimg src=u0022https://snipeproductions.com/wp-content/uploads/2025/01/FACEK02.pngu0022 alt=u0022Facebooku0022 class=u0022wp-image-2282u0022/u003eu003c/au003eu003c/figureu003en u003c/divu003en u003c/divu003enn u003cdiv class=u0022custom-grid-columnu0022u003en u003cfigure class=u0022wp-block-image size-fullu0022u003eu003ca href=u0022https://www.trt1.com.tr/u0022u003eu003cimg src=u0022https://snipeproductions.com/wp-content/uploads/2024/07/BANNER-SOCIAL-MEDIA-TRT1.jpgu0022 alt=u0022TRT1 Banneru0022 class=u0022wp-image-16468u0022/u003eu003c/au003eu003c/figureu003enu003cdiv class=u0022social-icons-rowu0022u003en u003cfigure class=u0022wp-block-imageu0022u003eu003ca href=u0022https://www.youtube.com/trt1u0022u003eu003cimg src=u0022https://snipeproductions.com/wp-content/uploads/2025/01/YOUTUB02.pngu0022 alt=u0022YouTubeu0022 class=u0022wp-image-2286u0022/u003eu003c/au003eu003c/figureu003en u003cfigure class=u0022wp-block-imageu0022u003eu003ca href=u0022https://www.instagram.com/trt1u0022u003eu003cimg src=u0022https://snipeproductions.com/wp-content/uploads/2025/01//INSTAGRA02.pngu0022 alt=u0022Instagramu0022 class=u0022wp-image-2285u0022/u003eu003c/au003eu003c/figureu003en u003cfigure class=u0022wp-block-imageu0022u003eu003ca href=u0022https://www.tiktok.com/@trt1u0022u003eu003cimg src=u0022https://snipeproductions.com/wp-content/uploads/2025/01/TIKTOKD02.pngu0022 alt=u0022TikToku0022 class=u0022wp-image-2284u0022/u003eu003c/au003eu003c/figureu003en u003cfigure class=u0022wp-block-imageu0022u003eu003ca href=u0022https://x.com/trt1u0022u003eu003cimg src=u0022https://snipeproductions.com/wp-content/uploads/2025/01/XTWITT02.pngu0022 alt=u0022X/Twitteru0022 class=u0022wp-image-2283u0022/u003eu003c/au003eu003c/figureu003en u003cfigure class=u0022wp-block-imageu0022u003eu003ca href=u0022https://web.facebook.com/TRT1/u0022u003eu003cimg src=u0022https://snipeproductions.com/wp-content/uploads/2025/01/FACEK02.pngu0022 alt=u0022Facebooku0022 class=u0022wp-image-2282u0022/u003eu003c/au003eu003c/figureu003en u003c/divu003en n u003cfigure class=u0022wp-block-image size-fullu0022u003eu003ca href=u0022https://www.tabii.com/detail/2707/dirilis-ertugrulu0022u003eu003cimg src=u0022https://snipeproductions.com/wp-content/uploads/2025/09/BANNER-SOCIAL-MEDIA-DIRILIS-ERTUGRUL-FAMILY2.jpgu0022 alt=u0022Dirilis Ertugrul Family Banneru0022 class=u0022wp-image-16474u0022/u003eu003c/au003eu003c/figureu003enn u003cdiv class=u0022social-icons-rowu0022u003en u003cfigure class=u0022wp-block-imageu0022u003eu003ca href=u0022https://www.youtube.com/channel/UCrr2fV8yd6r8k-FZKGxDr9Qu0022u003eu003cimg src=u0022https://snipeproductions.com/wp-content/uploads/2025/01/YOUTUB02.pngu0022 alt=u0022YouTubeu0022 class=u0022wp-image-2286u0022/u003eu003c/au003eu003c/figureu003en u003cfigure class=u0022wp-block-imageu0022u003eu003ca href=u0022https://www.instagram.com/dirilisdizisiu0022u003eu003cimg src=u0022https://snipeproductions.com/wp-content/uploads/2025/01//INSTAGRA02.pngu0022 alt=u0022Instagramu0022 class=u0022wp-image-2285u0022/u003eu003c/au003eu003c/figureu003en u003cfigure class=u0022wp-block-imageu0022u003eu003ca href=u0022https://www.tiktok.com/tag/dirilisdizisiu0022u003eu003cimg src=u0022https://snipeproductions.com/wp-content/uploads/2025/01/TIKTOKD02.pngu0022 alt=u0022TikToku0022 class=u0022wp-image-2284u0022/u003eu003c/au003eu003c/figureu003en u003cfigure class=u0022wp-block-imageu0022u003eu003ca href=u0022https://x.com/dirilisdizisi?lang=esu0022u003eu003cimg src=u0022https://snipeproductions.com/wp-content/uploads/2025/01/XTWITT02.pngu0022 alt=u0022X/Twitteru0022 class=u0022wp-image-2283u0022/u003eu003c/au003eu003c/figureu003en u003cfigure class=u0022wp-block-imageu0022u003eu003ca href=u0022https://web.facebook.com/Dirilisdizisi/?_rdc=1u0026_rdr#u0022u003eu003cimg src=u0022https://snipeproductions.com/wp-content/uploads/2025/01/FACEK02.pngu0022 alt=u0022Facebooku0022 class=u0022wp-image-2282u0022/u003eu003c/au003eu003c/figureu003en u003c/divu003en u003c/divu003ennu003c/divu003e
NOTE: “Any Streaming Content found here is Provided via 3rd party Embedded shared links, not from our Server. The Content found on this page is Strictly for the sole purpose of Educating the youth on the Principles of Family, Moral, Respect, and Honor. Bozdag Film and their Distributors [TRT/ATV] have Nailed it. Don’t Forget to Follow all of their Social Media by clicking on each Banner above. Stay Updated.” Peace & Love. Eyvallah! Amén & Bendición…