/*
	Theme Name: HTML5 Blank
	Theme URI: http://html5blank.com
	Description: HTML5 Blank WordPress Theme
	Version: 1.4.3
	Author: Todd Motto (@toddmotto)
	Author URI: http://toddmotto.com
	Tags: Blank, HTML5, CSS3

	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/

/* ==========================================================================
   CSS CUSTOM PROPERTIES (Variables)
   ========================================================================== */

:root {
	/* Colors */
	--color-primary: #e31837;
	--color-primary-dark: #b20710;
	--color-secondary: #f59e0b;
	--color-text: #444;
	--color-text-dark: #1a1a1a;
	--color-text-light: #666;
	--color-white: #fff;
	--color-black: #000;
	--color-gray-light: #f8f8f8;
	--color-gray: #ccc;
	--color-gray-dark: #333;

	/* Typography */
	--font-primary: 'Montserrat', sans-serif;
	--font-size-base: 17px;
	--line-height-base: 1.7;

	/* Spacing */
	--spacing-xs: 5px;
	--spacing-sm: 10px;
	--spacing-md: 20px;
	--spacing-lg: 40px;
	--spacing-xl: 60px;

	/* Border Radius */
	--radius-sm: 4px;
	--radius-md: 8px;
	--radius-lg: 16px;
	--radius-full: 50%;

	/* Transitions */
	--transition-fast: 0.2s ease;
	--transition-normal: 0.3s ease;
	--transition-slow: 0.5s ease;

	/* Shadows */
	--shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
	--shadow-md: 0 4px 20px rgba(0,0,0,0.15);
	--shadow-lg: 0 10px 40px rgba(0,0,0,0.2);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

/* Global box-sizing */
*,
*::after,
*::before {
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

html {
	font-size: 62.5%;
	width: 100%;
	scroll-behavior: smooth;
}

body {
	font: 400 var(--font-size-base)/var(--line-height-base) var(--font-primary);
	color: var(--color-text);
	overflow-x: hidden;
}

/* ==========================================================================
   Typography - Standardized Scale
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 20px 0;
	color: #1a1a1a;
}

h1 {
	font-size: 42px;
	font-weight: 800;
	letter-spacing: -0.5px;
}

h2 {
	font-size: 32px;
	font-weight: 700;
}

h3 {
	font-size: 24px;
	font-weight: 700;
}

h4 {
	font-size: 20px;
	font-weight: 600;
}

h5 {
	font-size: 18px;
	font-weight: 600;
}

h6 {
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}

p {
	padding-bottom: 20px;
	font-size: 17px;
	line-height: 1.7;
}

p:last-child {
	padding-bottom: 0;
}

ol, ul {
	padding-left: 25px;
	padding-bottom: 20px;
	font-size: 17px;
	line-height: 1.7;
}

ol {
	list-style-type: decimal;
}

ul {
	list-style-type: disc;
}

li {
	margin-bottom: 8px;
}

blockquote {
	margin: 25px 0;
	padding: 20px 25px;
	border-left: 4px solid #e31937;
	background: #f8f8f8;
	font-size: 18px;
	font-style: italic;
	color: #555;
}

blockquote p {
	padding-bottom: 0;
}

/* Responsive Typography */
@media only screen and (max-width: 768px) {
	body {
		font-size: 16px;
	}

	h1 {
		font-size: 32px;
	}

	h2 {
		font-size: 28px;
	}

	h3 {
		font-size: 20px;
	}

	h4 {
		font-size: 18px;
	}

	h5 {
		font-size: 16px;
	}

	h6 {
		font-size: 14px;
	}

	p, ol, ul {
		font-size: 16px;
	}

	blockquote {
		font-size: 17px;
	}
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
}
img {
	max-width:100%;
	vertical-align:bottom;
}
a {
	color:#444;
	text-decoration:none;
	font-weight: bold;
}
a:hover {
	color:red;
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus {
	outline:0;
	border:1px solid #04A4CC;
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

/* ==========================================================================
   LAYOUT
   ========================================================================== */

.wrapper {
	max-width: 95%;
	width: 95%;
	margin: 0 auto;
	position: relative;
}

/* ==========================================================================
   HOME PAGE COMPONENTS
   ========================================================================== */

/* Live Streams Section */
.homeNewStream {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 60px 0;
}

.homeNewStreamHeader {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    color: #fff;
}

.homeNewStreamHeader h2 {
    margin: 0;
    font-weight: 700;
	color:#fff;
}

.liveIndicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(227, 24, 55, 0.15);
    color: #e31837;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.liveDot {
    width: 8px;
    height: 8px;
    background: #e31837;
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.streamCardsContainer {
    overflow: hidden;
    position: relative;
}

.streamCardsTrack {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.streamCard {
    flex: 0 0 calc(25% - 15px);
    min-width: calc(25% - 15px);
    border-radius: 12px;
    overflow: hidden;
    background: #1a1a1a;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.streamCard:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(227, 24, 55, 0.3);
}

.streamVideoWrapper {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
    border-radius: 12px 12px 0 0;
}

.streamVideoWrapper video,
.streamVideoWrapper iframe,
.streamVideoWrapper .bradmax-player {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}

.streamCardInfo {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: linear-gradient(180deg, #1a1a1a 0%, #111 100%);
    text-decoration: none;
    border-radius: 0 0 12px 12px;
    transition: background 0.3s ease;
}

.streamCardInfo:hover {
    background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
}

.streamChannelLogo {
    height: 35px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.streamChannelName {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    opacity: 0.9;
    flex-grow: 1;
}

.streamWatchLink {
    color: #e31837;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    opacity: 0;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.streamCard:hover .streamWatchLink {
    opacity: 1;
}

/* Stream carousel dots */
.streamDots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.streamDot {
    width: 30px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.streamDot.active {
    background: #e31837;
    width: 40px;
}

.streamDot:hover {
    background: rgba(255, 255, 255, 0.5);
}


.subscribeField {
    width: 75%;
    float: left;
}

.subscribeBtn {
    float: left;
    width: 24%;
    text-align: left;
	margin-left:1%;
}

input[type="submit"] {
    padding: 15px;
    border: 1px solid #3399cc;
    background: #3399cc;
    color: #FFF;
    font-weight: 800;
}

input[type="email"] {
    width: 75%;
    float: right;
    background: rgba(255,255,255,.2);
    border: #fff solid 1px;
    padding: 15px;
}


ul.postsbycategory {
    display: inline-flex;
    list-style: none;
}

li.postHome {
    width: 30%;
}

li.postHome:nth-of-type(even) {
    margin: 0% 5%;
}

a.readMoreBtn {
    background: red;
    color: #FFF;
    padding: 20px 30px;
    margin-top: 25px;
}

.postExcerptHome{
	width: 100%;
	margin-bottom: 25px;
}

ul.newsbycategory {
    list-style: none;
}

ul.newsbycategory li.postHome {
    width: 100%;
	margin: 0;
}

/*------------------------------------*\
    PAGE TEMPLATES
\*------------------------------------*/
.hero-content{
		width: 100%;
		background: radial-gradient(circle at 10% 20%, rgb(0, 0, 0, 1) 20%, rgb(64, 64, 64, .5) 90.2%);
		float: left;
		padding: 100px 0px;}	

.hero-content h1, .heroContentTraining h1{
	font-size: 5vw;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1em;
    color: #FFFFFF;
    text-shadow: -7px -3px 0px red;
    margin: 0px 0px 10px 0px;
	padding: 0px 0px 0px 0px;}

.hero-content h3, .heroContentTraining h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    margin: 0;
}

.heroContentTraining{
	width: 100%;
	float: left;
	padding: 100px 0px;
}

.breadcrumbs {
    border-bottom: solid #000 1px;
    padding: 15px 0px;
    font-size: 12px;
}

span.breadcrumb_last {
    font-weight: bold;
}

.livestreamPageEmbed {
    width: 70%;
    float: left;
	margin-top: 50px;
}

.bodySidebar {
    float: left;
    width: 75%;
	margin-top: 50px;
}

.support-options li {
    background: #d1d1d1;
    line-height: 50px;
    padding-left: 20px;
    color: #fff;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 4px;
    position: relative;
    cursor: pointer;
}

.support-options li:hover,.support-options li.active{background:#ffb500}
.support-options li:hover .amount, .support-options li.active .amount{background:#e59c00}


.bodySidebar ul {
    padding-left: 20px;
}

.topbutton {
     height:50px;
     width:50px;
     position:fixed;
     right:5px;
     bottom:5px;
     Z-index:1;
     background-image:url("https://cantv.org/wp-content/themes/CANTV/img/icons/scroll-top.svg");
     background-repeat:no-repeat;
     display:none;
}

/*------------------------------------*\
  SIDEBAR
\*------------------------------------*/

.sidebar {
    float: right;
    width: 20%;
	
}

.sidebar-widget {
    margin: 50px 0px;
}

.curriculumListingHeader {
    font-size: 1.2em;
    font-weight: 900;
    border-bottom: solid 10px red;
    padding-bottom: 5px;
}

ul.calendarListSidebar{
	list-style: none;
}

.classTitleSidebar, .classTitleSidebar a{
	font-weight: bold;
	color: #4a5767;
}

.classTitleSidebar a:hover{
	font-weight: bold;
	color: red;
}


ul.calendarListSidebar li { background: #cccccc; padding: 25px; }
ul.calendarListSidebar li:nth-child(odd) { background: #eeeeee; }

.calendarSidebar, .calendarSidebar .date, .calendarSidebar .time {
    font-size: 14px;
	color: #4a5767;
}

/*------------------------------------*\
  TRAINING POSTS & ARCHIVES
\*------------------------------------*/


.trainingLength {
    width: 100%;
    float: left;
    color: red;
    font-size: 1.5em;
    font-weight: 600;
}

.date,.dayOfWeek {
    color: #FFF;
    font-weight: 600;
}

.cost {
    color: red;
    font-weight: 600;
	margin-top:15px;
}

.trainingDetailsBody {
    width: 50%;
    float: left;
    font-size: 1.3em;
	padding:100px 0px;
}

.trainingDetailsImage {
    width: 40%;
    float: right;
}

.redButton {
    background: red;
    padding: 10px;
    margin: 20px 0px;
    float: left;
    color: #FFF;
    font-weight: 800;
}

.addtoany_shortcode{
	float: left;
	width:100%;
}

ul.calendarList {
    display: inline-flex;
    list-style: none;
    font-size: 14px;
    flex-wrap: wrap;
}

ul.calendarList li {
    width: 100%;
    background: #eee;
    margin: 10px;
    padding: 25px;
	color:#000;
}

.calendarList li .trainingLength {
    width: 100%;
    float: left;
    color: red;
    font-size: 14px;
    font-weight: 600;
}

.calendarList li .cost{
	margin: 15px 0px;}

.calendarList li h1{
	font-size: 1.2em;}

.calendarList li .date, .calendarList li .dayOfWeek{
	color:#444;
}

a.redBtn {
    padding: 10px;
    background: red;
    color: #FFF;
    font-weight: bold;
}

a.redBtn:hover {
    background: black;
}


/* ==========================================================================
   SIGNATURE PROGRAM STYLES
   Program-specific color overrides
   ========================================================================== */

/* RealTalk */
#post-509 h2.episode-name a {
    color: #FFF;
}

#post-509 h2.episode-name a:hover {
    color: #fa35ab;
}

/*------------------------------------*\
   For The Culture
\*------------------------------------*/
#post-518 h4.episode-number {
	color:#f18721;
}
#post-518 h2.episode-name a {
    color: #FFF;
}

#post-518 h2.episode-name a:hover {
    color: #f18721;
}

/*------------------------------------*\
   Political Forum
\*------------------------------------*/
#post-526 h4.episode-number {
	color:red;
}

#post-526 h2.episode-name a {
    color: #FFF;
}

#post-526 h2.episode-name a:hover {
    color: navy;
}

/*------------------------------------*\
   Change Agents
\*------------------------------------*/
#post-534 h4.episode-number {
	color:#000000;
}
#post-534 h2.episode-name a {
    color: #FFF;
}

#post-534 h2.episode-name a:hover {
    color: #df6237;
}

/*------------------------------------*\
   In The Arena
\*------------------------------------*/
#post-499 h4.episode-number {
	color:#000000;
}
#post-499 h2.episode-name a {
    color: #FFF;
}

