Showing source for: https://www.backroomcastingcouch.com/
Duration: 0.853579s
Server: Apache

<!DOCTYPE html>
<html lang="en">
<head>
<base href="https://www.backroomcastingcouch.com/" />	

<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> 
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="rating" content="RTA-5042-1996-1400-1577-RTA" />
<title>Real Casting Couch Videos | OFFICIAL Backroom Casting Couch</title>
<link rel="canonical" href="https://www.backroomcastingcouch.com/" />
	<meta name="description" content="The Original Backroom Casting Couch. Home of first time amateur wanna be pornstars trying their best to break into the porn business. Unfortunately... there is no job." />
<meta name="robots" content="follow" />
<meta name="author" content="OFFICIAL Backroom Casting Couch">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="Real Casting Couch Videos" />
<meta property="og:title" content="Real Casting Couch Videos"/>
<meta name="twitter:creator" content="@backroomcasting">
<meta name="twitter:site" content="@backroomcasting">
<meta name="twitter:description" content="The Original Backroom Casting Couch. Home of first time amateur wanna be pornstars trying their best to break into the porn business. Unfortunately... there is no job." />
<meta property="og:description" content="The Original Backroom Casting Couch. Home of first time amateur wanna be pornstars trying their best to break into the porn business. Unfortunately... there is no job." />

<meta name="twitter:card" content="summary">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-2TW0SP30XZ"></script>
<script>window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-2TW0SP30XZ');</script>

<!--[if lt IE 9]><script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"></script><![endif]-->

<!-- Mobile -->
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />

<!-- CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-zCbKRCUGaJDkqS1kPbPd7TveP5iyJE0EjAuZQTgFLD2ylzuqKfdKlfG/eSrtxUkn" crossorigin="anonymous">	
<link rel="stylesheet" href="custom_assets/css/styles.css">
<link rel="stylesheet" href="custom_assets/css/sale.css?v=050324">
<link rel="stylesheet" href="custom_assets/css/elx_styles.css">

<!-- jQuery Stuff -->
<script defer src="https://cdnjs.cloudflare.com/ajax/libs/modernizr/2.8.3/modernizr.min.js"></script><!--//modernizr-->

<!-- Fontawesome -->
<script defer src="./js/fontawesome/js/fontawesome-all.js"></script>

	
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js" integrity="sha512-bLT0Qm9VnAYZDflyKcBaQ2gg0hSYNQrJ8RilYldYQ1FxQYoCLtUjuuRuZo+fjqhx/qtq/1itJ0C2ejDxltZVFg==" crossorigin="anonymous"></script>
<script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-fQybjgWLrvvRgtW6bFlB7jaZrFsaBXjsOMm/tB9LTS58ONXgqbR9W8oWht/amnpF" crossorigin="anonymous"></script>

<!-- Javascript Includes -->
	<script   type="text/javascript">
	var interv;
var ax = []
var idx = null;

this.stdthis = function(){

	if (idx == null)
	{
		return;
	}

	cnt = idx.attr('cnt');
	v = idx.attr('v');
	v = parseInt(v);
	v = (v + 1) % cnt;

	sr = ax[v]

	idx.attr('v', v);
	idx.attr('src', sr);
}

// Determines the image zoom level
// If iwidth and swidth aren't passed along, this is a general purpose
// combination of retina level * zoom level

// If iwidth and width are passed along, the zoom level
// for an individual image is calculated.

function pixelRatioZoom(iwidth, swidth)
{	
	zr = 1;
	
	if (!!("undefined" != typeof document.documentElement.ontouchstart))
	{
		zr = screen.width / $(window).width();		
	}
	
	var dpr = (window.devicePixelRatio) ? window.devicePixelRatio : 1;
	
	var zm = NaN;

	if (isNaN(zm))
	{
		try
		{
			zm = document.documentElement.clientWidth / window.innerWidth;
		}
		catch(e)
		{
			zm = NaN;
		}
	}
	
	if (isNaN(zm))
	{
		try
		{		
			zm = screen.deviceXDPI / screen.logicalXDPI 
		}
		catch(e)
		{
			zm = NaN;
		}
	}
	
	zm = (isNaN(zm)) ? 1 : zm;
	
	ret = zm * dpr * zr;
	
	if (typeof iwidth == "undefined" || iwidth == 0)
	{
		return ret;
	}
	
	if (typeof swidth == "undefined" || swidth == 0)
	{
		return ret;
	}
	
	// If the image display width and the actual image width are defined, factor that into image zoom.

	return zm * dpr * zr * (iwidth / swidth);	
}

// Given an image, calculate the zoom level for the image
// And subsequently, what suffix it recommends.

function getSuffixFileZoom(v)
{
	var ret = {};
	
	ret.zoom = pixelRatioZoom(v.width, $(v).attr("src0_1x_width"))
	ret.suffix = "_1x";
	ret.src="";
	
	// Uncomment this if you want to disable retina images.
	// Uncomment and change to 2.0 if you want to force retina images.
	// ret.zoom = 1.0;

	if (ret.zoom > 3.3 && ($(v).attr("src0_4x") != undefined))
	{
		ret.src = $(v).attr("src0_4x");
		ret.suffix = "_4x"
	}
	else if (ret.zoom > 2.3 && ($(v).attr("src0_3x") != undefined))
	{
		ret.src = $(v).attr("src0_3x");
		ret.suffix = "_3x"
	}
	else if (ret.zoom > 1.3 && ($(v).attr("src0_2x") != undefined))
	{
		ret.src = $(v).attr("src0_2x");
		ret.suffix = "_2x"
	}
	else
	{
		if ($(v).attr("src0_1x") != undefined)
		{
			ret.src = $(v).attr("src0_1x");
		}
		else
		{
			ret.src = $(v).attr("src0");
		}
	}
	
	return ret;
}

suffix = "_1x";

var zoom = pixelRatioZoom();
var z_w = NaN;
var z_h = NaN;

try
{
	z_w = window.innerWidth;
	z_h = window.innerHeight;
}
catch(e)
{
	alert(e)
}

function szhandler()
{
    var newzoom = pixelRatioZoom();

	var z_nw = NaN;
	var z_nh = NaN;

	try
	{
		z_nw = window.innerWidth;
		z_nh = window.innerHeight;
	}
	catch(e)
	{
		return;
	}

	if (isNaN(z_w) || isNaN(z_h) || isNaN(z_nw) || isNaN(z_nh))
	{
		return;
	}

	// If this is just scrolling, return
	// If zooming or resizing, do not return.

	if ((z_w == z_nw) && (z_h == z_nh) && (newzoom == zoom))
	{
		return;
	}

	z_w = z_nw;
	z_h = z_nh;
        
	zoom = newzoom

	$(".stdimage").each(function(index) {

		o_img = $(this).attr("src");
		var imageinfo = getSuffixFileZoom(this);			
		n_img = imageinfo.src;
		
		if (n_img != o_img)
		{
			$(this).attr("src", n_img);
		}
	});
}

// zoom / scroll handler.

sch = 0;

if (sch == 0)
{
	try
	{
		document.addEventListener("scroll", szhandler, true);
		sch = 1;
	}
	catch(e) {}
}

if (sch == 0)
{
	try
	{
		window.attachEvent ("onscroll", szhandler);
		sch = 1;
	}
	catch(e) {}
}

this.StdImageHandler = function(){	

	imgs = [];

	$(".stdimage").ready(function() {

		$(".stdimage").each(function(index) {

			var imageinfo = getSuffixFileZoom(this);			
			$(this).attr("src", imageinfo.src);
		});
			
		$(".stdimage").each(function(index) {

			cnt = $(this).attr('cnt')
	
			if (cnt < 2)
			{
				return;
			}
	
			// Test for touch device support.
	
			var is_touch_device = function() {
			  var prefixes = ' -webkit- -moz- -o- -ms- '.split(' ');
			  var mq = function(query) {
			    return window.matchMedia(query).matches;
			  }
			
			  if (('ontouchstart' in window) || window.DocumentTouch && document instanceof DocumentTouch) {
			    return true;
			  }
			
			  // include the 'heartz' as a way to have a non matching MQ to help terminate the join
			  // https://git.io/vznFH
			  var query = ['(', prefixes.join('touch-enabled),('), 'heartz', ')'].join('');
			  return mq(query);
			}
			
			if (is_touch_device())
			{
				return;
			}
			
			
			var imageinfo = getSuffixFileZoom(this);
			var suffix = imageinfo.suffix;
						
			for(c=0; c < cnt; c++)
			{
				if ( $(this).attr('src' + c + suffix) != undefined )
				{
					itr = imgs.length;
					imgs[itr] = new Image;				
					imgs[itr].src = $(this).attr('src' + c + suffix)					
				}

				if ( $(this).attr('src' + c) != undefined )
				{
					itr = imgs.length;
					imgs[itr] = new Image;				
					imgs[itr].src = $(this).attr('src' + c)					
				}
			}
		});
	});	
	

	$(".stdimage").hover(function(e){
		cnt = $(this).attr('cnt')
		idx = $(this);

		if (cnt < 2)
		{
			return;
		}
		
		var imageinfo = getSuffixFileZoom(this);
		var suffix = imageinfo.suffix;		

		v = $(this).attr('v')
		v = parseInt(v);
		v = (v + 1) % cnt;

		ax = []
		for(c=0; c < cnt; c++)
		{						
			if ( $(this).attr('src' + c + suffix) != undefined )
			{
				ax[c] = $(this).attr('src' + c + suffix)			
			}
			else
			{
				ax[c] = $(this).attr('src' + c)	
			}
		}
	
		$(this).attr('v', v);
		$(this).attr('src', ax[v])		

		interv = setInterval("this.stdthis()", 800);
	},
	function(e){
		cnt = $(this).attr('cnt')
		
		if (cnt < 2)
		{
			return;
		}
		
		var imageinfo = getSuffixFileZoom(this);
		var suffix = imageinfo.suffix;

		$(this).attr('v' ,0);
		
		if ( $(this).attr('src0' + suffix) != undefined )
		{
			$(this).attr('src', $(this).attr('src0' + suffix))
		}
		else
		{
			$(this).attr('src', $(this).attr('src0'))			
		}

		clearInterval(interv)
		interv = 0;
		idx = null;
    });
}



