/*
Theme Name: Brand
Theme URI: https://www.wp-brandtheme.com/
Author: Massimo Sanfelice - Maxsdesign
Description: Brand is a fast, lightweight, flexible WordPress theme. It is also mobile and tablet responsive. Cross browser compatible, Brand is easily customizable: add a slider, an image or a video on the front page, change colors, typography, enable and disable elements, add left or right sidebar and much more. To start building your website navigate to Appearance > Customize. Then take a look at our amazing add-ons at https://www.wp-brandtheme.com/add-ons.
Version: 1.9
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: brand
Tags: right-sidebar, left-sidebar, footer-widgets, blog, e-commerce, photography, custom-header, custom-background, custom-menu, custom-colors, sticky-post, threaded-comments, translation-ready, featured-images

Brand WordPress Theme, Copyright 2017 Massimo Sanfelice | Maxsdesign
Brand is distributed under the terms of the GNU GPL
*/

.wp-caption {
	margin-bottom: 1.75em;
	max-width: 100%;
}

.wp-caption .wp-caption-text {
	color: #686868;
	font-size: 13px;
	font-size: 0.8125rem;
	font-style: italic;
	line-height: 1.6153846154;
	padding-top: 0.5384615385em;
}

.sticky .entry-title a {
	font-weight:bolder;
}

article.sticky:after {
	content: "\f08d";
	position: absolute;
	top: 0;
	right: 10px;
	font-family: FontAwesome;
	font-size: 2.5rem;
}

.gallery-caption {
	font-style: italic;
}

.bypostauthor .comment-body {
    padding-top: 5px;
    border-top: 5px solid #1ebaf3;
}

.alignleft {
	float: left;
}

.alignright {
	float: right;
}

.aligncenter {
	clear: both;
	display: block;
	margin: 0 auto;
}

#wp-custom-header .customize-partial-edit-shortcut {
	top:50%;
	left:2%;
}