#post-499 h2.episode-name a:hover {
    color: #000000;
}

/*------------------------------------*\
   HushLoudly
\*------------------------------------*/
#post-413540 h4.episode-number {
	color:#c0da6a;
}

#post-413540 h2.episode-name a {
    color: #FFF;
}

#post-413540 h2.episode-name a:hover {
    color: #c0da6a;
}

/*------------------------------------*\
   Sistas Guide
\*------------------------------------*/
#post-413533 h4.episode-number {
	color:#b64736;
}

#post-413533 h2.episode-name a {
    color: #FFF;
}

#post-413533 h2.episode-name a:hover {
    color: #b64736;
}

/*------------------------------------*\
   Peace of Mind
\*------------------------------------*/
#post-413504 h4.episode-number {
	color:#FFF;
}

#post-413504 h2.episode-name a {
    color: #FFF;
}

#post-413504 h2.episode-name a:hover {
    color: #CCC;
}

/*------------------------------------*\
   DIY DEI
\*------------------------------------*/
#post-413555 h4.episode-number {
	color:#7e4328;
}

#post-413555 h2.episode-name a {
    color: #FFF;
}

#post-413555 h2.episode-name a:hover {
    color: #7e4328;
}




/*------------------------------------*\
    Program Posts
\*------------------------------------*/
.embed-container { 
        position: relative; 
        padding-bottom: 56.25%;
        overflow: hidden;
        max-width: 100%;
        height: auto;
    } 

    .embed-container iframe,
    .embed-container object,
    .embed-container embed { 
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

.programContent-holder {
    float: left;
    width: 70%;
    margin-top: 50px;
}


.episodeName {
    color: #FFF;
    font-size: 2.5vw;
}

.airDate {
    margin: 15px 0px;
    font-size: 1.5vw;
}

.programContent {
    background: red;
    padding: 50px;
    color: #FFF;
    font-size: 1.5vw;
    margin-bottom: 50px;
}

/*------------------------------------*\
    Search Results
\*------------------------------------*/
ul.archiveList:nth-child(odd) {
    background: #ccc;
	padding:25px;
	margin:25px 0px;
}

ul.archiveList{;
	padding:25px;
	background-color: #EEE;
}

.archiveThumbnail {
    width: 400px;
    height: 225px;
    float: left;
    background: red url(https://visualredev.wpengine.com/wp-content/themes/CANTV/img/logo-white.svg) no-repeat;
    background-size: auto;
  background-position: center;
	margin-right: 25px;
	overflow: hidden;
	
}

.archiveThumbnail img {
	float: left;
}

.archiveMoreBtn a {
    background: red;
    padding: 10px 20px;
    margin-top: 25px;
    float: left;
    color: #FFF;
}

.archiveMoreBtn a:hover {
    background: black;
    color: #FFF;
}

.archiveResults {
    width: 70%;
    float: left;
}

.archiveSidebar {
    width: 30%;
    float: right;
	margin-top: 60px;
}

a.page-numbers {
    color: #444;
    background: #EEE;
    padding: 5px;
    margin: 10px 0px;
}

a.next.page-numbers, a.prev.page-numbers {
    color: red;
	font-weight: bolder;
	background: none;
}

.pagination {
    margin: 25px 0px;
}

.pagination a:hover{
	opacity: .5;
}

span.page-numbers.current {
    background: red;
    color: #FFF;
    padding: 5px;
    font-weight: bold;
}

/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-webkit-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-moz-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
	margin:5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
a img.alignnone {
	margin:5px 20px 20px 0;
}
a img.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.aligncenter {
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.wp-caption {
	background:#FFF;
	border:1px solid #F0F0F0;
	max-width:96%;
	padding:5px 3px 10px;
	text-align:center;
}
.wp-caption.alignnone {
	margin:5px 20px 20px 0;
}
.wp-caption.alignleft {
	margin:5px 20px 20px 0;
}
.wp-caption.alignright {
	margin:5px 0 20px 20px;
}
.wp-caption img {
	border:0 none;
	height:auto;
	margin:0;
	max-width:98.5%;
	padding:0;
	width:auto;
}
.wp-caption .wp-caption-text,
.gallery-caption {
	font-size:11px;
	line-height:17px;
	margin:0;
	padding:0 4px 5px;
}
.sticky {

}
.bypostauthor {

}

/*------------------------------------*\
  News Posts
\*------------------------------------*/
.singleFeaturedImage {
    width: auto;
    max-height: 500px;
    overflow: hidden;
}

.singleFeaturedImage img {
    width: 100%;
}

.singleHeadline h1 {
    color: red;
}

.singleHeadline h4 {
    font-weight: 400;
}

.singleHeadline {
    margin-bottom: 25px;
    border-bottom: solid 5px red;
    padding-bottom: 25px;
}

.singleByline {
    margin-bottom: 25px;
}

.singleDate {
    font-size: 16px;
    font-weight: bold;
    color: grey;
}

.singleContent p {
    padding-bottom: 25px;
}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	* {
		background:transparent !important;
		color:#000 !important;
		box-shadow:none !important;
		text-shadow:none !important;
	}
	a,
	a:visited {
		text-decoration:underline;
	}
	a[href]:after {
		content:" (" attr(href) ")";
	}
	abbr[title]:after {
		content:" (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content:"";
	}
	pre,blockquote {
		border:1px solid #999;
		page-break-inside:avoid;
	}
	thead {
		display:table-header-group;
	}
	tr,img {
		page-break-inside:avoid;
	}
	img {
		max-width:100% !important;
	}
	@page {
		margin:0.5cm;
	}
	p,
	h2,
	h3 {
		orphans:3;
		widows:3;
	}
	h2,
	h3 {
		page-break-after:avoid;
	}
}


/* Legacy header - hidden */
.mobile-header-container {
	display: none;
}
  
  
  /* logo styles */
.logo {
    height: 100px;
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 50px;
    position: absolute;
    top: 12px;
    right: 45%;
}
  
  
  
  
/* social icons and containers */
.social-header-container {
	background-color: white;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 125px;
	z-index: 1000;
}
  
  .social-header-container i {
	margin: 5px;
	font-size: 20px;
  
  }
  
  .social-links {
	color: black;
  }

.social-links:hover {
    color: red;
}
  
  .social-link-1 {
	  margin-left: 55px;
	  
	}
  
  .nav-container {
	color: white;
	text-decoration: none;
	display: block;
	justify-content: space-between;
	background-color: black;
	min-width: 100%;

  }
  
  /* adding space between the two sets of menu list items */
  .nav-container div {
	display: flex;
	justify-content: space-between;
	padding: 10px 40px;

  }
  
/* styling both sets of lists */
.nav-menu-items {
	display: flex;
	flex-direction: row;
}
  
  .nav-item-styling {
	list-style: none;
  }
  
  .nav-item-styling a {
	color: white;
	text-decoration: none;
	list-style: none;
	font-weight: 600;
	font-family: sans-serif;
	padding: 10px;
	margin: 10px;
  }
  
  /* right side menu navigation bar (menu with icons) */
  .icon-nav-menu {
	z-index: 10000;
  }
  .icon-nav-menu a {
	text-decoration: none;
	color: white;
	font-size: 12px;
  }
  
  .icon-nav-menu li {
	text-decoration: none;
	color: white;
	margin: 0 10px;
  }

.icon-nav-menu li a:hover{
	color: red;
}
  
  .icon-nav-menu a {
	display: flex;
	justify-content: center;
	align-items: center;
  }
  
  .icon-nav-menu li i {
	padding: 0 5px;
	font-size: 20px;
  }

  
  .nav-icon-menu-styling {
	list-style: none;
  }
  
  .nav-icon-menu-styling a {
	text-decoration: none;
	list-style: none;
	font-weight: 600;
	font-family: sans-serif;
	font-size: 10px;
  }
  
  .dropdown-item {
	display: inline-block;
	justify-content: center;
	width: 100%;
  }
  
  .dropdown-border {
	border-bottom: gray solid 1px;
  }
  
  nav ul {
	position: relative;
	display: flex;
	align-items: center;
  }
  
  nav ul li {
	position: relative;
	list-style: none;
  }
  
  .dropdown-item a {
	/* padding: 0; */
	font-size: 12px;
	line-height: 50px;
	height: 100px;
	color: red;
	white-space: nowrap;
  }
  
  .dropdown-item a:hover {
	color: black;
	padding: 20px 0;
  }
  
  /* makes background white and font color red on hover */
  .sub-menu-parent:hover > a {
	background-color: white;
	padding-top: 21px;
	padding-bottom: 21px;
	color: red;
  }
  
  .sub-menu:hover {
	position: absolute;
  }
  
  /* dropdown animated menu on hover */
  nav > div > ul > li:hover > ul {
	-webkit-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	opacity: 1;
	z-index: -1;
  }
  
  /* dropdown animation properties */
  nav > div > ul > li > ul {
	flex-direction: column;
	position: absolute;
	left: 10px;
	top: 150%;
	z-index:-1;
	padding-bottom: 0;
	width: 250px;
	text-align: left;
	-webkit-transform: translate3d(0, -100%, 0);
	-ms-transform: translate3d(0, -100%, 0);
	transform: translate3d(0, -100%, 0);
	transition: 0.5s;
	transition-property: all;
	transition-duration: 0.5s;
	transition-timing-function: ease;
	transition-delay: 0s;
	background: white;
	color: black;
	opacity: 0;
	box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
	border-bottom: red solid 5px;
  }
  
  a {
	transition: 0.2s;
	transition-property: all;
	transition-duration: 0.2s;
	transition-timing-function: ease;
	transition-delay: 0s;
  }
  
  header {
	position: relative;
	z-index: 3;
  }

  header.sticky {
	position: fixed;
	z-index:999;
	top: 0;
	left: 0;
	width: 100vw;
  }
  
  /* sticky navigation settings below  */
  
  nav.sticky {
	color: white;
	text-decoration: none;
	display: block;
	justify-content: space-between;
	background-color: red;
  }


  
  
  
  nav.sticky ul li a {
	color: white;
	height: 100%;
  }
  
  nav.sticky ul li .sticky-hover {
	padding: 30px 15px;
  }
  
  nav.sticky ul li .sticky-hover:hover {
	color: red;
  }
  
  nav.sticky ul li a:hover {
	color: black;
  }
  
  /* Dropdown menu items on the sticky nav */
  nav.sticky ul li ul li a {
	color: red;
  }
  
  nav.sticky ul li ul li a:hover {
	color: black;
  }
  
  .toggle {
	display: none;
  }
  
  .toggle.sticky {
	display: flex;
	justify-content: flex-start;
	position: relative;
	left: 0;
	top: 0;
	height: 50px;
	width: 50px;
	margin-right: 30px;
  }
  
  nav.sticky > div > ul > li:hover > ul {
	-webkit-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	opacity: 1;
	z-index: -1;
  }
  
  nav.sticky > div > ul > li > ul {
	flex-direction: column;
	position: absolute;
	left: 10px;
	top: 200%;
	z-index: -1;
	padding-bottom: 0;
	width: 250px;
	text-align: left;
	-webkit-transform: translate3d(0, -100%, 0);
	-ms-transform: translate3d(0, -100%, 0);
	transform: translate3d(0, -100%, 0);
	transition: 0.5s;
	transition-property: all;
	transition-duration: 0.5s;
	transition-timing-function: ease;
	transition-delay: 0s;
	background: white;
	color: black;
	opacity: 0;
	box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
	border-bottom: red solid 5px;
  }
  

  
  .social-header-container.hide {
	display: none;
  }
  
  /* SEARCH BAR  */
  .search-wrapper {
	position: relative;
	transform: translate(-50%, -50%);
	top: 15%;
	right: 25px;
  }
  .search-wrapper.active {
  }
  
  .search-wrapper .input-holder {
	height: 50px;
	width: 50px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0);
	border-radius: 6px;
	position: relative;
	transition: all 0.3s ease-in-out;
  }
  .search-wrapper.active .input-holder {
	width: 300px;
	border-radius: 50px;
	background: rgba(0, 0, 0, 0.5);
	transition: all 0.5s cubic-bezier(0, 0.105, 0.035, 1.57);
  }
  .search-wrapper .input-holder .search-input {
	width: 100%;
	height: 50px;
	padding: 0px 70px 15px 20px;
	opacity: 0;
	position: absolute;
	top: 0px;
	left: 0px;
	background: transparent;
	box-sizing: border-box;
	border: none;
	outline: none;
	font-family: "Open Sans", Arial, Verdana;
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	color: #fff;
	transform: translate(0, 60px);
	transition: all 0.3s cubic-bezier(0, 0.105, 0.035, 1.57);
	transition-delay: 0.3s;
  }
  .search-wrapper.active .input-holder .search-input {
	opacity: 1;
	transform: translate(0, 10px);
  }

  .search-icon {
	  height: 30px;
	  width: 30px;
  }
  .search-wrapper .input-holder .search-icon {
	width: 55px;
	height: 55px;
	border: none;
	border-radius: 6px;
	background: white;
	padding: 0px;
	outline: none;
	position: relative;
	z-index: 2;
	float: right;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
  }
  .search-wrapper.active .input-holder .search-icon {
	width: 40px;
	height: 40px;
	margin: 5px;
	/* padding-bottom: 4px; */
	border-radius: 30px;
  }
  
  
  
  .search-wrapper .input-holder .search-icon span {
	width: 18px;
	height: 18px;
	display: inline-block;
	vertical-align: middle;
	position: relative;
	transform: rotate(45deg);
	transition: all 0.4s cubic-bezier(0.65, -0.6, 0.24, 1.65);
  }
  .search-wrapper.active .input-holder .search-icon span {
	transform: rotate(-45deg);
  }
  .search-wrapper .input-holder .search-icon span::before,
  .search-wrapper .input-holder .search-icon span::after {
	position: absolute;
	content: "";
  }
  .search-wrapper .input-holder .search-icon span::before {
	width: 4px;
	height: 9px;
	left: 7px;
	top: 18px;
	
	border-radius: 2px;
	background: black;
  }
  .search-wrapper .input-holder .search-icon span::after {
	width: 19px;
	height: 19px;
	left: 0px;
	top: 0px;
	border-radius: 16px;
	border: 4px solid black;
  }
  .search-wrapper .close {
	position: absolute;
	z-index: 1;
	top: 15px;
	right: 20px;
	width: 25px;
	height: 25px;
	cursor: pointer;
	transform: rotate(-180deg);
	transition: all 0.3s cubic-bezier(0.285, -0.45, 0.935, 0.11);
	transition-delay: 0.2s;
  }
  .search-wrapper.active .close {
	right: -50px;
	transform: rotate(45deg);
	transition: all 0.6s cubic-bezier(0, 0.105, 0.035, 1.57);
	transition-delay: 0.5s;
  }
  .search-wrapper .close::before,
  .search-wrapper .close::after {
	position: absolute;
	content: "";
	background: black;
	border-radius: 2px;
  }
  .search-wrapper .close::before {
	width: 5px;
	height: 25px;
	left: 10px;
	top: 0px;
  }
  .search-wrapper .close::after {
	width: 25px;
	height: 5px;
	left: 0px;
	top: 10px;
  }
  
  ::placeholder { 
	  color: white;
  }
  
  /* This is all the footer styles */
  footer {
	  width: 100%;
	  background-color: #1a1a1a;
	  font-family: 'Montserrat', sans-serif;
  }

  .footer-top-bar {
	  height: 6px;
	  background-color: #ff0000;
  }

  .footer-container {
	  display: flex;
	  flex-direction: row;
	  justify-content: space-between;
	  max-width: 1400px;
	  margin: 0 auto;
	  padding: 60px 40px;
	  gap: 60px;
  }

  .footer-column {
	  flex: 1;
  }

  .footer-newsletter {
	  max-width: 350px;
  }

  .footer-about {
	  max-width: 450px;
  }

  .footer-contact {
	  max-width: 250px;
  }

  .footer-logo {
	  height: 70px;
	  width: auto;
	  margin-bottom: 20px;
  }

  .footer-heading {
	  color: #ffffff;
	  font-size: 18px;
	  font-weight: 700;
	  margin-bottom: 15px;
	  line-height: 1.4;
  }

  .footer-subtext {
	  color: #b0b0b0;
	  font-size: 14px;
	  line-height: 1.6;
	  margin-bottom: 20px;
  }

  .footer-para {
	  color: #b0b0b0;
	  font-size: 13px;
	  line-height: 1.7;
	  margin-bottom: 25px;
  }

  .learn-more-btn {
	  display: inline-block;
	  color: #1a1a1a;
	  background-color: #ffffff;
	  font-weight: 700;
	  font-size: 14px;
	  padding: 12px 25px;
	  border: none;
	  text-decoration: none;
	  cursor: pointer;
	  transition: all 0.2s ease-in-out;
  }

  .learn-more-btn:hover {
	  background-color: #ff0000;
	  color: #ffffff;
  }

  .contact-info {
	  display: flex;
	  flex-direction: row;
	  align-items: flex-start;
	  margin-bottom: 15px;
	  color: #b0b0b0;
	  font-size: 14px;
  }

  .contact-info i {
	  color: #ffffff;
	  margin-right: 15px;
	  margin-top: 3px;
	  width: 16px;
	  text-align: center;
  }

  .contact-info a,
  .contact-info p {
	  color: #b0b0b0;
	  text-decoration: none;
	  margin: 0;
	  line-height: 1.5;
  }

  .contact-info a:hover {
	  color: #ffffff;
  }

  /* MC4WP Form Styles in Footer */
  footer .mc4wp-form-fields,
  footer .mc4wp-form form,
  footer .mc4wp-form {
	  margin-bottom: 25px;
	  display: flex;
	  flex-wrap: nowrap;
	  width: 100%;
  }

  footer .mc4wp-form {
	  margin-bottom: 25px;
  }

  footer .mc4wp-form-fields {
	  margin-bottom: 0;
  }

  footer .mc4wp-form input[type="email"] {
	  background-color: #333;
	  border: 1px solid #444;
	  color: #ffffff;
	  padding: 14px 18px;
	  font-size: 14px;
	  flex: 1;
	  min-width: 0;
	  width: 100%;
	  box-sizing: border-box;
  }

  footer .mc4wp-form input[type="email"]::placeholder {
	  color: #777;
  }

  footer .mc4wp-form input[type="submit"],
  footer .mc4wp-form button {
	  background-color: #555;
	  border: none;
	  color: #ffffff;
	  padding: 14px 24px;
	  font-size: 14px;
	  font-weight: 600;
	  cursor: pointer;
	  transition: all 0.2s ease-in-out;
  }

  footer .mc4wp-form input[type="submit"]:hover,
  footer .mc4wp-form button:hover {
	  background-color: #ff0000;
  }

  /* Social icons - circle style */
  .social-circle-icons {
	  display: flex;
	  gap: 12px;
	  margin-top: 0;
	  width: 100%;
	  clear: both;
  }

  .social-circle-icons a {
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  width: 44px;
	  height: 44px;
	  border: 2px solid #b0b0b0;
	  border-radius: 50%;
	  color: #b0b0b0;
	  text-decoration: none;
	  font-size: 18px;
	  transition: all 0.2s ease-in-out;
  }

  .social-circle-icons a:hover {
	  border-color: #ff0000;
	  color: #ff0000;
  }

  .copyright {
	  background: #000;
	  text-align: center;
	  color: #fff;
	  font-size: 13px;
	  padding: 15px 0px;
  }

  /* TODO testing bg image  */
  .banner {
	position: relative;
	width: 100%;
	height: 100vh;
	background-color: darkgrey;
	background-size: cover;
  }
.mobile-menu{
	display: none;
}

/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

@media only screen and (max-width:960px) {

	
	.mobile-header-container{
		width:100%;
		background-color:#000;
		min-height:100px;
		display: inline-block;
		margin-top:-50px;
	}
	
	.mobile-menu{
	display: contents;
}
	
	
	.shiftnav-toggle-button {
    display: inline-block;
    padding: 10px 15px;
    background: #000;
    color: #FF0000;
    z-index: 100;
    position: relative;
	float: right;
}
	
	.logoMobile {
    height: 100px;
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin:0 auto;
    top: 0px;
}
	
	
	
ul.postsbycategory {
    display: inline;
    list-style: none;
	margin: 0% 5%;
}

li.postHome {
    width: 100%;
	margin: 10% 0%;
}

li.postHome:nth-of-type(even) {
    margin: 10% 0%;
}	

a.readMoreBtn {
    background: red;
    color: #FFF;
    padding: 20px 30px;
    margin-top: 25px;
}
	
.social-header-container {
    display: none;
}
	.nav-container{
		display: none;
	}

	/* Mobile Footer Styles */
	.footer-container {
		flex-direction: column;
		padding: 40px 20px;
		gap: 40px;
	}

	.footer-column {
		max-width: 100% !important;
		text-align: center;
	}

	.footer-newsletter {
		order: 1;
	}

	.footer-about {
		order: 2;
	}

	.footer-contact {
		order: 3;
	}

	.footer-logo {
		margin: 0 auto 20px auto;
		display: block;
	}

	.footer-para {
		width: 100%;
		margin: 0 auto 20px auto;
		text-align: center;
	}

	.contact-info {
		justify-content: center;
	}

	.social-circle-icons {
		justify-content: center;
	}

	footer .mc4wp-form {
		text-align: center;
	}

	footer .mc4wp-form input[type="email"] {
		max-width: 100%;
		margin-bottom: 10px;
		margin-right: 0;
	}
	
	/* Live Streams Mobile - Carousel */
	.homeNewStream {
		padding: 40px 20px;
	}

	.homeNewStreamHeader {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}

	.homeNewStreamHeader h2 {
		font-size: 24px;
	}

	.streamCardsTrack {
		gap: 15px;
	}

	.streamCard {
		flex: 0 0 100%;
		min-width: 100%;
	}

	.streamDots {
		display: flex;
	}

	.streamChannelLogo {
		height: 30px;
	}

	.streamChannelName {
		font-size: 13px;
	}

	.streamWatchLink {
		opacity: 1;
		font-size: 11px;
	}
	.livestreamPageEmbed {
    width: 100%;
    float: left;
    margin-top: 50px;
}
	.sidebar {
    float: left;
    width: 100%;
}

	.sidebar-widget {
    text-align: center;
    margin: 50px auto;
}
	.bodySidebar {
    width: 100%;
}
	ul.calendarList li {
		width: 100%;}

	.hero-content h1, .heroContentTraining h1{
	font-size: 10vw;
	text-align: center;}

.hero-content h3, .heroContentTraining h3 {
    font-size: 16px;
	text-align: center;}
}

.footer-nav {
	display: none;
}

/* ==========================================================================
   PROGRAM LANDING PAGE
   Single program page template styles
   ========================================================================== */

/* Program Hero */
.program-hero {
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover !important;
    background-position: center center !important;
}

.program-hero-content {
    max-width: 600px;
    padding: 50px 0;
}

.program-logo {
    max-width: 400px;
    height: auto;
    margin-bottom: 30px;
}

.program-description {
    color: #fff;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.program-description p {
    padding-bottom: 15px;
}

.watch-now-btn {
    display: inline-block;
    background-color: #e50000;
    color: #fff;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.watch-now-btn:hover {
    background-color: #c00000;
    color: #fff;
    transform: scale(1.05);
}

.watch-now-btn i {
    margin-right: 10px;
}

/* Tab Navigation */
.program-tabs-container {
    background-color: #000;
    border-bottom: 3px solid #e50000;
}

.program-tabs {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    gap: 0;
}

.tab-item {
    padding: 20px 40px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    margin-bottom: -3px;
}

.tab-item:hover {
    background-color: rgba(229, 0, 0, 0.1);
    color: #e50000;
}

.tab-item.active {
    border-bottom: 3px solid #e50000;
    background-color: rgba(229, 0, 0, 0.2);
    color: #fff;
}

/* Tab Content */
.program-tab-content {
    padding: 50px 0;
    min-height: 400px;
    background-color: #000;
    color: #fff;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Season Selector */
.season-selector {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.season-selector label {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.season-dropdown {
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    border: 3px solid #fff;
    border-radius: 50px;
    background-color: #000;
    color: #fff;
    cursor: pointer;
    min-width: 200px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="white" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 50px;
    transition: all 0.3s ease;
}

.season-dropdown:hover {
    background-color: #1a1a1a;
    border-color: #e50000;
}

.season-dropdown:focus {
    outline: none;
    border-color: #e50000;
    box-shadow: 0 0 0 3px rgba(229, 0, 0, 0.2);
}

/* Episodes List */
.episodes-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.episode-item {
    display: flex;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #333;
}

.episode-item:last-child {
    border-bottom: none;
}

.episode-thumbnail {
    flex-shrink: 0;
    width: 300px;
    height: auto;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.episode-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.3s ease;
}

.episode-thumbnail:hover {
    box-shadow: 0 0 0 4px #fff;
    transform: scale(1.02);
}

.episode-thumbnail:hover img {
    transform: scale(1.05);
}

.episode-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.episode-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.episode-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.episode-title a:hover {
    color: #e50000;
}

.episode-meta {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 15px;
}

.episode-meta .separator {
    margin: 0 10px;
}

.episode-description {
    font-size: 16px;
    line-height: 1.6;
    color: #ccc;
}

.episode-description p {
    padding-bottom: 10px;
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin-top: 40px;
}

.load-more-btn {
    padding: 15px 50px;
    background-color: #e50000;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background-color: #c00000;
    transform: scale(1.05);
}

.load-more-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Clips & Specials Tab */
.clips-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.clip-type-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #e50000;
    color: #fff;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 3px;
    z-index: 1;
}

.load-more-clips-btn {
    padding: 15px 50px;
    background-color: #e50000;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-clips-btn:hover {
    background-color: #c00000;
    transform: scale(1.05);
}

.load-more-clips-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.load-more-clips-container {
    text-align: center;
    margin-top: 40px;
}

/* About Tab */
.about-content-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.about-left {
    flex: 1;
}

.about-right {
    width: 350px;
    flex-shrink: 0;
}

.about-logo {
    margin-bottom: 30px;
}

.about-logo img {
    max-width: 300px;
    height: auto;
    display: block;
}

.about-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
}

.how-to-watch-content {
    font-size: 16px;
    line-height: 1.8;
    color: #ccc;
}

.how-to-watch-content p {
    margin-bottom: 30px;
}

.how-to-watch-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.watch-link {
    color: #fff;
    text-decoration: underline;
    font-size: 16px;
    transition: color 0.3s ease;
    display: inline-block;
}

.watch-link:hover {
    color: #e50000;
}

.watch-link i {
    font-size: 14px;
    margin-left: 5px;
}

.share-section h3 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.genre-tags {
    margin-bottom: 30px;
}

.genre-tag {
    display: inline-block;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #999;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    margin-right: 10px;
    margin-bottom: 10px;
}

.share-buttons {
    display: flex;
    gap: 15px;
}

.share-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #fff;
    background-color: transparent;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-btn:hover {
    background-color: #fff;
    color: #000;
    transform: scale(1.1);
}

/* Embed Modal */
.embed-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.embed-modal-content {
    background-color: #222;
    padding: 30px;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
}

.embed-modal-content h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 20px;
}

.embed-modal-content textarea {
    width: 100%;
    height: 100px;
    padding: 15px;
    border: 2px solid #444;
    border-radius: 5px;
    background-color: #333;
    color: #fff;
    font-family: monospace;
    font-size: 14px;
    resize: vertical;
    margin-bottom: 20px;
}

.embed-modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.embed-modal-buttons button {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-embed-btn {
    background-color: #e50000;
    color: #fff;
}

.copy-embed-btn:hover {
    background-color: #c00000;
}

.close-embed-btn {
    background-color: #444;
    color: #fff;
}

.close-embed-btn:hover {
    background-color: #555;
}

/* Recommendations Tab - Stacked List Cards */
.rec-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 10px 0;
}

.rec-list-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 20px;
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    transition: all 0.3s ease;
}