$(document).ready(function(){
	if (typeof StdImageHandler === 'function') { StdImageHandler(); }

	var headerHeight = $('header.main-header').height();

	// Scroll to top
	scrollTopPage();

	function scrollTopPage() {
		$(window).on('scroll', function () {
			if ($(this).scrollTop() >= 500) {
				$('.scroll_up').addClass('show');
			} else {
				$('.scroll_up').removeClass('show');
			}
		});

		//scrollUp animate
		$(".scroll_up").on('click', function () {
			$('html, body').animate({
				scrollTop: 0
			}, 1000);
		});
	}
	
});



	</script> 

<!--[if lt IE 9]><script src="custom_assets/js/respond.min.js"></script><![endif]--><!--//IE responsive web design-->	

<!--Favicons -->
<link href="custom_assets/images/favicon.ico" rel="shortcut icon" />
<link href="custom_assets/images/favicon.ico" rel="apple-touch-icon" />
<link href="custom_assets/images/favicon.ico" rel="apple-touch-icon" sizes="152x152" />
<link href="custom_assets/images/favicon.ico" rel="apple-touch-icon" sizes="167x167" />
<link href="custom_assets/images/favicon.ico" rel="apple-touch-icon" sizes="180x180" />
<link href="custom_assets/images/favicon.ico" rel="icon" sizes="192x192" />
<link href="custom_assets/images/favicon.ico" rel="icon" sizes="128x128" />

</head>
<body>
<div id="tour" class="tour body-div">
<header class="nav-header">
	<nav class="navbar navbar-expand-lg navbar-dark bg-dark fixed-top" role="navigation">
		<! Toggle -->
		<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarMenu" aria-controls="navbarMenu" aria-expanded="false" aria-label="Toggle navigation">
		<span class="navbar-toggler-icon"></span>
		</button>
		<!-- Logo -->
		<a class="navbar-brand mx-auto" href="https://www.backroomcastingcouch.com/" title="OFFICIAL Backroom Casting Couch">
		<img src="/assets/logo/light/[email protected]" class="img-fluid d-none d-lg-inline-block" alt="OFFICIAL Backroom Casting Couch" >
		<img src="/assets/logo/light/brcc-logo-light.png" class="img-fluid d-inline-block d-lg-none" alt="OFFICIAL Backroom Casting Couch">
			<span>OFFICIAL Backroom Casting Couch</span>
		</a>
		<a class="btn btn-primary d-lg-none" href="https://join.backroomcastingcouch.com/signup/signup.php?nats=MC4wLjEuMS4wLjAuMC4wLjA&amp;step=2"> Join Now!</a>
		<!-- Collapse -->	
		<div class="collapse navbar-collapse" id="navbarMenu">
		<ul class="nav navbar-nav align-items-center ml-auto">
			<li class="nav-item ">
				<a href="https://www.backroomcastingcouch.com/categories/movies_1_d.html">New Videos</a>
			</li>
			<li class="nav-item ">
				<a href="https://www.backroomcastingcouch.com/models/models_d.html">Girls</a>
			</li>
			<li class="nav-item">
				<a href="/members/">Members</a>
			</li>			 
		</ul>
		<a class="btn btn-primary d-none d-lg-inline-block" href="https://join.backroomcastingcouch.com/signup/signup.php?nats=MC4wLjEuMS4wLjAuMC4wLjA&amp;step=2">Join Now!<a>	
		</div>
	</nav>
</header>
<!--  Top Video -->

<section style="margin-bottom: -6px;">
<a href="https://join.backroomcastingcouch.com/signup/signup.php?nats=MC4wLjEuMS4wLjAuMC4wLjA&amp;step=2">
<div class="container-fluid p-0 video-container mb-1 w-100">
    <div class=" HeaderVideoDiv">
        <video id="bannervid" class="HeaderVideo" style="object-fit: fill; height:auto; min-width:100%; min-height:100%" loop muted playsinline autoplay width="640px">
        </video>
    </div>
 </div>
</a>
</section>
 <style>
    .HeaderVideo {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    height: auto;
    padding:0;
    margin-top:0px;
    }

 .HeaderVideoDiv {
    width: 100vw;
    max-width: 100vw;
    height: calc(113.125vw - 15px);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    overflow:hidden;
    background-image: url('');
    }