/* Video Container & Overlay Styles */
.video-container {
	position: relative;
	width: 100%;
	margin: 2rem 0;
	background: #000;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

h2.related {
	margin-top: 3rem;
}


.plyr__video-embed {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%; /* 16:9 aspect ratio */
	height: 0;
}

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

/* Video Placeholder & Overlays */
.video-placeholder {
	position: relative;
	width: 100%;
	margin: 2rem 0;
	background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
	min-height: 400px;
}

.video-preview {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 3rem 2rem;
	background-image: 
		linear-gradient(45deg, rgba(30, 186, 243, 0.05) 25%, transparent 25%),
		linear-gradient(-45deg, rgba(30, 186, 243, 0.05) 25%, transparent 25%),
		linear-gradient(45deg, transparent 75%, rgba(30, 186, 243, 0.05) 75%),
		linear-gradient(-45deg, transparent 75%, rgba(30, 186, 243, 0.05) 75%);
	background-size: 40px 40px;
	background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
}

.login-overlay,
.upgrade-overlay {
	text-align: center;
	padding: 3rem 2rem;
	background: rgba(255, 255, 255, 0.98);
	border-radius: 12px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
	max-width: 500px;
	width: 100%;
	animation: fadeInUp 0.6s ease-out;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.login-overlay i,
.upgrade-overlay i {
	display: block;
	font-size: 4rem;
	margin-bottom: 1.5rem;
	color: #1ebaf3;
	animation: pulse 2s infinite;
}

.upgrade-overlay i {
	color: #ffc107;
}

.login-overlay h3,
.upgrade-overlay h3 {
	font-size: 1.75rem;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 1rem 0;
	line-height: 1.3;
}

.login-overlay p,
.upgrade-overlay p {
	font-size: 1rem;
	color: #686868;
	margin: 0 0 2rem 0;
	line-height: 1.6;
}

.login-overlay .btn,
.upgrade-overlay .btn {
	display: inline-block;
	padding: 0.875rem 2.5rem;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	background: #1ebaf3;
	color: #fff;
	border-radius: 50px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(30, 186, 243, 0.3);
	border: none;
	cursor: pointer;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.login-overlay .btn:hover,
.upgrade-overlay .btn:hover {
	background: #1a9dd1;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(30, 186, 243, 0.4);
}

.login-overlay .btn:active,
.upgrade-overlay .btn:active {
	transform: translateY(0);
}

.upgrade-overlay .btn {
	background: #ffc107;
	box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.upgrade-overlay .btn:hover {
	background: #e6ac00;
	box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes pulse {
	0%, 100% {
		transform: scale(1);
		opacity: 1;
	}
	50% {
		transform: scale(1.1);
		opacity: 0.8;
	}
}

/* Responsive Design */
@media screen and (max-width: 768px) {
	.video-placeholder {
		min-height: 350px;
		margin: 1.5rem 0;
	}
	
	.login-overlay,
	.upgrade-overlay {
		padding: 2rem 1.5rem;
		margin: 0 1rem;
	}
	
	.login-overlay i,
	.upgrade-overlay i {
		font-size: 3rem;
		margin-bottom: 1rem;
	}
	
	.login-overlay h3,
	.upgrade-overlay h3 {
		font-size: 1.5rem;
	}
	
	.login-overlay p,
	.upgrade-overlay p {
		font-size: 0.9375rem;
		margin-bottom: 1.5rem;
	}
	
	.login-overlay .btn,
	.upgrade-overlay .btn {
		padding: 0.75rem 2rem;
		font-size: 0.9375rem;
	}
}

@media screen and (max-width: 480px) {
	.video-placeholder {
		min-height: 300px;
		margin: 1rem 0;
		border-radius: 6px;
	}
	
	.video-preview {
		padding: 2rem 1rem;
	}
	
	.login-overlay,
	.upgrade-overlay {
		padding: 1.5rem 1rem;
		border-radius: 8px;
	}
	
	.login-overlay i,
	.upgrade-overlay i {
		font-size: 2.5rem;
	}
	
	.login-overlay h3,
	.upgrade-overlay h3 {
		font-size: 1.25rem;
	}
	
	.login-overlay .btn,
	.upgrade-overlay .btn {
		padding: 0.625rem 1.5rem;
		font-size: 0.875rem;
		width: 100%;
	}
}



/* Video Tabs Navigation */
.video-tabs-nav {
	display: flex;
	gap: 0.15rem;
	background: #f5f5f5;
	border-bottom: 2px solid #e0e0e0;
}

.video-tab-btn {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 1rem 1.5rem;
	background: #dbd5d5;
	/* background: transparent; */
	border: none;
	border-radius: 6px 6px 0 0;
	font-size: 1rem;
	font-weight: 600;
	color: #6b6969;
	/* color: #686868; */
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.video-tab-btn:hover {
	background: rgba(30, 186, 243, 0.1);
	color: #1ebaf3;
}

.video-tab-btn.active {
	background: #fff;
	color: #1ebaf3;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.video-tab-btn.active::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	right: 0;
	height: 2px;
	background: #1ebaf3;
}

.video-tab-btn i {
	font-size: 1.25rem;
	transition: transform 0.3s ease;
}

.video-tab-btn:hover i,
.video-tab-btn.active i {
	transform: scale(1.1);
}

/* Video Tabs Content */
.video-tabs-content {
	position: relative;
	background: #000;
	border-radius: 0 0 8px 8px;
	overflow: hidden;
	aspect-ratio: 16 / 9;
}

.video-tab-pane {
	display: none;
	width: 100%;
	height: 100%;
}

.video-tab-pane.active {
	display: block;
}

.video-tab-pane iframe {
	width: 100%;
	max-width: 100%;
	aspect-ratio: 16 / 9;
	border: none;
}

/* Video Placeholder Loading */
.video-placeholder-loading {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	aspect-ratio: 16 / 9;
	width: 100%;
	background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.video-placeholder-loading i {
	font-size: 5rem;
	color: #1ebaf3;
	margin-bottom: 1rem;
	animation: pulsePlay 2s infinite;
	position: relative;
	z-index: 2;
	pointer-events: none;
}

.video-placeholder-loading:hover i {
	transform: scale(1.15);
	animation: none;
}

.video-placeholder-loading p {
	color: #fff;
	font-size: 1.125rem;
	font-weight: 500;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 1px;
	position: relative;
	z-index: 2;
	pointer-events: none;
}

/* Video Placeholder Locker */
.video-placeholder-locker {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	aspect-ratio: 16 / 9;
	width: 100%;
	background: linear-gradient(135deg, #2d1a1a 0%, #3d2020 100%);
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.video-placeholder-locker::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
	background-size: cover;
	background-position: center;
	z-index: 0;

}

.video-placeholder-locker::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(139, 0, 0, 0.85) 0%, rgba(70, 0, 0, 0.85) 100%);
	opacity: 0.78;
	transition: opacity 0.3s ease;
	pointer-events: none;
	z-index: 1;

}

.video-placeholder-locker:hover::after {
	opacity: 0.45;
}

.video-placeholder-locker i {
	font-size: 5rem;
	color: #f57171;
	margin-bottom: 1rem;
	animation: lockShake 2s infinite;
	position: relative;
	z-index: 2;
}

.video-placeholder-locker:hover i {
	transform: scale(1.15);
	animation: none;
	color: #ff4444;
}

.video-placeholder-locker p {
	color: #fff;
	font-size: 1.125rem;
	font-weight: 500;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 1px;
	position: relative;
	z-index: 2;
}

.premium-countdown {
	margin-top: 1.5rem;
	padding: 1rem 1.5rem;
	background: rgba(0, 0, 0, 0.5);
	border: 2px solid rgba(245, 113, 113, 0.3);
	border-radius: 12px;
	backdrop-filter: blur(10px);
	position: relative;
	z-index: 2;
}

.countdown-label {
	color: #f57171;
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-bottom: 0.5rem;
}

.countdown-timer {
	display: flex;
	gap: 0.75rem;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 1.5rem;
	font-weight: 700;
	font-family: 'Courier New', monospace;
}

.countdown-timer span {
	display: inline-block;
	min-width: 2.5rem;
	padding: 0.25rem 0.5rem;
	background: rgba(245, 113, 113, 0.2);
	border-radius: 6px;
	text-align: center;
}

.countdown-expired {
	color: #4CAF50;
	font-size: 1.25rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	justify-content: center;
}

.countdown-expired i {
	font-size: 1.5rem;
	animation: none;
	margin: 0;
}

@keyframes lockShake {
	0%, 100% {
		transform: rotate(0deg);
	}
	25% {
		transform: rotate(-5deg);
	}
	75% {
		transform: rotate(5deg);
	}
}

.video-placeholder-loading::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
	background-size: cover;
	background-position: center;
	z-index: 0;
}

.video-placeholder-loading::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(45, 45, 45, 0.7) 100%);
	opacity: 1;
	transition: opacity 0.3s ease;
	pointer-events: none;
	z-index: 1;
}

.video-placeholder-loading:hover::after {
	opacity: 0.5;
}

.video-placeholder-loading i {
	font-size: 5rem;
	color: #1ebaf3;
	margin-bottom: 1rem;
	animation: pulsePlay 2s infinite;
	position: relative;
	z-index: 2;
}

.video-placeholder-loading:hover i {
	transform: scale(1.15);
	animation: none;
}

.video-placeholder-loading p {
	color: #fff;
	font-size: 1.125rem;
	font-weight: 500;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 1px;
	position: relative;
	z-index: 2;
}

.video-tab-pane[data-loaded="true"] .video-placeholder-loading {
	display: none;
}

.video-tab-pane[data-loaded="true"] .plyr__video-embed {
	display: block !important;
}

/* Loading Animation */
@keyframes pulsePlay {
	0%, 100% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.7;
		transform: scale(1.1);
	}
}

.video-loading-spinner {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 60px;
	height: 60px;
	border: 4px solid rgba(30, 186, 243, 0.3);
	border-top-color: #1ebaf3;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	z-index: 10;
}

/* Error Message Styling */
.video-error-message {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	padding: 2.5rem 2rem;
	max-width: 90%;
	width: 450px;
	background: rgba(30, 30, 30, 0.95);
	border-left: 4px solid #ff6b6b;
	border-radius: 8px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 107, 107, 0.1);
	backdrop-filter: blur(10px);
	z-index: 100;
}

.video-error-icon {
	font-size: 4rem;
	color: #ff6b6b;
	opacity: 0.9;
	filter: drop-shadow(0 2px 8px rgba(255, 107, 107, 0.3));
}

p.video-error-text {
	color: #e0e0e0;
	font-size: 1.05rem;
	line-height: 1.6;
	margin: 0 0 1.5rem 0;
	font-weight: 400;
	letter-spacing: 0.3px;
	margin-bottom: 8px;
}

/* Report Button & Login-to-Report Link — shared base */
.video-error-report-btn,
.video-error-login-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.625rem 1.5rem;
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: none;
	color: #fff;
	border: none;
	border-radius: 50px;
	cursor: pointer;
	text-transform: uppercase;
	letter-spacing: 0.75px;
	transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
	position: relative;
	overflow: hidden;
	margin-top: 0.75rem;
	line-height: 1.4;
}