.rec-list-item:hover {
    border-color: rgba(227, 24, 55, 0.4);
    box-shadow: 0 8px 25px rgba(227, 24, 55, 0.15);
    transform: translateX(5px);
}

.rec-list-logo {
    flex-shrink: 0;
    width: 100px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 10px;
}

.rec-list-logo img {
    max-width: 100%;
    max-height: 50px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.rec-list-item:hover .rec-list-logo img {
    transform: scale(1.05);
}

.rec-list-logo .rec-list-name {
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    line-height: 1.2;
}

.rec-list-content {
    flex: 1;
    min-width: 0;
}

.rec-list-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 6px 0;
    padding: 0;
    line-height: 1.3;
}

.rec-list-content p {
    font-size: 13px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    padding: 0;
}

.rec-list-action {
    flex-shrink: 0;
}

.rec-list-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #e31837 0%, #c41230 100%);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.rec-list-item:hover .rec-list-btn {
    background: linear-gradient(135deg, #ff1f43 0%, #e31837 100%);
}

.rec-list-btn i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.rec-list-item:hover .rec-list-btn i {
    transform: translateX(3px);
}

.no-recommendations {
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    padding: 40px 20px;
    font-size: 15px;
}

/* Mobile responsive for recommendation list */
@media only screen and (max-width: 768px) {
    .rec-list {
        gap: 12px;
    }

    .rec-list-item {
        flex-wrap: wrap;
        padding: 15px;
        gap: 15px;
    }

    .rec-list-logo {
        width: 80px;
        height: 60px;
    }

    .rec-list-logo img {
        max-height: 40px;
    }

    .rec-list-content {
        flex: 1 1 calc(100% - 100px);
    }

    .rec-list-content h4 {
        font-size: 15px;
    }

    .rec-list-content p {
        font-size: 12px;
    }

    .rec-list-action {
        width: 100%;
    }

    .rec-list-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }
}