@media (min-width: 576px) {
    .HeaderVideo {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    height: 36.45833vw;
    padding:0;
    margin-top:-5px;
    }
    
    .HeaderVideoDiv {
    width: 100vw;
    max-width: 100vw;
    height:calc(36.45833vw - 8px);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    overflow:hidden;
    background-image: url('');
    }

</style>
<script defer  type="text/javascript">
    let smVidsrc = "https://www.backroomcastingcouch.com/site/video-headers/shoshanna-mobile-640x724.mp4";
    let lgVidsrc = "https://www.backroomcastingcouch.com/site/video-headers/shoshanna-full.mp4";
    let doit;
    let bigorsmall = 0 // 0 = small 1 = big
    let vid = document.getElementById("bannervid");
    var w = window.innerWidth;
 if (w >= 576) {
            bigorsmall = 1;
            vid.pause();
            vid.setAttribute("width", w);
            vid.setAttribute("src", lgVidsrc);
           doit = setTimeout(resizedw, 100)
            }
        else {vid.setAttribute("width", w);  vid.setAttribute("src", smVidsrc); doit = setTimeout(resizedw, 100)}
        window.onresize = function () {
            var vid = document.getElementById("bannervid");
            var w2 = window.innerWidth;
                if (bigorsmall == 1 && w2 < 576  )
                    {vid.pause(); 
                    vid.setAttribute("src", smVidsrc);  
                    clearTimeout(doit); 
                    bigorsmall = 0;  
                    doit = setTimeout(resizedw, 100)} 
               else if (bigorsmall == 0 && w2 >= 576)
                    {vid.pause(); 
                    vid.setAttribute("src", lgVidsrc);  
                    clearTimeout(doit);  
                    bigorsmall = 1;  
                    doit = setTimeout(resizedw, 100);};
          }
        function resizedw(){
        vid.load();
        vid.play()
        }    
</script>
<!--  First Section! -->
<section class="my-3" id="first-section">
  <div class="container">
    <div class="text-center">
      <h2 class="site-identity-subhead">4k Casting Videos</h2>
      <h1 class="site-identity-head special-font mb-2">Real Amateur Casting</h1>
      <h2 class="intro">Backroom Casting Couch is a website about the real life interactions that occur during adult modeling interviews. We film girls sucking, fucking, swallowing, and taking it in the ass just to land a job.<br/>I would hire them all, however I'm not a talent agent... and there is no modeling job.
      </h2>
    </div>
  </div>
  <div class="container">
      <div class="container text-center my-3">
      <h2 class="site-identity-subhead mb-2">4k Videos | Weekly Updates | Bonus Sites</h2>
      <a href="https://join.backroomcastingcouch.com/signup/signup.php?nats=MC4wLjEuMS4wLjAuMC4wLjA&amp;step=2" class="btn btn-special btn-lg active" role="button" aria-pressed="true">JOIN NOW <br class="d-block d-sm-none">FOR FULL ACCESS</a>
      </div>
  </div>
</section> 
<div class="container-fluid mt-3">

	<div class="row">
		<div class="col sectionsplitout">
			<div class="sectionsplitthing"> </div>
			<h4 class="sectionsplit text-center">Popular Videos</h4>
		</div>
	</div>

	<div class="row">
					
								
<div class="col-md-4 col-sm-6 col-12">
	<div class="item item-update item-video">
		<div class="img-div">
							<style>
.b644_videothumb_1613123862100 { display:block; width:100%; /*height:100%;*/ background:#FFF; position:relative; /*position:absolute; top:0; left:0;*/ z-index:10; overflow:hidden; }
.b644_videothumb_1613123862100 a { position:absolute !important; top:0; left:0; display:block !important; width:100%; height:100%; z-index:20; }
.b644_videothumb_1613123862100 img.video_placeholder { position:relative; top:0; left:0; display:inline-block; max-width:100%; vertical-align:top; z-index:15; }
.b644_videothumb_1613123862100 video { position:absolute; width:100%; height:100%; z-index:10; top:0; left:0; object-fit:fill; background:#FFF; }
</style>
<!--[if IE]><style>.b644_videothumb_1613123862100 video { width:auto !important; height:100%; }</style><![endif]-->

<script>
jQuery(function($) {
	var figure = $(".b644_videothumb_1613123862100").hover(
		function(){ $('video', this).get(0).play(); $('img.video_placeholder', this).css("opacity", 0); },
		function(){
			$('img.video_placeholder', this).css("opacity", 1);
			$('video', this).get(0).currentTime=0;
			$('video', this).get(0).pause();
			//$('video', this).get(0).src="";
			$('video', this).get(0).load();
			$('video', this).get(0).src="/videothumbs/brcc_shoshanna_1625_1080-hd.mp4";
		}
	);

	$(".b644_videothumb_1613123862100").on("touchstart", function (e) {
		$('video', this).get(0).play();
	});

	$(".b644_videothumb_1613123862100").on("touchend", function (e) {
		$('video', this).get(0).currentTime=0;
		$('video', this).get(0).pause();
		//$('video', this).get(0).src="";
		$('video', this).get(0).load();
		$('video', this).get(0).src="/videothumbs/brcc_shoshanna_1625_1080-hd.mp4";
	});
});
</script>

<div class="b644_videothumb_1613123862100">
	<a href="https://www.backroomcastingcouch.com/trailers/Shoshanna-video.html"><span class="item-icon"><i class="fa fa-play-circle"></i></span></a>
	<img src="/site/content//contentthumbs/01/48/148-1x.jpg" alt="" class="video_placeholder" />
	<video width="100%" height="100%" loop muted poster="/site/content//contentthumbs/01/48/148-1x.jpg">
		<source src='/videothumbs/brcc_shoshanna_1625_1080-hd.mp4' type="video/mp4" />
	</video>
</div>
				
					</div>
		<div class="content-div">
			<h4>
				<a href="https://www.backroomcastingcouch.com/trailers/Shoshanna-video.html" title="Shoshanna">
					Shoshanna				</a>
			</h4>
			<div class="row">
				<div class="col-12">
					<div class="more-info-div">
						01:06:08 | <i class="fa fa-calendar"></i> Jun 29, 2020					</div>
				</div>
				<div class="col-12 text-right">
				</div>
			</div>
		</div>
	</div>
</div>									
								
<div class="col-md-4 col-sm-6 col-12">
	<div class="item item-update item-video">
		<div class="img-div">
							<style>
.b781_videothumb_1242448591660 { display:block; width:100%; /*height:100%;*/ background:#FFF; position:relative; /*position:absolute; top:0; left:0;*/ z-index:10; overflow:hidden; }
.b781_videothumb_1242448591660 a { position:absolute !important; top:0; left:0; display:block !important; width:100%; height:100%; z-index:20; }
.b781_videothumb_1242448591660 img.video_placeholder { position:relative; top:0; left:0; display:inline-block; max-width:100%; vertical-align:top; z-index:15; }
.b781_videothumb_1242448591660 video { position:absolute; width:100%; height:100%; z-index:10; top:0; left:0; object-fit:fill; background:#FFF; }
</style>
<!--[if IE]><style>.b781_videothumb_1242448591660 video { width:auto !important; height:100%; }</style><![endif]-->

<script>
jQuery(function($) {
	var figure = $(".b781_videothumb_1242448591660").hover(
		function(){ $('video', this).get(0).play(); $('img.video_placeholder', this).css("opacity", 0); },
		function(){
			$('img.video_placeholder', this).css("opacity", 1);
			$('video', this).get(0).currentTime=0;
			$('video', this).get(0).pause();
			//$('video', this).get(0).src="";
			$('video', this).get(0).load();
			$('video', this).get(0).src="/videothumbs/brcc1776-4k.mp4";
		}
	);

	$(".b781_videothumb_1242448591660").on("touchstart", function (e) {
		$('video', this).get(0).play();
	});

	$(".b781_videothumb_1242448591660").on("touchend", function (e) {
		$('video', this).get(0).currentTime=0;
		$('video', this).get(0).pause();
		//$('video', this).get(0).src="";
		$('video', this).get(0).load();
		$('video', this).get(0).src="/videothumbs/brcc1776-4k.mp4";
	});
});
</script>

<div class="b781_videothumb_1242448591660">
	<a href="https://www.backroomcastingcouch.com/trailers/Dickmatized.html"><span class="item-icon"><i class="fa fa-play-circle"></i></span></a>
	<img src="/site/content//contentthumbs/17/86/1786-1x.jpg" alt="" class="video_placeholder" />
	<video width="100%" height="100%" loop muted poster="/site/content//contentthumbs/17/86/1786-1x.jpg">
		<source src='/videothumbs/brcc1776-4k.mp4' type="video/mp4" />
	</video>
</div>
								
					<img class="fourk-badge" width="50" height="32" src="https://exploitedx.com/images/fourk-badge.webp" alt="4k Definition Video" title="4k Definition Video" style="position: absolute; left: 10px; bottom: 15px; z-index: 15; width: unset; ">
				
					</div>
		<div class="content-div">
			<h4>
				<a href="https://www.backroomcastingcouch.com/trailers/Dickmatized.html" title="Dickmatized">
					Dickmatized				</a>
			</h4>
			<div class="row">
				<div class="col-12">
					<div class="more-info-div">
						01:08:00 | <i class="fa fa-calendar"></i> May 15, 2023					</div>
				</div>
				<div class="col-12 text-right">
				</div>
			</div>
		</div>
	</div>
</div>									
								
<div class="col-md-4 col-sm-6 col-12">
	<div class="item item-update item-video">
		<div class="img-div">
							<style>
.b778_videothumb_683003507570 { display:block; width:100%; /*height:100%;*/ background:#FFF; position:relative; /*position:absolute; top:0; left:0;*/ z-index:10; overflow:hidden; }
.b778_videothumb_683003507570 a { position:absolute !important; top:0; left:0; display:block !important; width:100%; height:100%; z-index:20; }
.b778_videothumb_683003507570 img.video_placeholder { position:relative; top:0; left:0; display:inline-block; max-width:100%; vertical-align:top; z-index:15; }
.b778_videothumb_683003507570 video { position:absolute; width:100%; height:100%; z-index:10; top:0; left:0; object-fit:fill; background:#FFF; }
</style>
<!--[if IE]><style>.b778_videothumb_683003507570 video { width:auto !important; height:100%; }</style><![endif]-->

<script>
jQuery(function($) {
	var figure = $(".b778_videothumb_683003507570").hover(
		function(){ $('video', this).get(0).play(); $('img.video_placeholder', this).css("opacity", 0); },
		function(){
			$('img.video_placeholder', this).css("opacity", 1);
			$('video', this).get(0).currentTime=0;
			$('video', this).get(0).pause();
			//$('video', this).get(0).src="";
			$('video', this).get(0).load();
			$('video', this).get(0).src="/videothumbs/brcc1774-4k.mp4";
		}
	);

	$(".b778_videothumb_683003507570").on("touchstart", function (e) {
		$('video', this).get(0).play();
	});

	$(".b778_videothumb_683003507570").on("touchend", function (e) {
		$('video', this).get(0).currentTime=0;
		$('video', this).get(0).pause();
		//$('video', this).get(0).src="";
		$('video', this).get(0).load();
		$('video', this).get(0).src="/videothumbs/brcc1774-4k.mp4";
	});
});
</script>

<div class="b778_videothumb_683003507570">
	<a href="https://www.backroomcastingcouch.com/trailers/Pinky-Swear-Anal-Promises.html"><span class="item-icon"><i class="fa fa-play-circle"></i></span></a>
	<img src="/site/content//contentthumbs/17/80/1780-1x.jpg" alt="" class="video_placeholder" />
	<video width="100%" height="100%" loop muted poster="/site/content//contentthumbs/17/80/1780-1x.jpg">
		<source src='/videothumbs/brcc1774-4k.mp4' type="video/mp4" />
	</video>
</div>
								
					<img class="fourk-badge" width="50" height="32" src="https://exploitedx.com/images/fourk-badge.webp" alt="4k Definition Video" title="4k Definition Video" style="position: absolute; left: 10px; bottom: 15px; z-index: 15; width: unset; ">
				
					</div>
		<div class="content-div">
			<h4>
				<a href="https://www.backroomcastingcouch.com/trailers/Pinky-Swear-Anal-Promises.html" title="Pinky Swear, Anal Promises">
					Pinky Swear, Anal Promises				</a>
			</h4>
			<div class="row">
				<div class="col-12">
					<div class="more-info-div">
						01:04:40 | <i class="fa fa-calendar"></i> May 1, 2023					</div>
				</div>
				<div class="col-12 text-right">
				</div>
			</div>
		</div>
	</div>
</div>									
								
<div class="col-md-4 col-sm-6 col-12">
	<div class="item item-update item-video">
		<div class="img-div">
							<style>
.b739_videothumb_921539908455 { display:block; width:100%; /*height:100%;*/ background:#FFF; position:relative; /*position:absolute; top:0; left:0;*/ z-index:10; overflow:hidden; }
.b739_videothumb_921539908455 a { position:absolute !important; top:0; left:0; display:block !important; width:100%; height:100%; z-index:20; }
.b739_videothumb_921539908455 img.video_placeholder { position:relative; top:0; left:0; display:inline-block; max-width:100%; vertical-align:top; z-index:15; }
.b739_videothumb_921539908455 video { position:absolute; width:100%; height:100%; z-index:10; top:0; left:0; object-fit:fill; background:#FFF; }
</style>
<!--[if IE]><style>.b739_videothumb_921539908455 video { width:auto !important; height:100%; }</style><![endif]-->

<script>
jQuery(function($) {
	var figure = $(".b739_videothumb_921539908455").hover(
		function(){ $('video', this).get(0).play(); $('img.video_placeholder', this).css("opacity", 0); },
		function(){
			$('img.video_placeholder', this).css("opacity", 1);
			$('video', this).get(0).currentTime=0;
			$('video', this).get(0).pause();
			//$('video', this).get(0).src="";
			$('video', this).get(0).load();
			$('video', this).get(0).src="/videothumbs/brcc1737-4k.mp4";
		}
	);

	$(".b739_videothumb_921539908455").on("touchstart", function (e) {
		$('video', this).get(0).play();
	});

	$(".b739_videothumb_921539908455").on("touchend", function (e) {
		$('video', this).get(0).currentTime=0;
		$('video', this).get(0).pause();
		//$('video', this).get(0).src="";
		$('video', this).get(0).load();
		$('video', this).get(0).src="/videothumbs/brcc1737-4k.mp4";
	});
});
</script>

<div class="b739_videothumb_921539908455">
	<a href="https://www.backroomcastingcouch.com/trailers/Looks-And-Feels-Like-A-Dime-Piece.html"><span class="item-icon"><i class="fa fa-play-circle"></i></span></a>
	<img src="/site/content//contentthumbs/16/97/1697-1x.jpg" alt="" class="video_placeholder" />
	<video width="100%" height="100%" loop muted poster="/site/content//contentthumbs/16/97/1697-1x.jpg">
		<source src='/videothumbs/brcc1737-4k.mp4' type="video/mp4" />
	</video>
</div>
								
					<img class="fourk-badge" width="50" height="32" src="https://exploitedx.com/images/fourk-badge.webp" alt="4k Definition Video" title="4k Definition Video" style="position: absolute; left: 10px; bottom: 15px; z-index: 15; width: unset; ">
				
					</div>
		<div class="content-div">
			<h4>
				<a href="https://www.backroomcastingcouch.com/trailers/Looks-And-Feels-Like-A-Dime-Piece.html" title="Looks And Feels Like A Dime Piece">
					Looks And Feels Like A Dime Piece				</a>
			</h4>
			<div class="row">
				<div class="col-12">
					<div class="more-info-div">
						01:02:09 | <i class="fa fa-calendar"></i> Aug 15, 2022					</div>
				</div>
				<div class="col-12 text-right">
				</div>
			</div>
		</div>
	</div>
</div>									
								
<div class="col-md-4 col-sm-6 col-12">
	<div class="item item-update item-video">
		<div class="img-div">
							<style>
.b103_videothumb_1680051341485 { display:block; width:100%; /*height:100%;*/ background:#FFF; position:relative; /*position:absolute; top:0; left:0;*/ z-index:10; overflow:hidden; }
.b103_videothumb_1680051341485 a { position:absolute !important; top:0; left:0; display:block !important; width:100%; height:100%; z-index:20; }
.b103_videothumb_1680051341485 img.video_placeholder { position:relative; top:0; left:0; display:inline-block; max-width:100%; vertical-align:top; z-index:15; }
.b103_videothumb_1680051341485 video { position:absolute; width:100%; height:100%; z-index:10; top:0; left:0; object-fit:fill; background:#FFF; }
</style>
<!--[if IE]><style>.b103_videothumb_1680051341485 video { width:auto !important; height:100%; }</style><![endif]-->

<script>
jQuery(function($) {
	var figure = $(".b103_videothumb_1680051341485").hover(
		function(){ $('video', this).get(0).play(); $('img.video_placeholder', this).css("opacity", 0); },
		function(){
			$('img.video_placeholder', this).css("opacity", 1);
			$('video', this).get(0).currentTime=0;
			$('video', this).get(0).pause();
			//$('video', this).get(0).src="";
			$('video', this).get(0).load();
			$('video', this).get(0).src="/videothumbs/brcc_megan_1505-hd1080.mp4";
		}
	);

	$(".b103_videothumb_1680051341485").on("touchstart", function (e) {
		$('video', this).get(0).play();
	});

	$(".b103_videothumb_1680051341485").on("touchend", function (e) {
		$('video', this).get(0).currentTime=0;
		$('video', this).get(0).pause();
		//$('video', this).get(0).src="";
		$('video', this).get(0).load();
		$('video', this).get(0).src="/videothumbs/brcc_megan_1505-hd1080.mp4";
	});
});
</script>

<div class="b103_videothumb_1680051341485">
	<a href="https://www.backroomcastingcouch.com/trailers/megan-2.html"><span class="item-icon"><i class="fa fa-play-circle"></i></span></a>
	<img src="/site/content//contentthumbs/16/51/1651-1x.jpg" alt="" class="video_placeholder" />
	<video width="100%" height="100%" loop muted poster="/site/content//contentthumbs/16/51/1651-1x.jpg">
		<source src='/videothumbs/brcc_megan_1505-hd1080.mp4' type="video/mp4" />
	</video>
</div>
				
					</div>
		<div class="content-div">
			<h4>
				<a href="https://www.backroomcastingcouch.com/trailers/megan-2.html" title="Megan">
					Megan				</a>
			</h4>
			<div class="row">
				<div class="col-12">
					<div class="more-info-div">
						01:03:37 | <i class="fa fa-calendar"></i> Mar 26, 2018					</div>
				</div>
				<div class="col-12 text-right">
				</div>
			</div>
		</div>
	</div>
</div>									
								
<div class="col-md-4 col-sm-6 col-12">
	<div class="item item-update item-video">
		<div class="img-div">
							<style>
.b76_videothumb_801413663405 { display:block; width:100%; /*height:100%;*/ background:#FFF; position:relative; /*position:absolute; top:0; left:0;*/ z-index:10; overflow:hidden; }
.b76_videothumb_801413663405 a { position:absolute !important; top:0; left:0; display:block !important; width:100%; height:100%; z-index:20; }
.b76_videothumb_801413663405 img.video_placeholder { position:relative; top:0; left:0; display:inline-block; max-width:100%; vertical-align:top; z-index:15; }
.b76_videothumb_801413663405 video { position:absolute; width:100%; height:100%; z-index:10; top:0; left:0; object-fit:fill; background:#FFF; }
</style>
<!--[if IE]><style>.b76_videothumb_801413663405 video { width:auto !important; height:100%; }</style><![endif]-->

<script>
jQuery(function($) {
	var figure = $(".b76_videothumb_801413663405").hover(
		function(){ $('video', this).get(0).play(); $('img.video_placeholder', this).css("opacity", 0); },
		function(){
			$('img.video_placeholder', this).css("opacity", 1);
			$('video', this).get(0).currentTime=0;
			$('video', this).get(0).pause();
			//$('video', this).get(0).src="";
			$('video', this).get(0).load();
			$('video', this).get(0).src="/videothumbs/brcc_jessi_1475-hd1080.mp4";
		}
	);

	$(".b76_videothumb_801413663405").on("touchstart", function (e) {
		$('video', this).get(0).play();
	});

	$(".b76_videothumb_801413663405").on("touchend", function (e) {
		$('video', this).get(0).currentTime=0;
		$('video', this).get(0).pause();
		//$('video', this).get(0).src="";
		$('video', this).get(0).load();
		$('video', this).get(0).src="/videothumbs/brcc_jessi_1475-hd1080.mp4";
	});
});
</script>

<div class="b76_videothumb_801413663405">
	<a href="https://www.backroomcastingcouch.com/trailers/jessi.html"><span class="item-icon"><i class="fa fa-play-circle"></i></span></a>
	<img src="/site/content//contentthumbs/06/26/626-1x.jpg" alt="" class="video_placeholder" />
	<video width="100%" height="100%" loop muted poster="/site/content//contentthumbs/06/26/626-1x.jpg">
		<source src='/videothumbs/brcc_jessi_1475-hd1080.mp4' type="video/mp4" />
	</video>
</div>
				
					</div>
		<div class="content-div">
			<h4>
				<a href="https://www.backroomcastingcouch.com/trailers/jessi.html" title="Jessi">
					Jessi				</a>
			</h4>
			<div class="row">
				<div class="col-12">
					<div class="more-info-div">
						42:11 | <i class="fa fa-calendar"></i> Sep 4, 2017					</div>
				</div>
				<div class="col-12 text-right">
				</div>
			</div>
		</div>
	</div>
</div>									
									
									
									
									
									
									
									
									
								</div>

	<div class="row">
		<div class="col-12 text-center">
			<div class="sorting-options">
				<a href="https://www.backroomcastingcouch.com/categories/movies_1_p.html" class="btn btn-primary">See More Popular Videos</a>
			</div>
		</div>
	</div>

</div>

<!--  Second Section -->
<section id="second-section" class="my-3">
 <div class="container-fluid couchbanner">
	<div class="section-two text-center "> 
		<h2 class="site-identity-head special-font">100s of First Time<br/>Porn Star Interviews</h2>
		<h2 class="site-identity-subhead mb-2">4k Videos | Weekly Updates | Bonus Sites</h2>		 
	</div>
	<div class="container">
		<div class="text-center">
		<a href="https://join.backroomcastingcouch.com/signup/signup.php?nats=MC4wLjEuMS4wLjAuMC4wLjA&amp;step=2" class="btn btn-special btn-lg">Join Now!</a>
		</div>	
	</div>		
</div>
</section>
<!-- Latest Updates -->

<div class="container-fluid mt-5">
	<div class="row">
		<div class="col sectionsplitout">
			<div class="sectionsplitthing"> </div>
			<h4 class="sectionsplit text-center">New Videos</h4>
		</div>
	</div>

	<div class="row">
				 							
<div class="col-md-4 col-sm-6 col-12">
	<div class="item item-update item-video">
		<div class="img-div">
						<style>
.b838_videothumb_1012492636850 { display:block; width:100%; /*height:100%;*/ background:#FFF; position:relative; /*position:absolute; top:0; left:0;*/ z-index:10; overflow:hidden; }
.b838_videothumb_1012492636850 a { position:absolute !important; top:0; left:0; display:block !important; width:100%; height:100%; z-index:20; }
.b838_videothumb_1012492636850 img.video_placeholder { position:relative; top:0; left:0; display:inline-block; max-width:100%; vertical-align:top; z-index:15; }
.b838_videothumb_1012492636850 video { position:absolute; width:100%; height:100%; z-index:10; top:0; left:0; object-fit:fill; background:#FFF; }
</style>
<!--[if IE]><style>.b838_videothumb_1012492636850 video { width:auto !important; height:100%; }</style><![endif]-->

<script>
jQuery(function($) {
	var figure = $(".b838_videothumb_1012492636850").hover(
		function(){ $('video', this).get(0).play(); $('img.video_placeholder', this).css("opacity", 0); },
		function(){
			$('img.video_placeholder', this).css("opacity", 1);
			$('video', this).get(0).currentTime=0;
			$('video', this).get(0).pause();
			//$('video', this).get(0).src="";
			$('video', this).get(0).load();
			$('video', this).get(0).src="/videothumbs/brcc1833-4k.mp4";
		}
	);

	$(".b838_videothumb_1012492636850").on("touchstart", function (e) {
		$('video', this).get(0).play();
	});

	$(".b838_videothumb_1012492636850").on("touchend", function (e) {
		$('video', this).get(0).currentTime=0;
		$('video', this).get(0).pause();
		//$('video', this).get(0).src="";
		$('video', this).get(0).load();
		$('video', this).get(0).src="/videothumbs/brcc1833-4k.mp4";
	});
});
</script>

<div class="b838_videothumb_1012492636850">
	<a href="https://www.backroomcastingcouch.com/trailers/Roughed-Up.html"><span class="item-icon"><i class="fa fa-play-circle"></i></span></a>
	<img src="/site/content//contentthumbs/19/07/1907-1x.jpg" alt="" class="video_placeholder" />
	<video width="100%" height="100%" loop muted poster="/site/content//contentthumbs/19/07/1907-1x.jpg">
		<source src='/videothumbs/brcc1833-4k.mp4' type="video/mp4" />
	</video>
</div>
							
					<img class="fourk-badge" width="50" height="32" src="https://exploitedx.com/images/fourk-badge.webp" alt="4k Definition Video" title="4k Definition Video" style="position: absolute; left: 10px; bottom: 15px; z-index: 15; width: unset; ">
				
					</div>
		<div class="content-div">
			<h4>
				<a href="https://www.backroomcastingcouch.com/trailers/Roughed-Up.html" title="Roughed Up">
					Roughed Up				</a>
			</h4>
			<div class="row">
				<div class="col-md-6 col-12">
					<div class="more-info-div">
						67&nbsp;Photos, 01:00:57 | <i class="fa fa-calendar"></i> May 13, 2024					</div>
				</div>
				<div class="col-md-6 col-12 text-right">
				</div>
			</div>
		</div>
	</div>
</div>			
				 							
<div class="col-md-4 col-sm-6 col-12">
	<div class="item item-update item-video">
		<div class="img-div">
						<style>
.b837_videothumb_643533455625 { display:block; width:100%; /*height:100%;*/ background:#FFF; position:relative; /*position:absolute; top:0; left:0;*/ z-index:10; overflow:hidden; }
.b837_videothumb_643533455625 a { position:absolute !important; top:0; left:0; display:block !important; width:100%; height:100%; z-index:20; }
.b837_videothumb_643533455625 img.video_placeholder { position:relative; top:0; left:0; display:inline-block; max-width:100%; vertical-align:top; z-index:15; }
.b837_videothumb_643533455625 video { position:absolute; width:100%; height:100%; z-index:10; top:0; left:0; object-fit:fill; background:#FFF; }
</style>
<!--[if IE]><style>.b837_videothumb_643533455625 video { width:auto !important; height:100%; }</style><![endif]-->

<script>
jQuery(function($) {
	var figure = $(".b837_videothumb_643533455625").hover(
		function(){ $('video', this).get(0).play(); $('img.video_placeholder', this).css("opacity", 0); },
		function(){
			$('img.video_placeholder', this).css("opacity", 1);
			$('video', this).get(0).currentTime=0;
			$('video', this).get(0).pause();
			//$('video', this).get(0).src="";
			$('video', this).get(0).load();
			$('video', this).get(0).src="/videothumbs/brcc1834-4k.mp4";
		}
	);

	$(".b837_videothumb_643533455625").on("touchstart", function (e) {
		$('video', this).get(0).play();
	});

	$(".b837_videothumb_643533455625").on("touchend", function (e) {
		$('video', this).get(0).currentTime=0;
		$('video', this).get(0).pause();
		//$('video', this).get(0).src="";
		$('video', this).get(0).load();
		$('video', this).get(0).src="/videothumbs/brcc1834-4k.mp4";
	});
});
</script>

<div class="b837_videothumb_643533455625">
	<a href="https://www.backroomcastingcouch.com/trailers/Thicc-Spaniards-First-Anal.html"><span class="item-icon"><i class="fa fa-play-circle"></i></span></a>
	<img src="/site/content//contentthumbs/19/05/1905-1x.jpg" alt="" class="video_placeholder" />
	<video width="100%" height="100%" loop muted poster="/site/content//contentthumbs/19/05/1905-1x.jpg">
		<source src='/videothumbs/brcc1834-4k.mp4' type="video/mp4" />
	</video>
</div>
							
					<img class="fourk-badge" width="50" height="32" src="https://exploitedx.com/images/fourk-badge.webp" alt="4k Definition Video" title="4k Definition Video" style="position: absolute; left: 10px; bottom: 15px; z-index: 15; width: unset; ">
				
					</div>
		<div class="content-div">
			<h4>
				<a href="https://www.backroomcastingcouch.com/trailers/Thicc-Spaniards-First-Anal.html" title="Thicc Spaniard&#039;s First Anal">
					Thicc Spaniard's First Anal				</a>
			</h4>
			<div class="row">
				<div class="col-md-6 col-12">
					<div class="more-info-div">
						62&nbsp;Photos, 01:04:40 | <i class="fa fa-calendar"></i> May 6, 2024					</div>
				</div>
				<div class="col-md-6 col-12 text-right">
				</div>
			</div>
		</div>
	</div>
</div>			
				 							
<div class="col-md-4 col-sm-6 col-12">
	<div class="item item-update item-video">
		<div class="img-div">
						<style>
.b836_videothumb_897514659445 { display:block; width:100%; /*height:100%;*/ background:#FFF; position:relative; /*position:absolute; top:0; left:0;*/ z-index:10; overflow:hidden; }
.b836_videothumb_897514659445 a { position:absolute !important; top:0; left:0; display:block !important; width:100%; height:100%; z-index:20; }
.b836_videothumb_897514659445 img.video_placeholder { position:relative; top:0; left:0; display:inline-block; max-width:100%; vertical-align:top; z-index:15; }
.b836_videothumb_897514659445 video { position:absolute; width:100%; height:100%; z-index:10; top:0; left:0; object-fit:fill; background:#FFF; }
</style>
<!--[if IE]><style>.b836_videothumb_897514659445 video { width:auto !important; height:100%; }</style><![endif]-->

<script>
jQuery(function($) {
	var figure = $(".b836_videothumb_897514659445").hover(
		function(){ $('video', this).get(0).play(); $('img.video_placeholder', this).css("opacity", 0); },
		function(){
			$('img.video_placeholder', this).css("opacity", 1);
			$('video', this).get(0).currentTime=0;
			$('video', this).get(0).pause();
			//$('video', this).get(0).src="";
			$('video', this).get(0).load();
			$('video', this).get(0).src="/videothumbs/brcc1832-4k.mp4";
		}
	);

	$(".b836_videothumb_897514659445").on("touchstart", function (e) {
		$('video', this).get(0).play();
	});

	$(".b836_videothumb_897514659445").on("touchend", function (e) {
		$('video', this).get(0).currentTime=0;
		$('video', this).get(0).pause();
		//$('video', this).get(0).src="";
		$('video', this).get(0).load();
		$('video', this).get(0).src="/videothumbs/brcc1832-4k.mp4";
	});
});
</script>

<div class="b836_videothumb_897514659445">
	<a href="https://www.backroomcastingcouch.com/trailers/Eves-All-for-Anal.html"><span class="item-icon"><i class="fa fa-play-circle"></i></span></a>
	<img src="/site/content//contentthumbs/19/03/1903-1x.jpg" alt="" class="video_placeholder" />
	<video width="100%" height="100%" loop muted poster="/site/content//contentthumbs/19/03/1903-1x.jpg">
		<source src='/videothumbs/brcc1832-4k.mp4' type="video/mp4" />
	</video>
</div>
							
					<img class="fourk-badge" width="50" height="32" src="https://exploitedx.com/images/fourk-badge.webp" alt="4k Definition Video" title="4k Definition Video" style="position: absolute; left: 10px; bottom: 15px; z-index: 15; width: unset; ">
				
					</div>
		<div class="content-div">
			<h4>
				<a href="https://www.backroomcastingcouch.com/trailers/Eves-All-for-Anal.html" title="Eve&#039;s All for Anal">
					Eve's All for Anal				</a>
			</h4>
			<div class="row">
				<div class="col-md-6 col-12">
					<div class="more-info-div">
						44&nbsp;Photos, 51:33 | <i class="fa fa-calendar"></i> Apr 29, 2024					</div>
				</div>
				<div class="col-md-6 col-12 text-right">
				</div>
			</div>
		</div>
	</div>
</div>			
				 							
<div class="col-md-4 col-sm-6 col-12">
	<div class="item item-update item-video">
		<div class="img-div">
						<style>
.b835_videothumb_492517604705 { display:block; width:100%; /*height:100%;*/ background:#FFF; position:relative; /*position:absolute; top:0; left:0;*/ z-index:10; overflow:hidden; }
.b835_videothumb_492517604705 a { position:absolute !important; top:0; left:0; display:block !important; width:100%; height:100%; z-index:20; }
.b835_videothumb_492517604705 img.video_placeholder { position:relative; top:0; left:0; display:inline-block; max-width:100%; vertical-align:top; z-index:15; }
.b835_videothumb_492517604705 video { position:absolute; width:100%; height:100%; z-index:10; top:0; left:0; object-fit:fill; background:#FFF; }
</style>
<!--[if IE]><style>.b835_videothumb_492517604705 video { width:auto !important; height:100%; }</style><![endif]-->

<script>
jQuery(function($) {
	var figure = $(".b835_videothumb_492517604705").hover(
		function(){ $('video', this).get(0).play(); $('img.video_placeholder', this).css("opacity", 0); },
		function(){
			$('img.video_placeholder', this).css("opacity", 1);
			$('video', this).get(0).currentTime=0;
			$('video', this).get(0).pause();
			//$('video', this).get(0).src="";
			$('video', this).get(0).load();
			$('video', this).get(0).src="/videothumbs/brcc1191-libby_remaster-1080p.mp4";
		}
	);

	$(".b835_videothumb_492517604705").on("touchstart", function (e) {
		$('video', this).get(0).play();
	});

	$(".b835_videothumb_492517604705").on("touchend", function (e) {
		$('video', this).get(0).currentTime=0;
		$('video', this).get(0).pause();
		//$('video', this).get(0).src="";
		$('video', this).get(0).load();
		$('video', this).get(0).src="/videothumbs/brcc1191-libby_remaster-1080p.mp4";
	});
});
</script>

<div class="b835_videothumb_492517604705">
	<a href="https://www.backroomcastingcouch.com/trailers/Libby-Remastered.html"><span class="item-icon"><i class="fa fa-play-circle"></i></span></a>
	<img src="/site/content//contentthumbs/19/01/1901-1x.jpg" alt="" class="video_placeholder" />
	<video width="100%" height="100%" loop muted poster="/site/content//contentthumbs/19/01/1901-1x.jpg">
		<source src='/videothumbs/brcc1191-libby_remaster-1080p.mp4' type="video/mp4" />
	</video>
</div>
			
					</div>
		<div class="content-div">
			<h4>
				<a href="https://www.backroomcastingcouch.com/trailers/Libby-Remastered.html" title="Libby Remastered">
					Libby Remastered				</a>
			</h4>
			<div class="row">
				<div class="col-md-6 col-12">
					<div class="more-info-div">
						31:54 | <i class="fa fa-calendar"></i> Apr 24, 2024					</div>
				</div>
				<div class="col-md-6 col-12 text-right">
				</div>
			</div>
		</div>
	</div>
</div>			
				 							
<div class="col-md-4 col-sm-6 col-12">
	<div class="item item-update item-video">
		<div class="img-div">
						<style>
.b834_videothumb_1669754806195 { display:block; width:100%; /*height:100%;*/ background:#FFF; position:relative; /*position:absolute; top:0; left:0;*/ z-index:10; overflow:hidden; }
.b834_videothumb_1669754806195 a { position:absolute !important; top:0; left:0; display:block !important; width:100%; height:100%; z-index:20; }
.b834_videothumb_1669754806195 img.video_placeholder { position:relative; top:0; left:0; display:inline-block; max-width:100%; vertical-align:top; z-index:15; }
.b834_videothumb_1669754806195 video { position:absolute; width:100%; height:100%; z-index:10; top:0; left:0; object-fit:fill; background:#FFF; }
</style>
<!--[if IE]><style>.b834_videothumb_1669754806195 video { width:auto !important; height:100%; }</style><![endif]-->

<script>
jQuery(function($) {
	var figure = $(".b834_videothumb_1669754806195").hover(
		function(){ $('video', this).get(0).play(); $('img.video_placeholder', this).css("opacity", 0); },
		function(){
			$('img.video_placeholder', this).css("opacity", 1);
			$('video', this).get(0).currentTime=0;
			$('video', this).get(0).pause();
			//$('video', this).get(0).src="";
			$('video', this).get(0).load();
			$('video', this).get(0).src="/videothumbs/brcc1831-4k.mp4";
		}
	);

	$(".b834_videothumb_1669754806195").on("touchstart", function (e) {
		$('video', this).get(0).play();
	});

	$(".b834_videothumb_1669754806195").on("touchend", function (e) {
		$('video', this).get(0).currentTime=0;
		$('video', this).get(0).pause();
		//$('video', this).get(0).src="";
		$('video', this).get(0).load();
		$('video', this).get(0).src="/videothumbs/brcc1831-4k.mp4";
	});
});
</script>

<div class="b834_videothumb_1669754806195">
	<a href="https://www.backroomcastingcouch.com/trailers/Red-Bottoms.html"><span class="item-icon"><i class="fa fa-play-circle"></i></span></a>
	<img src="/site/content//contentthumbs/18/98/1898-1x.jpg" alt="" class="video_placeholder" />
	<video width="100%" height="100%" loop muted poster="/site/content//contentthumbs/18/98/1898-1x.jpg">
		<source src='/videothumbs/brcc1831-4k.mp4' type="video/mp4" />
	</video>
</div>
							
					<img class="fourk-badge" width="50" height="32" src="https://exploitedx.com/images/fourk-badge.webp" alt="4k Definition Video" title="4k Definition Video" style="position: absolute; left: 10px; bottom: 15px; z-index: 15; width: unset; ">
				
					</div>
		<div class="content-div">
			<h4>
				<a href="https://www.backroomcastingcouch.com/trailers/Red-Bottoms.html" title="Red Bottoms">
					Red Bottoms				</a>
			</h4>
			<div class="row">
				<div class="col-md-6 col-12">
					<div class="more-info-div">
						61&nbsp;Photos, 01:06:00 | <i class="fa fa-calendar"></i> Apr 22, 2024					</div>
				</div>
				<div class="col-md-6 col-12 text-right">
				</div>
			</div>
		</div>
	</div>
</div>			
				 							
<div class="col-md-4 col-sm-6 col-12">
	<div class="item item-update item-video">
		<div class="img-div">
						<style>
.b833_videothumb_554296816445 { display:block; width:100%; /*height:100%;*/ background:#FFF; position:relative; /*position:absolute; top:0; left:0;*/ z-index:10; overflow:hidden; }
.b833_videothumb_554296816445 a { position:absolute !important; top:0; left:0; display:block !important; width:100%; height:100%; z-index:20; }
.b833_videothumb_554296816445 img.video_placeholder { position:relative; top:0; left:0; display:inline-block; max-width:100%; vertical-align:top; z-index:15; }
.b833_videothumb_554296816445 video { position:absolute; width:100%; height:100%; z-index:10; top:0; left:0; object-fit:fill; background:#FFF; }
</style>
<!--[if IE]><style>.b833_videothumb_554296816445 video { width:auto !important; height:100%; }</style><![endif]-->

<script>
jQuery(function($) {
	var figure = $(".b833_videothumb_554296816445").hover(
		function(){ $('video', this).get(0).play(); $('img.video_placeholder', this).css("opacity", 0); },
		function(){
			$('img.video_placeholder', this).css("opacity", 1);
			$('video', this).get(0).currentTime=0;
			$('video', this).get(0).pause();
			//$('video', this).get(0).src="";
			$('video', this).get(0).load();
			$('video', this).get(0).src="/videothumbs/brcc1791-4k.mp4";
		}
	);

	$(".b833_videothumb_554296816445").on("touchstart", function (e) {
		$('video', this).get(0).play();
	});

	$(".b833_videothumb_554296816445").on("touchend", function (e) {
		$('video', this).get(0).currentTime=0;
		$('video', this).get(0).pause();
		//$('video', this).get(0).src="";
		$('video', this).get(0).load();
		$('video', this).get(0).src="/videothumbs/brcc1791-4k.mp4";
	});
});
</script>

<div class="b833_videothumb_554296816445">
	<a href="https://www.backroomcastingcouch.com/trailers/From-Housekeeping-to-Hon.html"><span class="item-icon"><i class="fa fa-play-circle"></i></span></a>
	<img src="/site/content//contentthumbs/18/96/1896-1x.jpg" alt="" class="video_placeholder" />
	<video width="100%" height="100%" loop muted poster="/site/content//contentthumbs/18/96/1896-1x.jpg">
		<source src='/videothumbs/brcc1791-4k.mp4' type="video/mp4" />
	</video>
</div>
							
					<img class="fourk-badge" width="50" height="32" src="https://exploitedx.com/images/fourk-badge.webp" alt="4k Definition Video" title="4k Definition Video" style="position: absolute; left: 10px; bottom: 15px; z-index: 15; width: unset; ">
				
					</div>
		<div class="content-div">
			<h4>
				<a href="https://www.backroomcastingcouch.com/trailers/From-Housekeeping-to-Hon.html" title="From Housekeeping to Ho&rsquo;n">
					From Housekeeping to Ho’n				</a>
			</h4>
			<div class="row">
				<div class="col-md-6 col-12">
					<div class="more-info-div">
						38&nbsp;Photos, 50:12 | <i class="fa fa-calendar"></i> Apr 15, 2024					</div>
				</div>
				<div class="col-md-6 col-12 text-right">
				</div>
			</div>
		</div>
	</div>
</div>			
			</div>

	<div class="row">
		<div class="col-12 text-center">
			<div>
				


<div class="pagination">
<ul>
	
	<li class="active"><a href="https://www.backroomcastingcouch.com/">1</a></li><li class="hide_mobile"><a href="https://www.backroomcastingcouch.com/updates/page_2.html">2</a></li><li class="hide_mobile"><a href="https://www.backroomcastingcouch.com/updates/page_3.html">3</a></li><li class="hide_mobile"><a href="https://www.backroomcastingcouch.com/updates/page_4.html">4</a></li><li class="hide_mobile"><a href="https://www.backroomcastingcouch.com/updates/page_5.html">5</a></li><li class="hide_mobile"><a>...</a></li><li class="hide_mobile"><a href="https://www.backroomcastingcouch.com/updates/page_11.html">11</a></li><li class="hide_mobile"><a href="https://www.backroomcastingcouch.com/updates/page_101.html">101</a></li><li class="hide_mobile"><a href="https://www.backroomcastingcouch.com/updates/page_137.html">137</a></li><li class="next"><a href="https://www.backroomcastingcouch.com/updates/page_2.html" class="next-page"><i class="fa fa-angle-right"></i></a></li><li class="next"><a href="https://www.backroomcastingcouch.com/updates/page_137.html" class="next-page"><i class="fa fa-angle-double-right"></i></a></li></ul>
</div>


<br clear="all" />

				<!--
				<a href="https://www.backroomcastingcouch.com/categories/movies_1_d.html" class="btn btn-primary mb-5">See More New Videos</a>
				--!>
			</div>
		</div>
	</div>

</div>
<section id="4k promo">
<div class="container-fluid p-0 text-center">
		<div class="fourk py-3">
		<h3 class="site-identity-subhead text-white">UPDATED WEEKLY | UNLIMTED DOWNLOADS</h3>
		<h2 class="site-identity-head text-white">Filmed In 4K UHD</h2>
		</div>
</div>
</section><!--  Pre-Footer  -->
 
<div class="container-fluid  m-0 p-0">
     <div class="row">
        <div class="col sectionsplitout">
            <div class="sectionsplitthing"> </div>
            <h4 class="sectionsplit text-center">Upcoming Video</h4>
        </div>
    </div>
    <div class="row">
        <div class="col">
            <div id="countdownjumbotron"   class="jumbotron jumbotron-fluid countdowner mb-0">
                        <video autoplay muted loop   src="/videothumbs/BRCC1920x460.mp4">
                        <source src="/videothumbs/BRCC320x180.mp4" type="video/mp4" media="all and (max-width: 480px)">
                        <source src="/videothumbs/BRCC1920x460.mp4" type="video/mp4">
                    </video>
                <div class="container text-white text-center" >
                    <h4 class="my-4">Next Casting Video...</h4>
                        <div class="row mx-md-5 px-md-5 counter">
                            <div class="col-3"><span id="cd_days"></span> <span class="cd_label">DAYS</span></div>
                            <div class="col-3 "><span id="cd_hours"></span> <span class="cd_label">HOURS</span></div>
                            <div class="col-3 "><span id="cd_minutes"></span> <span class="cd_label">MINUTES</span></div>
                            <div class="col-3 "><span id="cd_seconds"></span> <span class="cd_label">SECONDS</span></div>
                        </div>
                    <h4 class="my-4" ><a id="cd_DOW"> MONDAY, </a><a id="cd_Month">May</a> <a id="cd_DayofWeek">16th</a>, 6AM est</h4>
                    <span id="countdown"></span>
                </div>
            </div>
        </div>
    </div>
</div>
 
<script >
    function deferVideo() {
        $("video source").each(function () {
            var sourceFile = $(this).attr("data-src");
            $(this).attr("src", sourceFile);
            var video = this.parentElement;
            video.load();
        });
    }
//  window.onload = deferVideo;  
</script>

 

<script>
    // Set the date we're counting down to
    var strmonth = "May";
    var strDay = "20";
    var countDownDate = new Date(strmonth + " " + strDay + ", 2024 10:00:00 GMT+0000").getTime();
    // Update the count down every 1 second
    var x = setInterval(function() {

        // Get today's date and time
        var now = new Date().getTime();

        // Find the distance between now and the count down date
        var distance = countDownDate - now;

        // Time calculations for days, hours, minutes and seconds
        var days = Math.floor(distance / (1000 * 60 * 60 * 24));
        var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
        var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
        var seconds = Math.floor((distance % (1000 * 60)) / 1000);

        // Display the result in the element with id="demo"
        function pad(n) {return (n < 10 ? "0" + n : n);}

        document.getElementById('cd_days').innerText  = pad(days);
        document.getElementById('cd_hours').innerText  = pad(hours);
        document.getElementById('cd_minutes').innerText  = pad(minutes);
        document.getElementById('cd_seconds').innerText  = pad(seconds);
        document.getElementById('cd_Month').innerText  = strmonth;
        document.getElementById('cd_DayofWeek').innerText  = strDay;
    }, 1000);
</script><div class="container-fluid">
     <div class="row">
        <div class="col sectionsplitout">
            <div class="sectionsplitthing">
            </div>
            <h4 class="sectionsplit text-center">FEATURED ON</h4>
        </div>
     </div>
</div>

<div class="container">
    <div class="row py-2">
        <div class="col">
            <div id="featuredslider" class="carousel slide carousel-fade" data-ride="carousel">
                 <div class="carousel-inner">
                        <div class="carousel-item active">
                             <div class="row row-cols-2 row-cols-sm-4 row-cols-md-6">
                                <div class=" col mx-0"><img src="custom_assets/images/featuredimg/vice.png" class="d-block w-100"></div>
                                <div class=" col mx-0"><img src="custom_assets/images/featuredimg/dm.png" class="d-block w-100"></div>
                                <div class="d-none d-sm-block col mx-0"><img src="custom_assets/images/featuredimg/dt.png" class="d-block w-100"></div>
                                <div class="d-none d-sm-block col mx-0"><img src="custom_assets/images/featuredimg/fam.png" class="d-block w-100"></div>
                                <div class="d-none d-md-block col mx-0"><img src="custom_assets/images/featuredimg/giz.png" class="d-block w-100"></div>
                                <div class="d-none d-md-block col mx-0"><img src="custom_assets/images/featuredimg/haber.png" class="d-block w-100"></div>
                              </div>
                        </div>
                        <div class="carousel-item">
                            <div class="row row-cols-2 row-cols-sm-4 row-cols-md-6">
                                <div class=" col mx-0"><img src="custom_assets/images/featuredimg/ibt.png" class="d-block w-100"></div>
                                <div class=" col mx-0"><img src="custom_assets/images/featuredimg/metro.png" class="d-block w-100"></div>
                                <div class="d-none d-sm-block col mx-0"><img src="custom_assets/images/featuredimg/phx.png" class="d-block w-100"></div>
                                <div class="d-none d-sm-block col mx-0"><img src="custom_assets/images/featuredimg/salon.png" class="d-block w-100"></div>
                                <div class="d-none d-md-block col mx-0"><img src="custom_assets/images/featuredimg/texas.png" class="d-block w-100"></div>
                                <div class="d-none d-md-block col mx-0"><img src="custom_assets/images/featuredimg/usa.png" class="d-block w-100"></div>
                            </div>
                        </div>

                        <div class="carousel-item ">
                            <div class="row row-cols-2 row-cols-sm-4 row-cols-md-6">
                                <div class="d-none d-sm-block col mx-0"><img src="custom_assets/images/featuredimg/vice.png" class="d-block w-100"></div>
                                <div class="d-none d-sm-block col mx-0"><img src="custom_assets/images/featuredimg/dm.png" class="d-block w-100"></div>
                                <div class="d-none d-md-block col mx-0"><img src="custom_assets/images/featuredimg/dt.png" class="d-block w-100"></div>
                                <div class="d-none d-md-block col mx-0"><img src="custom_assets/images/featuredimg/fam.png" class="d-block w-100"></div>
                                <div class=" col mx-0"><img src="custom_assets/images/featuredimg/giz.png" class="d-block w-100"></div>
                                <div class=" col mx-0"><img src="custom_assets/images/featuredimg/haber.png" class="d-block w-100"></div>
                            </div>
                        </div>
                        <div class="carousel-item">
                            <div class="row row-cols-2 row-cols-sm-4 row-cols-md-6">

                                <div class="d-none d-sm-block col mx-0"><img src="custom_assets/images/featuredimg/ibt.png" class="d-block w-100"></div>
                                <div class="d-none d-sm-block col mx-0"><img src="custom_assets/images/featuredimg/metro.png" class="d-block w-100"></div>
                                <div class="d-none d-md-block col mx-0"><img src="custom_assets/images/featuredimg/phx.png" class="d-block w-100"></div>
                                <div class="d-none d-md-block col mx-0"><img src="custom_assets/images/featuredimg/salon.png" class="d-block w-100"></div>
                                <div class="col mx-0"><img src="custom_assets/images/featuredimg/texas.png" class="d-block w-100"></div>
                                <div class="col mx-0"><img src="custom_assets/images/featuredimg/usa.png" class="d-block w-100"></div>
                            </div>
                        </div>

                        <div class="carousel-item ">
                            <div class="row row-cols-2 row-cols-sm-4 row-cols-md-6">
                                <div class="d-none d-md-block col mx-0"><img src="custom_assets/images/featuredimg/vice.png" class="d-block w-100"></div>
                                <div class="d-none d-md-block col mx-0"><img src="custom_assets/images/featuredimg/dm.png" class="d-block w-100"></div>
                                <div class="col mx-0"><img src="custom_assets/images/featuredimg/dt.png" class="d-block w-100"></div>
                                <div class="col mx-0"><img src="custom_assets/images/featuredimg/fam.png" class="d-block w-100"></div>
                                <div class="d-none d-sm-block col mx-0"><img src="custom_assets/images/featuredimg/giz.png" class="d-block w-100"></div>
                                <div class="d-none d-sm-block col mx-0"><img src="custom_assets/images/featuredimg/haber.png" class="d-block w-100"></div>
                            </div>
                        </div>
                        <div class="carousel-item">
                            <div class="row row-cols-2 row-cols-sm-4 row-cols-md-6">

                                <div class="d-none d-md-block col mx-0"><img src="custom_assets/images/featuredimg/ibt.png" class="d-block w-100"></div>
                                <div class="d-none d-md-block col mx-0"><img src="custom_assets/images/featuredimg/metro.png" class="d-block w-100"></div>
                                <div class="col mx-0"><img src="custom_assets/images/featuredimg/phx.png" class="d-block w-100"></div>
                                <div class="col mx-0"><img src="custom_assets/images/featuredimg/salon.png" class="d-block w-100"></div>
                                <div class="d-none d-sm-block col mx-0"><img src="custom_assets/images/featuredimg/texas.png" class="d-block w-100"></div>
                                <div class="d-none d-sm-block col mx-0"><img src="custom_assets/images/featuredimg/usa.png" class="d-block w-100"></div>
                            </div>
                        </div>
                </div>
            </div>
        </div>
     </div>
</div>
<!--  Footer -->
<footer>
<div class="container-fluid px-3 px-md-5 mb-3">
    <div class="row">
        <div class="col-12 col-md-8 p-3">
            <h3>The Original Casting Couch</h3>
            <p>
                BRCC is the best porn site in the world and since its founding,  backroom castingcouch.com has been the leader in casting amateur  XXX content. We bring you first time wannabe porn stars doing the wildest, kinkiest
                fantasy fucking in the hottest collection of HD porn videos. Amateur hardcore scenes featuring fresh young and willing sluts, will meet all your needs: big tits, small tits,
                big butts, wet pussies and huge dicks. With 100s of <a href="/discount" class="text-decoration-none text-reset">casting couch videos</a>, there's 1000s of hours of Rick interviewing girls on the couch.
                No fake storylines, the slutty performances are real, no over produced porn. Signup today and start seeing why Backroom Casting Couch is known by millions around the world!
            </p>
        </div>
        <div class="col-12 col-md-4 p-3">
            <div class="text-center">
                <img src="https://www.backroomcastingcouch.com/assets/logo/light/[email protected]" width="360" height="45" alt="backroom casting couch logo" class="img-fluid pb-2" />
                <div class="btn-group btn-group-lg  flex-wrap  w-100 " role="group" aria-label="Basic mixed styles example">
                    <a class="btn btn-info" href="https://www.backroomcastingcouch.com/members/">Members Login</a>
                    <a class="btn btn-primary bg-theme text-white" href="https://join.backroomcastingcouch.com/signup/signup.php?nats=MC4wLjEuMS4wLjAuMC4wLjA&amp;step=2">Signup Now!</a>
                </div>
                <p class="text-center pt-4">
                    We accept the following payment types
                </p>
                <div class="row m-2">
                    <div class="col p-0 m-0">
                        <img src="/images/visa.png" width="82" height="49" class="img-fluid">
                    </div>
                    <div class="col p-0 m-0">
                        <img src="/images/mastercard.png" width="82" height="49" class="img-fluid">
                    </div>
                    <div class="col p-0 m-0">
                        <img src="/images/discover.png" width="82" height="49" class="img-fluid">
                    </div>
                    <div class="col p-0 m-0">
                        <img src="/images/paypal.png" width="82" height="49" class="img-fluid">
                    </div>
                    <div class="col p-0 m-0">
                        <img src="/images/check.png" width="82" height="49" class="img-fluid">
                    </div>
                </div>
                

             </div>
        </div>
    </div>
</div>

<div class="container-fluid px-3 px-md-5 my-2">
    <h2 class="text-center text-bold">Access Three Sites When You Join</h2>
    <div class="row">
        <div class="col-12 col-md-4">
            <div class="card-header bg-transparent text-center">
                <img src="https://exploitedcollegegirls.com/custom_assets/images/footer-ecglogo.png" width="280" height="53" alt="excogi logo" class="img-fluid">
            </div>
            <div class="card w-100 bg-transparent text-white text-left">
                <img src="custom_assets/images/footer-ecg.jpg" class="card-img-top" alt="exploited college girls">
                <div class="card-body text-center p-1">
                    <h4 class="card-title">ExploitedCollegeGirls.com</h4>
                    <p class="card-text p-0"> The price of tuition keeps going up and we want to see every girl succeed to her fullest potential. Answer the ad and get paid for your time... we'll both leave with a smile on our face. </p>
                    <div class="btn-group w-100" role="group" aria-label="Basic example">
                        <a href="https://join.backroomcastingcouch.com/signup/signup.php?nats=MC4wLjEuMS4wLjAuMC4wLjA&amp;step=2" class="btn btn-lg btn-dark text-warning text-uppercase fs-3"><i class="fa fa-check" aria-hidden="true"></i> Included</a>
                    </div>
                </div>
            </div>
        </div>
        <div class="col-12 col-md-4">
            <div class="card-header bg-transparent text-center">
                <img src="https://bbcsurprise.com/custom_assets/images/footer-bbclogo.png"  width="280" height="53"  alt="bbc surprise logo" class="img-fluid">
            </div>
            <div class="card w-100 bg-transparent text-white">
                <img src="custom_assets/images/footer-bbc.jpg" class="card-img-top" alt="bbc surprise">
                <div class="card-body text-center p-1">
                    <h4 class="card-title">BBCSurprise.com</h4>
                    <p class="card-text p-0">Sure, she is willing to fuck her way into adult. That's not enough. Let's see how she reacts when a well hung black man walks through that door to break her in. First stop, InterRacial!</p>
                    <div class="btn-group w-100" role="group" aria-label="Basic example">
                        <a href="https://join.backroomcastingcouch.com/signup/signup.php?nats=MC4wLjEuMS4wLjAuMC4wLjA&amp;step=2" class="btn btn-lg btn-dark text-warning text-uppercase fs-3"><i class="fa fa-check" aria-hidden="true"></i> Included</a>
                    </div>
                </div>
            </div>
        </div>
        <div class="col-12 col-md-4">
            <div class="card-header bg-transparent text-center">
                <img src="https://www.backroomcastingcouch.com/custom_assets/images/footer-brcclogo.png"  width="280" height="53" alt="backroom casting couch logo" class="img-fluid">
            </div>
            <div class="card w-100 bg-transparent text-white">

                <img src="custom_assets/images/footer-brcc.jpg" class="card-img-top" alt="...">
                <div class="card-body text-center p-1">
                    <h4 class="card-title">BackroomCastingCouch.com</h4>
                    <p class="card-text p-0"> Backroom Casting Couch ™ films a true to life adult modeling interview. They would all be hired, however he is not a real talent agent ... and still... there is no modeling job to fill.</p>
                    <div class="btn-group w-100" role="group" aria-label="Basic example">
                        <a href="https://join.backroomcastingcouch.com/signup/signup.php?nats=MC4wLjEuMS4wLjAuMC4wLjA&amp;step=2" class="btn btn-lg btn-dark text-warning text-uppercase fs-3"><i class="fa fa-check" aria-hidden="true"></i> Included</a>
                    </div>
                </div>
            </div>
        </div>
    </div>
</div>

<div class="container my-2">
    <div class="row">
        <div class="col text-center">
            <img src="../rta-label.gif" alt="Parental Controls - RTA Label" class="my-1" width="80px" height="40px">
            <p>Please visit <a href="https://support.ccbill.com/" target="_blank">CCBILL</a> or <a href="https://epoch.com/" target="_blank">EPOCH</a> or <a href="https://cs.segpay.com/" target="_blank">SEGPAY</a>, our authorized sales agents.</p>
            <div class="small">Copyright © 2024 Backroom Casting Couch. All Rights Reserved.</div>
            <div class="small"><a href="https://www.backroomcastingcouch.com/pages.php?id=2257"> 18 U.S.C. 2257 Record-Keeping Requirements Compliance Statement</a></div>
        </div>
    </div>
</div>
<div class="container-fluid p-0">
    <div class="row mt-3">
        <div class="col-12">
            <nav>
                <ul class="nav justify-content-center text-light text-center bottomnav">
                    <li class="nav-item "><a href="https://fcukcash.com/" rel="nofollow" class="nav-link text-white" target="_blank">Affiliates</a></li>
                    <li class="nav-item"><a href="https://www.backroomcastingcouch.com/pages.php?id=privacy" rel="nofollow" class="nav-link text-white"">Privacy Policy</a></li>
                    <li class="nav-item"><a href="https://www.backroomcastingcouch.com/pages.php?id=cancel" rel="nofollow" class="nav-link text-white"">Cancel</a></li>
                    <li class="nav-item"><a href="https://www.backroomcastingcouch.com/pages.php?id=toc" rel="nofollow" class="nav-link text-white" target="_blank">Terms</a></li>
                    <li class="nav-item"><a href="https://www.backroomcastingcouch.com/pages.php?id=contact" class="nav-link text-white">Contact</a></li>
                </ul>
            </nav>
        </div>
    </div>
</div> 
</footer>
<div class="scroll_up bg-theme"><a href="#"><i class="fa fa-arrow-up bg-theme"></i></a></div>

<!--ipost tracking -->
<script>
(function(d, s, u, a) {
    a = d.createElement(s);
    a.async = 1;
    a.src = u;
    d.body.appendChild(a);

    a.onload = function() {
    a.parentNode.removeChild(a);
    };
})(document, 'script', 'https://js.g003.enterprise.ipost.com/static/pref/img/client/b/backroomcastingcouch/WEH/iPost-Web-Tracking-8q3cdlieurrbdhk6pon9ctn6orrathgmlge0-V1.js');
</script>
</body>
</html>

Latest requests

# Url Url Source Date
1 https://www.backroomcastingcouch.c… 2024-05-19 03:26:55
2 https://thebolditalic.com/?gi=5d67… 2024-05-19 03:26:54
3 https://thebolditalic.com/?gi=5cf0… 2024-05-19 03:26:53
4 https://thebolditalic.com/?gi=012d… 2024-05-19 03:26:53
5 https://thebolditalic.com/?gi=bbdb… 2024-05-19 03:26:52
6 https://thebolditalic.com/?gi=7436… 2024-05-19 03:26:51
7 https://thebolditalic.com/?gi=bf6a… 2024-05-19 03:26:49
8 https://thebolditalic.com/?gi=685a… 2024-05-19 03:26:49
9 https://thebolditalic.com/?gi=2354… 2024-05-19 03:26:48
10 https://thebolditalic.com/?gi=91f1… 2024-05-19 03:26:47
11 https://thebolditalic.com/?gi=5b16… 2024-05-19 03:26:46
12 https://thebolditalic.com/?gi=741b… 2024-05-19 03:26:46
13 https://thebolditalic.com/?gi=627e… 2024-05-19 03:26:45
14 https://thebolditalic.com/?gi=c36b… 2024-05-19 03:26:45
15 https://istqblearning.com/2022/10/… 2024-05-19 03:26:44
16 https://chunkyrings94937.blog-ezin… 2024-05-19 03:26:44
17 https://thebolditalic.com/?gi=3045… 2024-05-19 03:26:43
18 https://thebolditalic.com/?gi=7044… 2024-05-19 03:26:43
19 https://thebolditalic.com/?gi=b8f1… 2024-05-19 03:26:42
20 https://thebolditalic.com/?gi=2f3d… 2024-05-19 03:26:41