/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html,
body {
	height: 100vh;
	width: 100vw;
	overflow: hidden;
	font-family:
		-apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu",
		"Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
}

/* Container */
.container-fluid {
	height: 100vh;
	width: 100vw;
}

/* Main Video Area */
.col-8 {
	background-color: #000;
}

#mainVideo {
	object-fit: cover;
}

/* Overlay Video */
.overlay-video-container {
	position: absolute;
	top: 2%;
	left: 2%;
	width: clamp(480px, 15%, 15%);
	aspect-ratio: 4 / 3;
	height: auto;
	z-index: 10;
	border: 2px solid rgba(255, 255, 255, 0.5);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
}

.live-badge {
	position: absolute;
	top: 12px;
	right: 12px;
	background: #e50914;
	color: #fff;
	padding: 6px 12px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 0.85rem;
	letter-spacing: 1px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
	display: none;
	z-index: 20;
	text-transform: uppercase;
}

.live-badge-overlay {
	top: 8px;
	right: 8px;
}

.live-ticker {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	height: 48px;
	background: linear-gradient(90deg, #0a0a0a 0%, #151515 100%);
	color: #fff;
	display: none;
	overflow: hidden;
	z-index: 50;
	box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.25);
}

.ticker-track {
	display: inline-flex;
	align-items: center;
	gap: 32px;
	padding-left: 100%;
	animation: ticker-scroll 25s linear infinite;
	white-space: nowrap;
}

.ticker-item {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 800;
	font-size: 1.05rem;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.ticker-emoji {
	font-size: 1.2rem;
}

@keyframes ticker-scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-100%);
	}
}

#overlayVideo {
	width: 100%;
	height: 100%;
}

#overlayVideo video {
	width: 100%;
	height: 100%;
}

/* Remove Video.js controls for cleaner look */
.video-js .vjs-control-bar {
	display: none;
}

.video-js .vjs-big-play-button {
	display: none;
}

/* Sidebar */
.sidebar {
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
	color: #fff;
}

/* Logo */
.logo-container {
	width: 80%;
	max-width: 300px;
	margin-top: 2rem;
}

.logo-container img {
	width: 100%;
	height: auto;
}

/* Jackpot Display */
.jackpot-container {
	margin-top: 3rem;
}

.jackpot-label {
	font-size: 1.5rem;
	font-weight: 600;
	color: #e0e0e0;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.jackpot-amount {
	font-size: 3.5rem;
	font-weight: 700;
	color: #00ff88;
	text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
	padding: 1rem;
	background: rgba(0, 255, 136, 0.1);
	border-radius: 12px;
	border: 2px solid rgba(0, 255, 136, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
	.jackpot-label {
		font-size: 1.2rem;
	}

	.jackpot-amount {
		font-size: 2.5rem;
	}
}

@media (max-width: 768px) {
	.col-8 {
		width: 100%;
	}

	.col-4 {
		display: none;
	}

	.overlay-video-container {
		width: 25%;
		height: 25%;
	}
}

/* Social Proof Toast */
.social-proof-toast {
	position: fixed;
	bottom: 80px;
	right: 24px;
	z-index: 100;
	opacity: 0;
	transform: translateX(100%);
	transition:
		opacity 0.5s ease,
		transform 0.5s ease;
	pointer-events: none;
}

.social-proof-toast.visible {
	opacity: 1;
	transform: translateX(0);
	pointer-events: auto;
}

.social-proof-toast-content {
	display: flex;
	align-items: center;
	gap: 16px;
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
	border: 2px solid rgba(0, 255, 136, 0.4);
	border-radius: 12px;
	padding: 16px 24px;
	box-shadow:
		0 8px 32px rgba(0, 0, 0, 0.4),
		0 0 20px rgba(0, 255, 136, 0.2);
	max-width: 400px;
}

.social-proof-toast-icon {
	font-size: 2rem;
	flex-shrink: 0;
}

.social-proof-toast-message {
	color: #fff;
	font-size: 1.1rem;
	font-weight: 600;
	line-height: 1.4;
}

@media (max-width: 768px) {
	.social-proof-toast {
		bottom: 60px;
		right: 12px;
		left: 12px;
	}

	.social-proof-toast-content {
		max-width: 100%;
	}
}