@media only screen and (max-width: 480px) {
    .rec-list-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .rec-list-logo {
        width: 100%;
        height: 80px;
    }

    .rec-list-content {
        width: 100%;
    }
}

/* Additional Visual Composer Content Section */
.additional-content {
    background-color: #fff;
    padding: 0;
}

.additional-content .wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Episode Modal Styles */
.episode-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    overflow-y: auto;
    padding: 20px 0;
}

.episode-modal-overlay.active {
    display: block;
}

.episode-modal-container {
    max-width: 1400px;
    margin: 0 auto;
    background: #000;
    position: relative;
}

.episode-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.episode-modal-close:hover {
    background: #e50000;
    transform: rotate(90deg);
}

.episode-video-section {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
}

.episode-video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.episode-video-player iframe {
    width: 100%;
    height: 100%;
}

.episode-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    z-index: 10;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.episode-video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.episode-overlay-logo {
    max-width: 300px;
    margin-bottom: 30px;
}

.episode-overlay-logo img {
    max-width: 100%;
    height: auto;
}

.episode-overlay-title {
    font-weight: 700;
    color: #fff;
    margin: 0 0 15px 0;
    max-width: 700px;
}

.episode-overlay-meta {
    font-size: 18px;
    color: #fff;
    margin: 0 0 20px 0;
    display: flex;
    gap: 15px;
    align-items: center;
}

.episode-overlay-meta .separator {
    color: #e50000;
}

.episode-overlay-description {
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
    margin: 0;
    max-width: 700px;
}

.episode-play-icon {
    width: 80px;
    height: 80px;
    background: rgba(229, 0, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0 0 0;
    transition: all 0.3s ease;
}

.episode-play-icon i {
    font-size: 32px;
    color: #fff;
    margin-left: 5px;
}

.episode-video-overlay:hover .episode-play-icon {
    background: #e50000;
    transform: scale(1.1);
}

.episode-modal-content {
    background: #000;
    padding: 40px 60px;
}

.episode-modal-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #333;
    margin-bottom: 40px;
}

.episode-tab-item {
    padding: 15px 30px;
    background: transparent;
    border: none;
    color: #999;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.episode-tab-item:hover {
    color: #fff;
}

.episode-tab-item.active {
    color: #fff;
    border-bottom-color: #e50000;
}

.episode-tab-content {
    display: none;
    color: #fff;
}

.episode-tab-content.active {
    display: block;
}

/* Single Episode Page Styles - Match Modal */
.episode-page-container {
    background: #000;
    min-height: 100vh;
}

.episode-page-content {
    background: #000;
    padding: 40px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.episode-page-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #333;
    margin-bottom: 40px;
}

.episode-about-section h2 {
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px 0;
}

.episode-about-logo {
    margin-bottom: 30px;
}

.episode-about-logo img {
    max-width: 250px;
    height: auto;
}

.episode-about-meta {
    font-size: 16px;
    color: #999;
    margin: 0 0 30px 0;
    display: flex;
    gap: 15px;
}

.episode-about-description {
    font-size: 18px;
    line-height: 1.8;
    color: #fff;
    margin: 0 0 40px 0;
}

.episode-watch-section h3 {
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px 0;
}

.now-playing-badge {
    display: inline-block;
    background: #e50000;
    color: #fff;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-left: 10px;
}

/* Responsive Styles */
@media only screen and (max-width: 768px) {
    .program-hero {
        min-height: 400px;
    }

    .program-logo {
        max-width: 250px;
    }

    .program-description {
        font-size: 16px;
    }

    .watch-now-btn {
        padding: 12px 30px;
        font-size: 16px;
    }

    .program-tabs {
        flex-wrap: wrap;
        justify-content: center;
    }

    .tab-item {
        padding: 15px 20px;
        font-size: 14px;
    }

    .episode-item {
        flex-direction: column;
        gap: 20px;
    }

    .episode-thumbnail {
        width: 100%;
    }

    .episode-title {
        font-size: 20px;
    }

    .load-more-btn {
        padding: 12px 40px;
        font-size: 14px;
    }
}

@media only screen and (max-width: 480px) {
    .program-hero {
        min-height: 300px;
    }

    .program-logo {
        max-width: 200px;
    }

    .program-description {
        font-size: 14px;
    }

    .watch-now-btn {
        padding: 10px 25px;
        font-size: 14px;
    }

    .tab-item {
        padding: 12px 15px;
        font-size: 13px;
    }

    .episode-title {
        font-size: 18px;
    }

    .episode-description {
        font-size: 14px;
    }
}

/*------------------------------------*\
    HOMEPAGE - ORIGINAL PROGRAMS SECTION
\*------------------------------------*/

.homeOriginalPrograms {
    padding: 60px 0;
    background: #1a1a1a;
}

.homeOriginalPrograms .wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.originalProgramsHeader {
    flex: 0 0 250px;
    color: #fff;
}

.originalProgramsHeader h2 {
    color: #fff;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 10px;
    line-height: 1.1;
}

.originalProgramsHeader p {
    color: #999;
    padding-bottom: 0;
    margin-bottom: 25px;
}

.programsCTA {
    display: inline-block;
    background: #e31837;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.programsCTA:hover {
    background: #c01530;
    color: #fff;
}

.programsCTA i {
    margin-left: 8px;
}