/* Report button colours */
.video-error-report-btn {
	background: linear-gradient(135deg, #ff6b6b 0%, #e04848 100%);
	box-shadow: 0 3px 10px rgba(255, 107, 107, 0.35);
}

.video-error-report-btn:hover {
	background: linear-gradient(135deg, #ff5252 0%, #d63333 100%);
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(255, 107, 107, 0.5);
	color: #fff;
}

.video-error-report-btn:active {
	transform: translateY(0);
	box-shadow: 0 2px 6px rgba(255, 107, 107, 0.3);
}

.video-error-report-btn:disabled {
	background: #666;
	box-shadow: none;
	cursor: not-allowed;
	opacity: 0.55;
	transform: none;
}

/* Login-to-Report link colours */
.video-error-login-link {
	background: linear-gradient(135deg, #1ebaf3 0%, #1593c7 100%);
	box-shadow: 0 3px 10px rgba(30, 186, 243, 0.35);
}

.video-error-login-link:hover {
	background: linear-gradient(135deg, #17a8de 0%, #1080b0 100%);
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(30, 186, 243, 0.5);
	color: #fff;
	text-decoration: none;
}

.video-error-login-link:active {
	transform: translateY(0);
	box-shadow: 0 2px 6px rgba(30, 186, 243, 0.3);
}

/* Shared icon sizing — override Font Awesome defaults */
.video-error-report-btn i.fa,
.video-error-login-link i.fa {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: inherit;
	line-height: 1;
	flex-shrink: 0;
	height: auto;
	width: auto;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
	font-size: 1.25rem;
	color: #772222;
}

/* Button / link text span */
.video-error-report-btn span,
.video-error-login-link span {
	display: flex;
	align-items: center;
	line-height: 1;
}

.video-1-icon {
	color: #ffdd1b;
}
.video-2-icon {
	color: #00b2ff;
}
.video-3-icon {
    color: #ff9900;
}
.video-4-icon {
	color: #000000;
}


@keyframes spin {
	to {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

/* Responsive Tabs */
@media screen and (max-width: 768px) {
	
	
	.video-tab-btn {
		padding: 0.875rem 0.5rem;
		font-size: 0.9375rem;
		gap: 0;
	}
	
	.video-tab-btn span {
		display: none !important;
	}
	
	.video-tab-btn i {
		font-size: 1.5rem;
	}
	
	/* Responsive error messages */
	.video-error-message {
		width: 60%;
		max-width: 60%;
		height: 70%;
		padding: 1.25rem 1.25rem;
		border-left-width: 3px;
		border-radius: 6px;
	}
	
	.video-error-icon {
		font-size: 2.75rem;
	}
	
	.video-error-text {
		font-size: 0.875rem;
		line-height: 1.5;
		margin: 0 0 1rem 0;
	}
	
	.video-error-report-btn,
	.video-error-login-link {
		padding: 0.5rem 1.25rem;
		font-size: 0.75rem;
		gap: 0.375rem;
		margin-top: 0.5rem;
		letter-spacing: 0.5px;
	}

	.video-error-report-btn i,
	.video-error-login-link i {
		font-size: 0.875rem;
	}

	.video-error-report-btn i.fa-flag,
	.video-error-report-btn i.fa-check {
		font-size: 0.9rem;
	}
	
	.video-tabs-content {
		aspect-ratio: 16 / 9;
	}
	
	.video-placeholder-loading {
		aspect-ratio: 16 / 9;
		width:100%;
	}
	
	.video-placeholder-loading i {
		font-size: 3rem;
	}
	
	.video-placeholder-loading p {
		font-size: 1rem;
	}
	
	.video-placeholder-locker {
		aspect-ratio: 16 / 9;
		width: 100%;
	}
	
	.video-placeholder-locker i {
		font-size: 4rem;
		margin-bottom: 0.75rem;
	}
	
	.video-placeholder-locker p {
		font-size: 1rem;
	}
	
	.premium-countdown {
		margin-top: 1rem;
		padding: 0.875rem 1.25rem;
	}
	
	.countdown-label {
		font-size: 0.75rem;
		margin-bottom: 0.375rem;
	}
	
	.countdown-timer {
		font-size: 1.25rem;
		gap: 0.5rem;
	}
	
	.countdown-timer span {
		min-width: 2rem;
		padding: 0.2rem 0.4rem;
	}
}

@media screen and (max-width: 480px) {
	.video-tab-btn {
		padding: 0.75rem 0.75rem;
	}
	
	.video-tab-btn i {
		font-size: 1.375rem;
	}
	
	/* Responsive error messages */
	.video-error-message {
		height: 70%;
		width: 65%;
		max-width: 65%;
		padding: 1rem 0.75rem;
		border-left-width: 2px;
		border-radius: 4px;
	}
	
	.video-error-icon {
		font-size: 1.5rem;
		margin-bottom: 0.1rem;
	}

	.video-error-message p {
		font-size: 0.875rem;
		margin-bottom: 8px;
	}
	p.video-error-text {
		margin-bottom: 0px;
	}

	.video-error-text {
		font-size: 0.8125rem;
		line-height: 1.4;
		letter-spacing: 0.1px;
		margin: 0 0 0.75rem 0;
	}
	
	.video-error-report-btn,
	.video-error-login-link {
		padding: 0.4rem 1rem;
		font-size: 0.6875rem;
		gap: 0.3rem;
		margin-top: 0.375rem;
		letter-spacing: 0.3px;
		border-radius: 30px;
		max-width: 80%;
	}

	.video-error-report-btn i,
	.video-error-login-link i {
		font-size: 0.75rem;
	}

	.video-error-report-btn i.fa-flag,
	.video-error-report-btn i.fa-check {
		font-size: 0.8rem;
	}
	
	.video-tabs-content {
		aspect-ratio: 16 / 9;
	}
	
	.video-placeholder-loading {
		aspect-ratio: 16 / 9;
		width:100%;
	}
	
	.video-placeholder-loading i {
		font-size: 2rem;
	}
	
	.video-placeholder-loading p {
		font-size: 0.775rem;
	}
	
	.video-placeholder-locker {
		aspect-ratio: 16 / 9;
		width: 100%;
	}
	
	.video-placeholder-locker i {
		font-size: 3rem;
		margin-bottom: 0.5rem;
	}
	
	.video-placeholder-locker p {
		font-size: 0.875rem;
		letter-spacing: 0.5px;
	}
	
	.premium-countdown {
		margin-top: 0.75rem;
		padding: 0.75rem 1rem;
		border-radius: 8px;
	}
	
	.countdown-label {
		font-size: 0.625rem;
		letter-spacing: 1px;
		margin-bottom: 0.25rem;
	}
	
	.countdown-timer {
		font-size: 1rem;
		gap: 0.375rem;
		flex-wrap: wrap;
	}
	
	.countdown-timer span {
		min-width: 1.75rem;
		padding: 0.15rem 0.3rem;
		font-size: 0.9rem;
	}
	
	.countdown-expired {
		font-size: 1rem;
	}
	
	.countdown-expired i {
		font-size: 1.25rem;
	}
}