.originalProgramsScroll {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.originalProgramsTrack {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.originalProgramCard {
    flex: 0 0 calc(25% - 15px);
    display: block;
    position: relative;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.originalProgramCard:hover {
    transform: scale(1.05);
    z-index: 10;
}

.originalProgramCard:hover .programCardGlow {
    opacity: 1;
}

.originalProgramCard:hover .programCardInner {
    background: linear-gradient(135deg, #333 0%, #222 100%);
}

.originalProgramCard:hover .programCardLogo {
    transform: scale(1.08);
    filter: brightness(1.1);
}

.programCardInner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    transition: background 0.4s ease;
}

.programCardGlow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #e31837 0%, #ff4d6a 50%, #e31837 100%);
    border-radius: 14px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    filter: blur(8px);
}

.programCardLogo {
    max-height: 70px;
    max-width: 85%;
    object-fit: contain;
    transition: transform 0.4s ease, filter 0.4s ease;
    filter: brightness(1);
}

.programCardInner h3 {
    color: #fff;
    font-weight: 600;
    text-align: center;
    margin: 0;
    transition: transform 0.4s ease;
}

.originalProgramCard:hover .programCardInner h3 {
    transform: scale(1.05);
}

.noPrograms {
    color: #999;
    text-align: center;
    padding: 40px;
    width: 100%;
}

.programsDots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.programsDot {
    width: 30px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.programsDot.active {
    background: #e31837;
}

.programsDot:hover {
    background: rgba(255, 255, 255, 0.5);
}

@media only screen and (max-width: 1024px) {
    .homeOriginalPrograms .wrapper {
        flex-direction: column;
    }

    .originalProgramsHeader {
        flex: none;
        text-align: center;
        width: 100%;
    }

    .originalProgramCard {
        flex: 0 0 calc(33.333% - 13.333px);
    }
}

@media only screen and (max-width: 768px) {
    .homeOriginalPrograms {
        padding: 40px 20px;
    }

    .homeOriginalPrograms .wrapper {
        padding: 0;
    }

    .originalProgramsHeader p {
        font-size: 16px;
    }

    .originalProgramsScroll {
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .originalProgramsTrack {
        gap: 15px;
    }

    .originalProgramCard {
        flex: 0 0 100%;
        min-width: 100%;
        aspect-ratio: 16 / 9;
    }

    .programCardLogo {
        max-height: 120px;
        max-width: 90%;
    }

    .programCardInner {
        padding: 25px;
    }

    .programsDots {
        margin-top: 20px;
    }

    .programsDot {
        width: 20px;
    }
}

@media only screen and (max-width: 480px) {
    .programCardInner h3 {
        font-size: 20px;
    }
}

/*------------------------------------*\
    HOMEPAGE - UPCOMING TRAININGS SECTION
\*------------------------------------*/

.homeUpcomingTrainings {
    background: #e31837;
    padding: 60px 0;
    border-radius: 20px;
    margin: 40px auto;
    max-width: 95%;
}

.trainingsContent {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.trainingsHeader {
    flex: 0 0 250px;
    color: #fff;
}

.trainingsHeader h2 {
    font-weight: 700;
    font-style: italic;
    margin-bottom: 10px;
    line-height: 1.1;
}

.trainingsHeader p {
    opacity: 0.9;
    margin-bottom: 25px;
    padding-bottom: 0;
}

.trainingsCTA {
    display: inline-block;
    background: #fff;
    color: #e31837;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.trainingsCTA:hover {
    background: #f5f5f5;
    color: #c01530;
}

.trainingsCTA i {
    margin-left: 8px;
}

.trainingsCarousel {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.trainingsCarouselTrack {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.trainingCard {
    flex: 0 0 calc(25% - 15px);
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trainingCard:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.trainingCardHeader {
    background: #d9d9d9;
    padding: 25px 20px;
    min-height: 120px;
}

.trainingIcon {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
}

.trainingCardHeader h3 {
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 1.3;
}

.trainingCardBody {
    padding: 20px;
    flex: 1;
    background: #fff;
}

.trainingMeta {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #555;
}

.trainingMeta:last-child {
    margin-bottom: 0;
}

.metaIcon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    color: #333;
    font-size: 14px;
}

i.metaIcon {
    width: 18px;
    text-align: center;
}

.trainingCardBtn {
    display: block;
    background: #333;
    color: #fff;
    text-align: center;
    padding: 15px 20px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}

.trainingCardBtn:hover {
    background: #555;
    color: #fff;
}

.carouselDots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.carouselDot {
    width: 30px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.carouselDot.active {
    background: #fff;
}

.carouselDot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.noTrainings {
    color: #fff;
    font-size: 18px;
    text-align: center;
    padding: 40px;
}

@media only screen and (max-width: 1200px) {
    .trainingCard {
        flex: 0 0 calc(33.333% - 13.333px);
    }
}

@media only screen and (max-width: 1024px) {
    .trainingsContent {
        flex-direction: column;
    }

    .trainingsHeader {
        flex: none;
        text-align: center;
        width: 100%;
    }

    .trainingCard {
        flex: 0 0 calc(50% - 10px);
    }
}

@media only screen and (max-width: 768px) {
    .homeUpcomingTrainings {
        padding: 40px 20px;
        margin: 20px 0;
        max-width: none;
        width: 100%;
        border-radius: 0;
        overflow: hidden;
    }

    .homeUpcomingTrainings .wrapper {
        padding: 0;
        max-width: 100%;
        width: 100%;
    }

    .trainingsContent {
        flex-direction: column;
        gap: 30px;
    }

    .trainingsHeader {
        flex: none;
        text-align: center;
        width: 100%;
    }

    .trainingsHeader h2 {
        font-size: 28px;
    }

    .trainingsCarousel {
        width: 100%;
        overflow: hidden;
    }

    .trainingsCarouselTrack {
        gap: 0;
    }

    .trainingCard {
        flex: 0 0 100%;
        min-width: 100%;
        margin: 0;
    }
}

@media only screen and (max-width: 480px) {
    .homeUpcomingTrainings {
        padding: 30px 15px;
        margin: 15px 0;
    }

    .trainingsHeader h2 {
        font-size: 24px;
    }

    .trainingsHeader p {
        font-size: 16px;
    }

    .trainingCardHeader {
        padding: 20px 15px;
        min-height: auto;
    }

    .trainingCardHeader h3 {
        font-size: 16px;
    }

    .trainingCardBody {
        padding: 15px;
    }

    .trainingCardBtn {
        padding: 12px 15px;
    }

    .carouselDots {
        gap: 6px;
        margin-top: 20px;
    }

    .carouselDot {
        width: 20px;
    }
}

/* ==========================================================================
   MEMBERSHIP BENTO GRID
   Home page membership section with bento-style layout
   ========================================================================== */

.membershipBento {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    position: relative;
    overflow: hidden;
}

.membershipBento::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(227, 24, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(227, 24, 55, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.bentoHeader {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.bentoHeader h2 {
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.bentoHeader p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    padding: 0;
    max-width: 500px;
    margin: 0 auto;
}

.bentoGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 25px;
    position: relative;
    z-index: 1;
}

.bentoCard {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 35px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
}

.bentoCard:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(227, 24, 55, 0.3);
}

.bentoCard--large {
    grid-column: span 1;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(145deg, rgba(227, 24, 55, 0.15) 0%, rgba(227, 24, 55, 0.05) 100%);
    border-color: rgba(227, 24, 55, 0.2);
}

.bentoCard--large:hover {
    background: linear-gradient(145deg, rgba(227, 24, 55, 0.2) 0%, rgba(227, 24, 55, 0.1) 100%);
    border-color: rgba(227, 24, 55, 0.4);
}

.bentoCard--wide {
    grid-column: span 2;
}

.bentoCardIcon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e31837 0%, #c41230 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(227, 24, 55, 0.3);
}

.bentoCard:hover .bentoCardIcon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 15px 40px rgba(227, 24, 55, 0.4);
}

.bentoCardIcon i {
    font-size: 28px;
    color: #ffffff;
}

.bentoCard--large .bentoCardIcon {
    width: 90px;
    height: 90px;
}

.bentoCard--large .bentoCardIcon i {
    font-size: 36px;
}

.bentoCard h3 {
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.bentoCard p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.bentoCardGlow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(227, 24, 55, 0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.bentoCard:hover .bentoCardGlow {
    opacity: 1;
}

.bentoCTA {
    text-align: center;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.bentoCTABtn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #e31837 0%, #c41230 100%);
    color: #ffffff !important;
    font-size: 18px;
    font-weight: 700;
    padding: 18px 40px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(227, 24, 55, 0.4);
}

.bentoCTABtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(227, 24, 55, 0.5);
    color: #ffffff !important;
}

.bentoCTABtn i {
    transition: transform 0.3s ease;
}

.bentoCTABtn:hover i {
    transform: translateX(5px);
}

/* Membership Bento Tablet */
@media only screen and (max-width: 1024px) {
    .bentoGrid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .bentoCard--large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .bentoCard--wide {
        grid-column: span 2;
    }

}

/* Membership Bento Mobile */
@media only screen and (max-width: 768px) {
    .membershipBento {
        padding: 60px 0;
    }

    .bentoHeader {
        margin-bottom: 35px;
    }

    .bentoGrid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bentoCard--large,
    .bentoCard--wide {
        grid-column: span 1;
    }

    .bentoCard {
        padding: 30px;
    }

    .bentoCardIcon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .bentoCardIcon i {
        font-size: 24px;
    }

    .bentoCard--large .bentoCardIcon {
        width: 70px;
        height: 70px;
    }

    .bentoCard--large .bentoCardIcon i {
        font-size: 28px;
    }

    .bentoCTA {
        margin-top: 35px;
    }

    .bentoCTABtn {
        font-size: 16px;
        padding: 15px 30px;
    }
}

@media only screen and (max-width: 480px) {
    .membershipBento {
        padding: 40px 0;
    }

    .bentoCard {
        padding: 25px;
    }

    .bentoCTABtn {
        font-size: 14px;
        padding: 14px 25px;
        gap: 10px;
    }
}

/*------------------------------------*\
    DISCOVER SECTION
\*------------------------------------*/

.discoverSection {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.discoverHeader {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.discoverHeader h2 {
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.discoverHeader p {
    color: #666;
    line-height: 1.7;
    margin: 0;
    padding: 0;
}

.discoverCards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.discoverCard {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    text-decoration: none;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.discoverCard:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(227, 24, 55, 0.15);
    border-color: transparent;
}

.discoverCardBg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(227, 24, 55, 0.03) 0%, rgba(227, 24, 55, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.discoverCard:hover .discoverCardBg {
    opacity: 1;
}

.discoverCardIcon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fff5f7 0%, #ffe8ec 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.discoverCard:hover .discoverCardIcon {
    background: linear-gradient(135deg, #e31837 0%, #c41230 100%);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 30px rgba(227, 24, 55, 0.3);
}

.discoverCardIcon i {
    font-size: 32px;
    color: #e31837;
    transition: all 0.4s ease;
}

.discoverCard:hover .discoverCardIcon i {
    color: #ffffff;
}

.discoverCard h3 {
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 12px 0;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.discoverCard:hover h3 {
    color: #e31837;
}

.discoverCard p {
    color: #666;
    margin: 0 0 20px 0;
    padding: 0;
    position: relative;
    z-index: 1;
    line-height: 1.5;
}

.discoverCardArrow {
    width: 45px;
    height: 45px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.discoverCard:hover .discoverCardArrow {
    background: #e31837;
    transform: translateX(5px);
}

.discoverCardArrow i {
    font-size: 16px;
    color: #e31837;
    transition: all 0.3s ease;
}

.discoverCard:hover .discoverCardArrow i {
    color: #ffffff;
}

/* Discover Section Tablet */
@media only screen and (max-width: 1024px) {
    .discoverCards {
        gap: 20px;
    }

    .discoverCard {
        padding: 35px 25px;
    }

    .discoverCardIcon {
        width: 70px;
        height: 70px;
    }

    .discoverCardIcon i {
        font-size: 28px;
    }

}

/* Discover Section Mobile */
@media only screen and (max-width: 768px) {
    .discoverSection {
        padding: 60px 0;
    }

    .discoverHeader {
        margin-bottom: 35px;
    }

    .discoverCards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .discoverCard {
        padding: 30px 25px;
    }

    .discoverCardIcon {
        width: 65px;
        height: 65px;
        margin-bottom: 20px;
    }

    .discoverCardIcon i {
        font-size: 26px;
    }

    .discoverCardArrow {
        width: 40px;
        height: 40px;
    }
}

@media only screen and (max-width: 480px) {
    .discoverSection {
        padding: 40px 0;
    }

    .discoverCard {
        padding: 25px 20px;
    }
}

/*------------------------------------*\
    CURRICULUM PAGE STYLES
\*------------------------------------*/

.curriculumPageLayout {
    display: flex;
    gap: 40px;
    padding: 40px 0;
}

/* Filter Sidebar */
.curriculumFilters {
    flex: 0 0 280px;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    height: fit-content;
    position: sticky;
    top: 120px;
}

.filterTitle {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

.filterGroup {
    margin-bottom: 25px;
}

.filterGroupTitle {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filterGroupToggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 10px 0;
    margin: 0;
    border-bottom: 1px solid #ddd;
    transition: color 0.2s ease;
}

.filterGroupToggle:hover {
    color: #e31837;
}

.filterToggleIcon {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.filterGroupToggle.collapsed .filterToggleIcon {
    transform: rotate(180deg);
}

.filterCollapsible {
    padding-top: 12px;
}

.filterSelect {
    width: 100%;
    padding: 12px 15px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    color: #333;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.filterSelect:focus {
    outline: none;
    border-color: #e31837;
}

.filterCheckboxes {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filterCheckbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #444;
}

.filterCheckbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #e31837;
    cursor: pointer;
}

.filterCheckbox span {
    flex: 1;
}

.resetFiltersBtn {
    width: 100%;
    padding: 12px 20px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
    margin-top: 10px;
}

.resetFiltersBtn:hover {
    background: #e31837;
}

/* Curriculum Content Area */
.curriculumContent {
    flex: 1;
    min-width: 0;
}

.curriculumResultsInfo {
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
}

/* Curriculum Grid - 3-4 cards per row */
.curriculumGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.curriculumGrid .trainingCard {
    flex: none;
    width: 100%;
}

.curriculumGrid .trainingCard.hidden {
    display: none;
}

.curriculumGrid .trainingCard.filtered-out {
    display: none;
}

/* Training Cost Meta */
.trainingCost {
    margin-top: 5px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.trainingCost span {
    font-weight: 600;
    color: #e31837;
}

/* Load More Button */
.loadMoreContainer {
    text-align: center;
    margin-top: 40px;
}

.loadMoreBtn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: #e31837;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.loadMoreBtn:hover {
    background: #c41430;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(227, 24, 55, 0.3);
}

.loadMoreCount {
    font-weight: 400;
    font-size: 14px;
    opacity: 0.9;
}

/* No Trainings Message */
.curriculumGrid .noTrainings {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 40px;
    background: #f8f9fa;
    border-radius: 12px;
}

.curriculumGrid .noTrainings p {
    font-size: 18px;
    color: #666;
    margin: 0;
    padding: 0;
}

/* Responsive Styles for Curriculum Page */
@media only screen and (max-width: 1400px) {
    .curriculumGrid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media only screen and (max-width: 1100px) {
    .curriculumGrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .curriculumFilters {
        flex: 0 0 250px;
    }
}

@media only screen and (max-width: 900px) {
    .curriculumPageLayout {
        flex-direction: column;
    }

    .curriculumFilters {
        position: static;
        width: 100%;
    }

    .curriculumGrid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 600px) {
    .curriculumGrid {
        grid-template-columns: 1fr;
    }

    .curriculumFilters {
        padding: 20px;
    }

    .filterTitle {
        font-size: 18px;
    }

    .loadMoreBtn {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   SINGLE TRAINING PAGE
   Individual training/course page template
   ========================================================================== */

.single-training-page {
    background: #f8f8f8;
}

/* Training Hero Section */
.training-hero {
    min-height: 400px;
    display: flex;
    align-items: center;
    padding: 80px 0;
    background: #000;
}

.training-hero-content {
    max-width: 100%;
}

.training-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(237, 28, 36, 0.9);
    color: #fff;
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.training-type-badge .badge-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.training-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 30px 0;
    line-height: 1.1;
    text-transform: uppercase;
}

.training-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.training-hero-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 16px;
}

.training-hero-meta .meta-item i {
    color: #ed1c24;
    font-size: 18px;
}

/* Training Hero Price */
.training-hero-price {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ed1c24;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 20px;
    font-weight: 700;
    margin-top: 25px;
}

.training-hero-price i {
    font-size: 18px;
}

/* Training Content Section */
.training-content-section {
    padding: 60px 0;
    background: #fff;
}

.training-details-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}

.training-description h2 {
    font-size: 2rem;
    color: #222;
    margin: 0 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 3px solid #ed1c24;
}

.description-content {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 40px;
}

.description-content p {
    margin-bottom: 15px;
}

/* Quick Info Box */
.training-quick-info {
    background: #f8f8f8;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
}

.training-quick-info h3 {
    font-size: 1.25rem;
    color: #222;
    margin: 0 0 20px 0;
}

.quick-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 15px;
    color: #444;
}

.quick-info-list li:last-child {
    border-bottom: none;
}

.quick-info-list li i {
    color: #ed1c24;
    font-size: 18px;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.quick-info-list li strong {
    color: #222;
    margin-right: 5px;
}

/* Training CTA */
.training-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.register-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ed1c24;
    color: #fff;
    padding: 16px 32px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.register-btn:hover {
    background: #c41820;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(237, 28, 36, 0.4);
}

.training-cta .share-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.training-cta .share-section span {
    color: #666;
    font-weight: 500;
}

/* Training Image Sidebar */
.training-image-sidebar {
    position: sticky;
    top: 30px;
}

.training-featured-image {
    position: relative;
    margin-bottom: 30px;
}

.training-featured-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.training-featured-image .image-decoration {
    position: absolute;
    width: 60px;
    height: 60px;
    background: #ed1c24;
    border-radius: 50%;
}

.training-featured-image .image-decoration.top-right {
    top: -15px;
    right: -15px;
}

.training-featured-image .image-decoration.bottom-left {
    bottom: -15px;
    left: -15px;
}

/* Sidebar Info */
.training-sidebar-info {
    background: #222;
    border-radius: 12px;
    padding: 25px;
}

.sidebar-info-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #444;
}

.sidebar-info-item:last-child {
    border-bottom: none;
}

.sidebar-info-item .info-icon {
    width: 40px;
    height: 40px;
    background: #ed1c24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sidebar-info-item .info-icon i {
    color: #fff;
    font-size: 16px;
}

.sidebar-info-item .info-content {
    color: #fff;
}

.sidebar-info-item .info-content strong {
    display: block;
    font-size: 14px;
    color: #ed1c24;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.sidebar-info-item .info-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.sidebar-info-item .info-content a {
    color: #fff;
    text-decoration: none;
}

.sidebar-info-item .info-content a:hover {
    color: #ed1c24;
}

/* Related Trainings Section */
.related-trainings-section {
    padding: 60px 0 80px;
    background: #f8f8f8;
}

.related-trainings-section h2 {
    font-size: 2rem;
    color: #222;
    margin: 0 0 40px 0;
    text-align: center;
}

.related-trainings-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.related-training-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.related-training-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #ed1c24;
}

.related-card-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.related-card-header .related-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.related-card-header h3 {
    font-size: 1rem;
    color: #222;
    margin: 0;
    line-height: 1.4;
}

.related-card-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.related-card-meta span {
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
}

.related-card-meta span i {
    color: #ed1c24;
    font-size: 12px;
    width: 16px;
}

/* View All Trainings */
.view-all-trainings {
    text-align: center;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #ed1c24;
    padding: 14px 30px;
    border: 2px solid #ed1c24;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: #ed1c24;
    color: #fff;
}

.view-all-btn i {
    transition: transform 0.3s ease;
}

.view-all-btn:hover i {
    transform: translateX(5px);
}

/* Single Training Responsive Styles */
@media only screen and (max-width: 1200px) {
    .training-details-grid {
        grid-template-columns: 1fr 350px;
        gap: 40px;
    }

    .related-trainings-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media only screen and (max-width: 992px) {
    .training-hero h1 {
        font-size: 2.5rem;
    }

    .training-details-grid {
        grid-template-columns: 1fr;
    }

    .training-image-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .related-trainings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 768px) {
    .training-hero {
        min-height: 350px;
        padding: 60px 0;
    }

    .training-hero h1 {
        font-size: 2rem;
    }

    .training-hero-meta {
        flex-direction: column;
        gap: 12px;
    }

    .training-content-section {
        padding: 40px 0;
    }

    .training-image-sidebar {
        grid-template-columns: 1fr;
    }

    .training-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .register-btn {
        width: 100%;
        justify-content: center;
    }

    .related-trainings-grid {
        grid-template-columns: 1fr;
    }

    .related-trainings-section h2 {
        font-size: 1.5rem;
    }
}

@media only screen and (max-width: 480px) {
    .training-hero h1 {
        font-size: 1.75rem;
    }

    .training-type-badge {
        font-size: 12px;
        padding: 6px 12px;
    }

    .training-description h2 {
        font-size: 1.5rem;
    }

    .training-quick-info {
        padding: 20px;
    }
}

/* ==========================================================================
   STREAM PAGE (TV19/TV21)
   Live stream channel page template styles
   ========================================================================== */

.stream-page {
    background-color: #f8f8f8;
}

/* Stream Hero */
.stream-hero {
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 50px 0;
    overflow: hidden;
}

.stream-hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-grid-line {
    position: absolute;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(227, 25, 55, 0.3), transparent);
}

.hero-grid-line:nth-child(1) { left: 25%; }
.hero-grid-line:nth-child(2) { left: 50%; }
.hero-grid-line:nth-child(3) { left: 75%; }

.hero-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(227, 25, 55, 0.2);
}

.hero-circle-1 {
    width: 400px;
    height: 400px;
    right: -100px;
    top: -150px;
}

.hero-circle-2 {
    width: 200px;
    height: 200px;
    right: 50px;
    bottom: -50px;
    border-color: rgba(227, 25, 55, 0.15);
}

.stream-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.stream-channel-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.channel-dot {
    width: 8px;
    height: 8px;
    background: #e31937;
    border-radius: 50%;
}

.stream-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.livestream-page .stream-hero h1::first-line {
    color: #e31937;
}

.stream-hero-subtitle {
    font-size: 20px;
    color: #fff;
    margin: 0 0 25px 0;
    padding: 0;
    font-weight: 400;
}

.stream-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.stream-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e31937;
    color: #fff;
    padding: 10px 18px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: pulse-live 1.5s infinite;
}

.stream-info-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 10px 18px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.stream-info-badge i {
    color: #e31937;
}

@keyframes pulse-live {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(0.85);
    }
}

/* Stream Breadcrumbs */
.stream-breadcrumbs {
    background: #e31937;
    padding: 12px 0;
}

.stream-breadcrumbs #breadcrumbs {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
}

.stream-breadcrumbs #breadcrumbs a {
    color: #fff;
    font-weight: normal;
}

.stream-breadcrumbs #breadcrumbs a:hover {
    text-decoration: underline;
}

.stream-breadcrumbs .breadcrumb_last {
    color: #fff;
    font-weight: 600;
}

/* ==========================================================================
   Standard Page Hero (Modern Style)
   ========================================================================== */

.standard-page,
.sidebar-page {
    background-color: #f8f8f8;
}

/* Page Hero Modern */
.page-hero-modern {
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 50px 0;
    overflow: hidden;
}

.page-hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.page-hero-modern .hero-grid-line {
    position: absolute;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(227, 25, 55, 0.3), transparent);
}

.page-hero-modern .hero-grid-line:nth-child(1) { left: 25%; }
.page-hero-modern .hero-grid-line:nth-child(2) { left: 50%; }
.page-hero-modern .hero-grid-line:nth-child(3) { left: 75%; }

.page-hero-modern .hero-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(227, 25, 55, 0.2);
}

.page-hero-modern .hero-circle-1 {
    width: 400px;
    height: 400px;
    right: -100px;
    top: -150px;
}

.page-hero-modern .hero-circle-2 {
    width: 200px;
    height: 200px;
    right: 50px;
    bottom: -50px;
    border-color: rgba(227, 25, 55, 0.15);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.page-hero-modern h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.page-hero-subtitle {
    font-size: 20px;
    color: #fff;
    margin: 0;
    padding: 0;
    font-weight: 400;
    max-width: 600px;
}

/* Page Breadcrumbs */
.page-breadcrumbs {
    background: #e31937;
    padding: 12px 0;
}

.page-breadcrumbs #breadcrumbs {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
}

.page-breadcrumbs #breadcrumbs a {
    color: #fff;
    font-weight: normal;
}

.page-breadcrumbs #breadcrumbs a:hover {
    text-decoration: underline;
}

.page-breadcrumbs .breadcrumb_last {
    color: #fff;
    font-weight: 600;
}

/* Page Content Section */
.page-content-section {
    padding: 50px 0;
    background: #fff;
}

.page-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.page-edit-link {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.page-edit-link a {
    color: #e31937;
    font-size: 14px;
}

/* Sidebar Layout */
.sidebar-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
    align-items: start;
}

.sidebar-main-content {
    min-width: 0;
}

.sidebar-column {
    min-width: 0;
}

/* Responsive for Modern Page Hero */
@media only screen and (max-width: 768px) {
    .page-hero-modern {
        padding: 40px 0;
        min-height: auto;
    }

    .page-hero-modern h1 {
        font-size: 2.2rem;
    }

    .page-hero-subtitle {
        font-size: 16px;
    }

    .sidebar-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sidebar-column {
        order: 2;
    }
}

/* Stream Content Section */
.stream-content-section {
    padding: 50px 0;
    background: #fff;
}

.stream-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

/* Stream Player */
.stream-player-column {
    min-width: 0;
}

.stream-player-container {
    background: #0a0a0a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.stream-player-wrapper {
    position: relative;
    width: 100%;
    background: #000;
}

.stream-player-wrapper iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
}

.stream-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    color: rgba(255, 255, 255, 0.5);
}

.stream-placeholder i {
    font-size: 4rem;
    color: #e31937;
    opacity: 0.6;
}

.stream-placeholder span {
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.stream-player-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #0a0a0a;
}

.now-playing {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.now-playing-label {
    font-size: 11px;
    color: #e31937;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.now-playing-label i {
    margin-right: 5px;
}

.now-playing-title {
    font-size: 15px;
    color: #fff;
    font-weight: 500;
}

.stream-actions {
    display: flex;
    gap: 8px;
}

.stream-action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.stream-action-btn:hover {
    background: #e31937;
    border-color: #e31937;
}

.stream-description {
    margin-top: 30px;
    padding: 25px;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #e31937;
}

.stream-description p {
    margin: 0;
    padding: 0;
    color: #444;
    line-height: 1.7;
}

.stream-description p:last-child {
    padding-bottom: 0;
}

.stream-edit-link {
    margin-top: 20px;
}

.stream-edit-link a {
    color: #666;
    font-size: 13px;
    font-weight: normal;
}

.stream-edit-link a:hover {
    color: #e31937;
}

/* Ways to Watch */
.ways-to-watch {
    margin-top: 30px;
    padding: 25px;
    background: #f5f5f5;
    border-radius: 12px;
}

.ways-to-watch h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px 0;
}

.ways-to-watch h3 i {
    color: #e31937;
    margin-right: 10px;
}

.watch-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.watch-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 15px;
    background: #fff;
    border-radius: 8px;
    text-align: center;
    transition: all 0.2s ease;
    border: 1px solid #eee;
}

.watch-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #e31937;
}

.watch-option i {
    font-size: 24px;
    color: #e31937;
}

.watch-option span {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

/* Stream Sidebar */
.stream-sidebar-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.stream-widget {
    background: transparent;
    overflow: hidden;
}

.stream-widget img {
    width: 100%;
    height: auto;
    display: block;
}

/* Stream Trainings Widget */
.stream-trainings-widget {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 12px;
    padding: 25px;
    position: relative;
    overflow: hidden;
}

.stream-trainings-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e31937, #ff4d6a);
}

.stream-trainings-widget .widget-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.stream-trainings-widget .widget-header i {
    font-size: 20px;
    color: #e31937;
}

.stream-trainings-widget .widget-title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    padding: 0;
    border: none;
}

.stream-trainings-widget .widget-intro {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0 0 20px 0;
    padding: 0 0 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stream-trainings-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.stream-training-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stream-training-item:last-child {
    border-bottom: none;
}

.stream-training-item a {
    display: block;
    padding: 15px 0;
    color: #fff;
    transition: all 0.2s ease;
}

.stream-training-item a:hover {
    padding-left: 10px;
}

.stream-training-item a:hover .training-item-title {
    color: #e31937;
}

.training-item-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
    line-height: 1.3;
    transition: color 0.2s ease;
}

.training-item-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: normal;
}

.training-item-meta i {
    color: #e31937;
    margin-right: 5px;
}

.view-all-trainings-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 20px;
    padding: 14px 20px;
    background: #e31937;
    color: #fff;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.view-all-trainings-btn:hover {
    background: #ff2d4d;
    color: #fff;
    transform: translateY(-2px);
}

/* Get Involved Widget */
.get-involved-widget {
    background: linear-gradient(135deg, #e31937 0%, #c01530 100%);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.get-involved-widget::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.get-involved-content {
    padding: 30px 25px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.get-involved-content > i {
    font-size: 40px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.get-involved-content h4 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px 0;
}

.get-involved-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 20px 0;
    padding: 0;
    line-height: 1.5;
}

.get-involved-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #e31937;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.2s ease;
}

.get-involved-btn:hover {
    background: #1a1a1a;
    color: #fff;
    transform: translateY(-2px);
}

/* Stream Page Responsive */
@media only screen and (max-width: 1024px) {
    .stream-layout {
        grid-template-columns: 1fr 320px;
        gap: 30px;
    }

    .stream-hero h1 {
        font-size: 2.75rem;
    }

    .watch-options {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media only screen and (max-width: 768px) {
    .stream-layout {
        grid-template-columns: 1fr;
    }

    .stream-hero {
        min-height: auto;
        padding: 40px 0;
    }

    .stream-hero h1 {
        font-size: 2.25rem;
    }

    .stream-hero-badges {
        flex-direction: column;
        align-items: flex-start;
    }

    .stream-content-section {
        padding: 30px 0;
    }

    .stream-sidebar-column {
        order: 2;
    }

    .watch-options {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-grid-line,
    .hero-circle {
        display: none;
    }
}

@media only screen and (max-width: 480px) {
    .stream-hero h1 {
        font-size: 1.75rem;
    }

    .stream-hero-subtitle {
        font-size: 16px;
    }

    .stream-trainings-widget {
        padding: 20px;
    }

    .watch-options {
        grid-template-columns: 1fr;
    }

    .stream-player-info {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .stream-actions {
        width: 100%;
        justify-content: flex-end;
    }
}

/* ==========================================================================
   SITE HEADER & NAVIGATION
   Main site header, navigation, search overlay, and mobile menu
   ========================================================================== */

/* Body states */
body.menu-open,
body.search-open {
    overflow: hidden;
}

/* Site Header */
.site-header {
    position: relative;
    z-index: 9999;
    background: #fff;
}

/* Header Wrapper */
.header-wrapper {
    max-width: 1400px;
    width: 95%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Top Row - Social | Logo | Search */
.header-top-row {
    padding: 30px 0;
    background: #fff;
}

.header-top-row .header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Social Icons (Left) */
.header-social {
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 150px;
}

.header-social a {
    color: #1a1a1a;
    font-size: 18px;
    transition: color 0.2s ease;
}

.header-social a:hover {
    color: #e31937;
}

/* Logo (Center) */
.header-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.header-logo a {
    display: block;
}

.header-logo img {
    height: 100px;
    width: auto;
}

/* Search (Right) */
.header-search {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 150px;
}

.search-toggle {
    background: none;
    border: none;
    color: #1a1a1a;
    font-size: 20px;
    cursor: pointer;
    padding: 10px;
    transition: color 0.2s ease;
}

.search-toggle:hover {
    color: #e31937;
}

/* Navigation Bar */
.header-nav-bar {
    background: #1a1a1a;
}

.header-nav-bar .header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Main Navigation */
.main-nav {
    flex: 1;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: block;
    padding: 15px 25px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s ease;
}

.nav-menu > li > a:hover,
.nav-menu > li.dropdown-open > a {
    background: rgba(255, 255, 255, 0.1);
}

/* Dropdown Menu */
.header-nav-bar .nav-menu .sub-menu,
.nav-menu .sub-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    min-width: 240px;
    width: auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    list-style: none !important;
    margin: 0 !important;
    padding: 8px !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 1000;
    display: flex !important;
    flex-direction: column !important;
}

/* Arrow pointer */
.nav-menu .sub-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 24px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
}

.nav-menu > li.dropdown-open > .sub-menu,
.nav-menu > li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-nav-bar .nav-menu .sub-menu li,
.nav-menu .sub-menu li {
    margin: 0;
    display: block !important;
    width: 100% !important;
    float: none !important;
}

.header-nav-bar .nav-menu .sub-menu li a,
.nav-menu .sub-menu li a {
    display: block !important;
    width: 100% !important;
    padding: 12px 16px !important;
    color: #333 !important;
    font-size: 14px !important;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s ease;
    white-space: nowrap;
    box-sizing: border-box;
}

.nav-menu .sub-menu li a:hover {
    background: linear-gradient(135deg, #e31937 0%, #c41530 100%);
    color: #fff !important;
    transform: translateX(4px);
}

/* First/last item spacing */
.nav-menu .sub-menu li:first-child a {
    margin-top: 0;
}

.nav-menu .sub-menu li:last-child a {
    margin-bottom: 0;
}

/* Quick Links (Right side of nav bar) */
.nav-quick-links {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-quick-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.2s ease;
}

.nav-quick-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-quick-link i {
    font-size: 14px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.search-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.search-overlay-content {
    width: 90%;
    max-width: 700px;
    position: relative;
}

.search-overlay .search-form {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.search-overlay .search-input {
    flex: 1;
    padding: 20px 25px;
    font-size: 18px;
    border: none;
    outline: none;
    font-family: 'Montserrat', sans-serif;
}

.search-overlay .search-submit {
    padding: 20px 25px;
    background: #e31937;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.search-overlay .search-submit:hover {
    background: #c41530;
}

.search-close {
    position: absolute;
    top: -60px;
    right: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.search-close:hover {
    color: #e31937;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: #fff;
    z-index: 10002;
    overflow-y: auto;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-menu.is-open {
    right: 0;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Header */
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.mobile-logo img {
    height: 40px;
    width: auto;
}

.mobile-menu-close {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    color: #333;
    cursor: pointer;
    transition: background 0.2s ease;
}

.mobile-menu-close:hover {
    background: #e31937;
    color: #fff;
}

/* Mobile Menu Search */
.mobile-menu-search {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.mobile-menu-search form {
    display: flex;
    background: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
}

.mobile-menu-search input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    background: transparent;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
}

.mobile-menu-search button {
    padding: 12px 15px;
    background: #e31937;
    border: none;
    color: #fff;
    cursor: pointer;
}

/* Mobile Navigation */
.mobile-nav {
    flex: 1;
    padding: 10px 0;
    overflow-y: auto;
    overflow-x: hidden;
}

.mobile-nav-menu,
.mobile-menu .mobile-nav-menu {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    gap: 0 !important;
}

.mobile-nav-menu > li,
.mobile-menu .mobile-nav-menu > li {
    display: block !important;
    width: 100% !important;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    float: none !important;
}

.mobile-nav-menu > li > a,
.mobile-menu .mobile-nav-menu > li > a {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100% !important;
    padding: 16px 20px !important;
    color: #1a1a1a !important;
    font-size: 15px !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s ease;
    box-sizing: border-box;
    background: #fff;
}

.mobile-nav-menu > li > a:hover {
    background: #f9f9f9 !important;
}

/* Dropdown toggle arrow for items with children */
.mobile-nav-menu > li.menu-item-has-children > a::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
    color: #999;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 10px;
}

.mobile-nav-menu > li.menu-item-has-children.submenu-open > a::after {
    transform: rotate(180deg);
}

.mobile-nav-menu > li.menu-item-has-children.submenu-open > a {
    background: #f5f5f5;
    color: #e31937;
}

/* Submenu - slide down animation */
.mobile-nav-menu .sub-menu,
.mobile-menu .mobile-nav-menu .sub-menu {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #f9f9f9;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
}

.mobile-nav-menu > li.submenu-open > .sub-menu {
    max-height: 500px;
    transition: max-height 0.4s ease-in;
}

.mobile-nav-menu .sub-menu li,
.mobile-menu .mobile-nav-menu .sub-menu li {
    display: block !important;
    width: 100% !important;
    border-top: 1px solid #eee;
    float: none !important;
}

.mobile-nav-menu .sub-menu li:first-child {
    border-top: none;
}

.mobile-nav-menu .sub-menu li a,
.mobile-menu .mobile-nav-menu .sub-menu li a {
    display: block !important;
    width: 100% !important;
    padding: 14px 20px 14px 40px !important;
    color: #555 !important;
    font-size: 14px !important;
    font-weight: 500;
    transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
    box-sizing: border-box;
    background: #f9f9f9;
}

.mobile-nav-menu .sub-menu li a:hover {
    color: #e31937 !important;
    background: #f0f0f0 !important;
    padding-left: 45px !important;
}

/* Mobile Menu Footer */
.mobile-menu-footer {
    padding: 20px;
    background: #f9f9f9;
    border-top: 1px solid #eee;
}

.mobile-quick-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.mobile-quick-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 15px 10px;
    background: #fff;
    border-radius: 8px;
    color: #333;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    transition: background 0.2s ease;
}

.mobile-quick-link i {
    font-size: 18px;
    color: #e31937;
}

.mobile-quick-link:hover {
    background: #e31937;
    color: #fff;
}

.mobile-quick-link:hover i {
    color: #fff;
}

.mobile-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.mobile-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    color: #333;
    font-size: 16px;
    transition: background 0.2s ease, color 0.2s ease;
}

.mobile-social a:hover {
    background: #e31937;
    color: #fff;
}

.mobile-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mobile-contact a {
    color: #666;
    font-size: 13px;
    font-weight: 500;
}

.mobile-contact a:hover {
    color: #e31937;
}

.mobile-contact i {
    margin-right: 8px;
    color: #e31937;
}

/*------------------------------------*\
    NAVIGATION RESPONSIVE
\*------------------------------------*/

@media only screen and (max-width: 1200px) {
    .nav-menu > li > a {
        padding: 15px 18px;
        font-size: 13px;
    }

    .nav-quick-link {
        padding: 15px 15px;
        font-size: 11px;
    }

    .nav-quick-link span {
        display: none;
    }
}

@media only screen and (max-width: 1024px) {
    .main-nav,
    .nav-quick-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-nav-bar .header-wrapper {
        justify-content: flex-end;
        padding: 10px 0;
    }
}

@media only screen and (max-width: 768px) {
    .header-top-row {
        padding: 15px 0;
    }

    .header-logo img {
        height: 55px;
    }

    .header-social {
        min-width: auto;
        gap: 12px;
    }

    .header-social a {
        font-size: 16px;
    }

    .header-search {
        min-width: auto;
    }

    .mobile-menu {
        max-width: 100%;
    }
}

@media only screen and (max-width: 480px) {
    .header-wrapper {
        width: 92%;
    }

    .header-top-row {
        padding: 12px 0;
    }

    .header-logo img {
        height: 45px;
    }

    .header-social a {
        font-size: 14px;
    }

    .header-social {
        gap: 10px;
    }

    .mobile-quick-links {
        grid-template-columns: 1fr 1fr;
    }

    .mobile-quick-links .mobile-quick-link:last-child {
        grid-column: span 2;
    }
}

/* ==========================================================================
   STREAMING ARCHIVE - CAN TV LIBRARY
   ==========================================================================
   Table of Contents:
   1. Base Layout
   2. Filter Sidebar
   3. Main Content Area
   4. Program Cards
   5. Type Badges
   6. Responsive Styles
   ========================================================================== */

/* ==========================================================================
   1. BASE LAYOUT
   ========================================================================== */

.streaming-archive {
    background: linear-gradient(180deg, #0a0a0a 0%, #141414 100%);
    min-height: 100vh;
}

.streaming-layout {
    display: flex;
    gap: 40px;
    padding: 40px;
    min-height: calc(100vh - 100px);
}

/* ==========================================================================
   2. FILTER SIDEBAR
   ========================================================================== */

.filter-sidebar {
    width: 280px;
    flex-shrink: 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #141414 100%);
    border-radius: 16px;
    padding: 24px;
    position: sticky;
    top: 120px;
    height: fit-content;
    max-height: calc(100vh - 160px);
    overflow-y: auto;
    border: 1px solid rgba(255,255,255,0.08);
}

.filter-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.filter-sidebar-header h2 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-sidebar-header h2 i {
    color: #e50914;
}

.filter-reset-btn {
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    cursor: pointer;
    transition: color 0.2s ease;
    padding: 0;
}

.filter-reset-btn:hover {
    color: #e50914;
}

/* Filter Groups */
.filter-group {
    margin-bottom: 28px;
}

.filter-group:last-of-type {
    margin-bottom: 20px;
}

.filter-group-title {
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Custom Checkbox */
.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    position: relative;
}

.filter-checkbox input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.filter-checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.filter-checkbox-custom::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 10px;
    color: #fff;
    opacity: 0;
    transform: scale(0);
    transition: all 0.2s ease;
}

.filter-checkbox input:checked + .filter-checkbox-custom {
    background: #e50914;
    border-color: #e50914;
}

.filter-checkbox input:checked + .filter-checkbox-custom::after {
    opacity: 1;
    transform: scale(1);
}

.filter-checkbox:hover .filter-checkbox-custom {
    border-color: rgba(255,255,255,0.5);
}

.filter-label {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-label i {
    width: 16px;
    text-align: center;
    color: rgba(255,255,255,0.5);
}

/* Custom Radio */
.filter-radio {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    position: relative;
}

.filter-radio input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.filter-radio-custom {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.filter-radio-custom::after {
    content: '';
    width: 8px;
    height: 8px;
    background: #e50914;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.2s ease;
}

.filter-radio input:checked + .filter-radio-custom {
    border-color: #e50914;
}

.filter-radio input:checked + .filter-radio-custom::after {
    opacity: 1;
    transform: scale(1);
}

.filter-radio:hover .filter-radio-custom {
    border-color: rgba(255,255,255,0.5);
}

/* Dual Range Slider */
.filter-slider-container {
    padding: 0 5px;
}

.filter-slider-values {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.filter-slider-values span {
    background: rgba(229, 9, 20, 0.2);
    color: #e50914;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    min-width: 45px;
    text-align: center;
}

.dual-slider {
    position: relative;
    height: 30px;
}

.dual-slider input[type="range"] {
    position: absolute;
    width: 100%;
    height: 6px;
    background: transparent;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
    top: 50%;
    transform: translateY(-50%);
}

.dual-slider input[type="range"]::-webkit-slider-runnable-track {
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.15);
    border-radius: 3px;
}

.dual-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: #e50914;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
    margin-top: -6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.dual-slider input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(229, 9, 20, 0.4);
}

.dual-slider input[type="range"]::-moz-range-track {
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.15);
    border-radius: 3px;
}

.dual-slider input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #e50914;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
    border: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.filter-slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
}

.filter-slider-labels span {
    color: rgba(255,255,255,0.4);
    font-size: 11px;
}

/* Results Count */
.filter-results {
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
}

.filter-results span {
    color: #e50914;
    font-weight: 700;
    font-size: 20px;
    display: block;
    margin-bottom: 4px;
}

/* Mobile Filter Toggle */
.mobile-filter-toggle {
    display: none;
    width: 100%;
    padding: 14px 20px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 24px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s ease;
}

.mobile-filter-toggle:hover {
    background: rgba(255,255,255,0.15);
}

.mobile-filter-toggle i {
    color: #e50914;
}

/* Filter Overlay (Mobile) */
.filter-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.filter-overlay.is-visible {
    display: block;
    opacity: 1;
}

/* ==========================================================================
   3. MAIN CONTENT AREA
   ========================================================================== */

.streaming-content {
    flex: 1;
    min-width: 0;
}

.streaming-header {
    margin-bottom: 32px;
}

.streaming-header h1 {
    color: #fff;
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 8px 0;
}

.streaming-header p {
    color: rgba(255,255,255,0.6);
    font-size: 16px;
    margin: 0;
    padding: 0;
}

/* Unified Grid */
.unified-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

/* No Results Message */
.no-results-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 40px;
    color: rgba(255,255,255,0.6);
}

.no-results-message i {
    font-size: 64px;
    color: rgba(255,255,255,0.2);
    margin-bottom: 24px;
    display: block;
}

.no-results-message h3 {
    color: #fff;
    font-size: 24px;
    margin: 0 0 12px 0;
}

.no-results-message p {
    margin: 0 0 24px 0;
    padding: 0;
    font-size: 16px;
}

.reset-filters-btn {
    background: #e50914;
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.reset-filters-btn:hover {
    background: #f40612;
    transform: translateY(-2px);
}

/* ==========================================================================
   4. PROGRAM CARDS
   ========================================================================== */

/* Show Cards */
.show-card {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    min-height: 240px;
}

.show-card:hover {
    transform: scale(1.08) translateY(-8px);
    z-index: 10;
    box-shadow: 0 25px 50px rgba(0,0,0,0.9), 0 0 0 1px rgba(255,255,255,0.1);
}

.show-card-bg {
    position: absolute;
    inset: 0;
    background-color: #222;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.show-card:hover .show-card-bg {
    transform: scale(1.15);
}

.show-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    transition: all 0.3s ease;
}

.show-card:hover .show-card-overlay {
    background: rgba(0,0,0,0.5);
}

/* NEW badge for cards */
.show-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #e50914 0%, #b20710 100%);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 10px;
    border-radius: 3px;
    z-index: 4;
    box-shadow: 0 2px 8px rgba(229, 9, 20, 0.4);
}

.show-card-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    z-index: 2;
}

.show-card-logo {
    max-width: 70%;
    max-height: 55%;
    width: auto;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(0,0,0,0.9));
    transition: transform 0.3s ease;
    object-fit: contain;
}

.show-card:hover .show-card-logo {
    transform: scale(1.05);
}

.show-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    line-height: 1.3;
    text-align: center;
}

.show-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 12px;
}

.show-card-match {
    color: #46d369;
    font-weight: 700;
}

.show-card-year {
    color: rgba(255,255,255,0.5);
}

.show-card-maturity {
    border: 1px solid rgba(255,255,255,0.4);
    padding: 1px 5px;
    font-size: 10px;
    color: rgba(255,255,255,0.7);
}

.show-card-desc {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    margin: 0 0 10px 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    opacity: 0;
    max-height: 0;
    transition: all 0.3s ease;
}

.show-card:hover .show-card-desc {
    opacity: 1;
    max-height: 50px;
}

.show-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease 0.1s;
}

.show-card:hover .show-card-footer {
    opacity: 1;
    transform: translateY(0);
}

.show-card-episodes {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
}

.show-card-episodes i {
    font-size: 10px;
    color: rgba(255,255,255,0.4);
}

.show-card-actions {
    display: flex;
    gap: 8px;
}

.show-card-action {
    width: 32px;
    height: 32px;
    background: rgba(42, 42, 42, 0.8);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    transition: all 0.2s ease;
}

.show-card-action:hover {
    background: rgba(255,255,255,0.2);
    border-color: #fff;
    transform: scale(1.1);
}

.show-card-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.show-card-play i {
    font-size: 20px;
    color: #000;
    margin-left: 4px;
}

.show-card:hover .show-card-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.show-card-play:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 30px rgba(0,0,0,0.5);
}

/* Podcast Card Styles */
.podcast-card .show-card-overlay {
    background: rgba(0,0,0,0.4);
}

.podcast-card:hover .show-card-overlay {
    background: rgba(0,0,0,0.5);
}

.podcast-card .show-card-logo {
    max-width: 60%;
    max-height: 50%;
}


/* ==========================================================================
   5. TYPE BADGES
   ========================================================================== */

.show-card-type-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 10px;
    border-radius: 4px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 5px;
}

.show-card-type-badge i {
    font-size: 9px;
}

.signature-badge {
    background: linear-gradient(135deg, #e50914 0%, #b20710 100%);
    color: #fff;
}

.podcast-badge {
    background: #4a5767;
    color: #fff;
}

.special-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
}

/* Card Runtime */
.show-card-runtime {
    display: block;
    margin-top: 10px;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
}

/* ==========================================================================
   6. RESPONSIVE STYLES
   ========================================================================== */

@media only screen and (max-width: 1200px) {
    .streaming-layout {
        padding: 30px;
        gap: 30px;
    }

    .filter-sidebar {
        width: 260px;
    }

    .unified-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
}

@media only screen and (max-width: 992px) {
    .streaming-layout {
        flex-direction: column;
        padding: 20px;
    }

    .filter-sidebar {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 320px;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
        z-index: 999;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .filter-sidebar.is-open {
        display: block;
        transform: translateX(0);
    }

    .mobile-filter-toggle {
        display: flex;
    }

    .streaming-header h1 {
        font-size: 28px;
    }

    .unified-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    }

    .show-card {
        min-height: 180px;
    }

    .show-card:hover {
        transform: scale(1.03) translateY(-4px);
    }
}

@media only screen and (max-width: 600px) {
    .streaming-layout {
        padding: 15px;
    }

    .streaming-header h1 {
        font-size: 24px;
    }

    .streaming-header p {
        font-size: 14px;
    }

    .unified-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .filter-sidebar {
        width: 85%;
        max-width: 320px;
    }

    .show-card {
        min-height: 160px;
    }

    .show-card:hover {
        transform: none;
        box-shadow: none;
    }

    .show-card-title {
        font-size: 18px;
    }

    .show-card-play {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0.9);
        width: 44px;
        height: 44px;
    }

    .show-card-play i {
        font-size: 16px;
    }

    .show-card-type-badge {
        padding: 4px 8px;
        font-size: 9px;
        top: 8px;
        right: 8px;
    }

    .no-results-message {
        padding: 60px 20px;
    }

    .no-results-message i {
        font-size: 48px;
    }

    .no-results-message h3 {
        font-size: 20px;
    }
}

/* Body class when filter is open */
body.filter-open {
    overflow: hidden;
}