/* Scroll behavior */
html {
	scroll-padding-top: 6rem;
	scroll-behavior: smooth;
}

/* Mobile scroll offset - Navbar ist höher auf Mobile */
@media (max-width: 767px) {
	html {
		scroll-padding-top: 5rem;
	}
}

/* Back to Top Button (nur Mobile) */
.back-to-top {
	position: fixed;
	top: 20px;
	right: 20px;
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, rgba(10, 10, 26, 0.95) 0%, rgba(26, 10, 46, 0.95) 100%);
	border: 2px solid rgba(0, 255, 255, 0.5);
	border-radius: 50%;
	color: #00ffff;
	cursor: pointer;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-20px);
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 
		0 4px 15px rgba(0, 255, 255, 0.4),
		0 0 20px rgba(0, 255, 255, 0.2);
	backdrop-filter: blur(10px);
}

.back-to-top.visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.back-to-top:hover {
	background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(255, 0, 255, 0.1) 100%);
	border-color: rgba(0, 255, 255, 0.8);
	box-shadow: 
		0 6px 20px rgba(0, 255, 255, 0.6),
		0 0 30px rgba(255, 0, 255, 0.4);
	transform: translateY(-3px);
}

.back-to-top:active {
	transform: translateY(0);
}

.back-to-top svg {
	filter: drop-shadow(0 0 5px rgba(0, 255, 255, 0.8));
	transition: transform 0.3s ease;
}

.back-to-top:hover svg {
	transform: translateY(-2px);
	filter: drop-shadow(0 0 10px rgba(0, 255, 255, 1));
}

/* 5 Sterne Rating für Mobile */
.star-rating {
	display: inline-flex;
	gap: 8px;
	align-items: center;
	justify-content: center;
}

.star-rating .star {
	font-size: 2rem;
	color: #ffd700;
	text-shadow: 
		0 0 10px rgba(255, 215, 0, 0.8),
		0 0 20px rgba(255, 215, 0, 0.6),
		0 0 30px rgba(255, 215, 0, 0.4);
	animation: starTwinkle 2s ease-in-out infinite;
	display: inline-block;
}

.star-rating .star:nth-child(1) { animation-delay: 0s; }
.star-rating .star:nth-child(2) { animation-delay: 0.2s; }
.star-rating .star:nth-child(3) { animation-delay: 0.4s; }
.star-rating .star:nth-child(4) { animation-delay: 0.6s; }
.star-rating .star:nth-child(5) { animation-delay: 0.8s; }

@keyframes starTwinkle {
	0%, 100% {
		opacity: 1;
		transform: scale(1);
		filter: brightness(1);
	}
	50% {
		opacity: 0.8;
		transform: scale(1.1);
		filter: brightness(1.3);
	}
}

/* Sci-Fi Neon Background */
body {
	background: linear-gradient(135deg, #0a0a1a 0%, #1a0a2e 25%, #0a0a1a 50%, #1a0a2e 75%, #0a0a1a 100%);
	background-size: 400% 400%;
	animation: backgroundShift 20s ease infinite;
	position: relative;
	min-height: 100vh;
}

body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: 
		radial-gradient(circle at 20% 50%, rgba(0, 255, 255, 0.03) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(255, 0, 255, 0.03) 0%, transparent 50%),
		radial-gradient(circle at 40% 20%, rgba(0, 255, 127, 0.02) 0%, transparent 50%);
	pointer-events: none;
	z-index: 0;
}

body::after {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: 
		linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 50px 50px;
	pointer-events: none;
	z-index: 0;
	opacity: 0.5;
}

@keyframes backgroundShift {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

/* Ensure content is above background effects */
.container, .navbar, .breaking-news {
	position: relative;
	z-index: 1;
}

/* Modern Zoom Effect */
.zoom {
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s ease, filter 0.5s ease;
	position: relative;
	overflow: hidden;
}

.zoom:hover {
	transform: scale(1.08) translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 255, 255, 0.5), 0 0 60px rgba(255, 0, 255, 0.3);
	filter: brightness(1.1);
}

/* Remove blur from Jackpot image */
#jp1 {
	filter: none !important;
}

.zoom::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(0, 255, 255, 0.2) 0%, rgba(255, 0, 255, 0.1) 50%, transparent 60%);
	opacity: 0;
	transition: opacity 0.5s ease;
	pointer-events: none;
}

.zoom:hover::after {
	opacity: 1;
}

/* Room-specific colors */
/* Alien Grill - Neon Green (UFO/Alien theme) - Enhanced */
.zoom#ag1:hover {
	box-shadow: 0 20px 40px rgba(57, 255, 20, 0.6), 0 0 60px rgba(0, 255, 127, 0.4) !important;
}

.zoom#ag1::after {
	background: linear-gradient(135deg, rgba(57, 255, 20, 0.25) 0%, rgba(0, 255, 127, 0.15) 50%, transparent 60%) !important;
}

/* Alien Grill Top Secret - gleicher grüner Glow wie Alien Grill */
#aliengrillmore .zoom:hover {
	box-shadow: 0 20px 40px rgba(57, 255, 20, 0.6), 0 0 60px rgba(0, 255, 127, 0.4) !important;
}

#aliengrillmore .zoom::after {
	background: linear-gradient(135deg, rgba(57, 255, 20, 0.25) 0%, rgba(0, 255, 127, 0.15) 50%, transparent 60%) !important;
}

#aliengrillmore .roombox:hover {
	box-shadow: 0 20px 40px rgba(57, 255, 20, 0.5), 0 0 0 1px rgba(57, 255, 20, 0.5), 0 0 60px rgba(0, 255, 127, 0.3) !important;
}

/* Interactive UFO for Alien Grill */
#aliengrill-container .roomimage-left,
#aliengrillmore {
	position: relative;
	overflow: visible !important;
}

.ufo-element {
	position: fixed;
	font-size: 3rem;
	z-index: 9999;
	pointer-events: auto;
	cursor: pointer;
	user-select: none;
	opacity: 0;
	transition: opacity 0.5s ease;
	filter: drop-shadow(0 0 15px rgba(57, 255, 20, 1)) 
	        drop-shadow(0 0 30px rgba(0, 255, 127, 0.8))
	        drop-shadow(0 0 45px rgba(57, 255, 20, 0.6));
	transform: translate(-50%, -50%);
	line-height: 1;
}

.ufo-element.visible {
	opacity: 1;
}

.ufo-element.crashing {
	transition: transform 1.5s ease-in, opacity 1.5s ease-out;
	transform: translate(-50%, calc(-50% + 200vh)) rotate(180deg);
	opacity: 0;
}

@media (max-width: 767px) {
	.ufo-element {
		font-size: 2.5rem;
	}
}

/* Cyber Attack - Neon Cyan (Matrix/Tech theme) */
#ca1:hover {
	box-shadow: 0 20px 40px rgba(0, 255, 255, 0.6), 0 0 60px rgba(0, 255, 255, 0.4);
}

#ca1::after {
	background: linear-gradient(135deg, rgba(0, 255, 255, 0.25) 0%, rgba(255, 0, 255, 0.1) 50%, transparent 60%);
}

/* Cyber Attack Top Secret - gleicher Cyan/Magenta Glow wie Cyber Attack */
#cyberattackmore .zoom:hover {
	box-shadow: 0 20px 40px rgba(0, 255, 255, 0.6), 0 0 60px rgba(0, 255, 255, 0.4) !important;
}

#cyberattackmore .zoom::after {
	background: linear-gradient(135deg, rgba(0, 255, 255, 0.25) 0%, rgba(255, 0, 255, 0.1) 50%, transparent 60%) !important;
}

#cyberattackmore .roombox:hover {
	box-shadow: 0 20px 40px rgba(0, 255, 255, 0.5), 0 0 0 1px rgba(0, 255, 255, 0.5), 0 0 60px rgba(255, 0, 255, 0.3) !important;
}

/* Lightning effect for Cyber Attack image */
#cyberattack-container .roomimage-right {
	position: relative;
	overflow: visible !important;
}


#ca2:hover {
	box-shadow: 0 20px 40px rgba(0, 255, 255, 0.6), 0 0 60px rgba(0, 255, 255, 0.4);
}

#ca2::after {
	background: linear-gradient(135deg, rgba(0, 255, 255, 0.25) 0%, rgba(255, 0, 255, 0.1) 50%, transparent 60%);
}

/* Lightning effect for Cyber Attack VS image */
#cyberattackteams .roomimage-left {
	position: relative;
	overflow: visible !important;
}


@keyframes lightningFlash1 {
	0%, 100% {
		opacity: 0;
		transform: rotate(15deg) scaleY(0.5);
		filter: brightness(0.5);
		top: 320px;
		left: calc(50% - 20px);
	}
	2% {
		opacity: 1;
		transform: rotate(15deg) scaleY(1);
		filter: brightness(2);
		top: 320px;
		left: calc(50% - 20px);
	}
	2.3% {
		opacity: 0.3;
		transform: rotate(12deg) scaleY(0.8);
		filter: brightness(1);
	}
	2.6% {
		opacity: 1;
		transform: rotate(18deg) scaleY(1.1);
		filter: brightness(2.5);
	}
	3% {
		opacity: 0;
		transform: rotate(15deg) scaleY(0.5);
		filter: brightness(0.5);
	}
	10% {
		opacity: 1;
		transform: rotate(-10deg) scaleY(1.2);
		filter: brightness(2);
		top: 280px;
		left: calc(50% - 60px);
	}
	10.3% {
		opacity: 0.4;
		transform: rotate(-8deg) scaleY(0.9);
		filter: brightness(1.2);
	}
	10.6% {
		opacity: 1;
		transform: rotate(-12deg) scaleY(1.1);
		filter: brightness(2.5);
	}
	11% {
		opacity: 0;
		transform: rotate(-10deg) scaleY(0.5);
		filter: brightness(0.5);
	}
	18% {
		opacity: 1;
		transform: rotate(25deg) scaleY(1.1);
		filter: brightness(2);
		top: 360px;
		left: calc(50% + 50px);
	}
	18.3% {
		opacity: 0.3;
		transform: rotate(23deg) scaleY(0.8);
		filter: brightness(1);
	}
	18.6% {
		opacity: 1;
		transform: rotate(27deg) scaleY(1.2);
		filter: brightness(2.5);
	}
	19% {
		opacity: 0;
		transform: rotate(25deg) scaleY(0.5);
		filter: brightness(0.5);
	}
	26% {
		opacity: 1;
		transform: rotate(-15deg) scaleY(1.3);
		filter: brightness(2);
		top: 250px;
		left: calc(50% + 30px);
	}
	26.3% {
		opacity: 0.4;
		transform: rotate(-13deg) scaleY(0.9);
		filter: brightness(1.2);
	}
	26.6% {
		opacity: 1;
		transform: rotate(-17deg) scaleY(1.1);
		filter: brightness(2.5);
	}
	27% {
		opacity: 0;
		transform: rotate(-15deg) scaleY(0.5);
		filter: brightness(0.5);
	}
	34% {
		opacity: 1;
		transform: rotate(20deg) scaleY(1.1);
		filter: brightness(2);
		top: 400px;
		left: calc(50% - 80px);
	}
	34.3% {
		opacity: 0.3;
		transform: rotate(18deg) scaleY(0.8);
		filter: brightness(1);
	}
	34.6% {
		opacity: 1;
		transform: rotate(22deg) scaleY(1.2);
		filter: brightness(2.5);
	}
	35% {
		opacity: 0;
		transform: rotate(20deg) scaleY(0.5);
		filter: brightness(0.5);
	}
	42% {
		opacity: 1;
		transform: rotate(-25deg) scaleY(1.2);
		filter: brightness(2);
		top: 300px;
		left: calc(50% + 70px);
	}
	42.3% {
		opacity: 0.4;
		transform: rotate(-23deg) scaleY(0.9);
		filter: brightness(1.2);
	}
	42.6% {
		opacity: 1;
		transform: rotate(-27deg) scaleY(1.1);
		filter: brightness(2.5);
	}
	43% {
		opacity: 0;
		transform: rotate(-25deg) scaleY(0.5);
		filter: brightness(0.5);
	}
	50% {
		opacity: 1;
		transform: rotate(10deg) scaleY(1.1);
		filter: brightness(2);
		top: 380px;
		left: calc(50% - 40px);
	}
	50.3% {
		opacity: 0.3;
		transform: rotate(8deg) scaleY(0.8);
		filter: brightness(1);
	}
	50.6% {
		opacity: 1;
		transform: rotate(12deg) scaleY(1.2);
		filter: brightness(2.5);
	}
	51% {
		opacity: 0;
		transform: rotate(10deg) scaleY(0.5);
		filter: brightness(0.5);
	}
	58% {
		opacity: 1;
		transform: rotate(-20deg) scaleY(1.3);
		filter: brightness(2);
		top: 340px;
		left: calc(50% + 60px);
	}
	58.3% {
		opacity: 0.4;
		transform: rotate(-18deg) scaleY(0.9);
		filter: brightness(1.2);
	}
	58.6% {
		opacity: 1;
		transform: rotate(-22deg) scaleY(1.1);
		filter: brightness(2.5);
	}
	59% {
		opacity: 0;
		transform: rotate(-20deg) scaleY(0.5);
		filter: brightness(0.5);
	}
	66% {
		opacity: 1;
		transform: rotate(30deg) scaleY(1.1);
		filter: brightness(2);
		top: 290px;
		left: calc(50% - 70px);
	}
	66.3% {
		opacity: 0.3;
		transform: rotate(28deg) scaleY(0.8);
		filter: brightness(1);
	}
	66.6% {
		opacity: 1;
		transform: rotate(32deg) scaleY(1.2);
		filter: brightness(2.5);
	}
	67% {
		opacity: 0;
		transform: rotate(30deg) scaleY(0.5);
		filter: brightness(0.5);
	}
	74% {
		opacity: 1;
		transform: rotate(-5deg) scaleY(1.2);
		filter: brightness(2);
		top: 420px;
		left: calc(50% + 20px);
	}
	74.3% {
		opacity: 0.4;
		transform: rotate(-3deg) scaleY(0.9);
		filter: brightness(1.2);
	}
	74.6% {
		opacity: 1;
		transform: rotate(-7deg) scaleY(1.1);
		filter: brightness(2.5);
	}
	75% {
		opacity: 0;
		transform: rotate(-5deg) scaleY(0.5);
		filter: brightness(0.5);
	}
	82% {
		opacity: 1;
		transform: rotate(18deg) scaleY(1.1);
		filter: brightness(2);
		top: 310px;
		left: calc(50% - 50px);
	}
	82.3% {
		opacity: 0.3;
		transform: rotate(16deg) scaleY(0.8);
		filter: brightness(1);
	}
	82.6% {
		opacity: 1;
		transform: rotate(20deg) scaleY(1.2);
		filter: brightness(2.5);
	}
	83% {
		opacity: 0;
		transform: rotate(18deg) scaleY(0.5);
		filter: brightness(0.5);
	}
	90% {
		opacity: 1;
		transform: rotate(-30deg) scaleY(1.3);
		filter: brightness(2);
		top: 370px;
		left: calc(50% + 80px);
	}
	90.3% {
		opacity: 0.4;
		transform: rotate(-28deg) scaleY(0.9);
		filter: brightness(1.2);
	}
	90.6% {
		opacity: 1;
		transform: rotate(-32deg) scaleY(1.1);
		filter: brightness(2.5);
	}
	91% {
		opacity: 0;
		transform: rotate(-30deg) scaleY(0.5);
		filter: brightness(0.5);
	}
}

@keyframes lightningFlash2 {
	0%, 100% {
		opacity: 0;
		transform: rotate(-20deg) scaleY(0.5);
		filter: brightness(0.5);
		top: 320px;
		left: calc(50% - 30px);
	}
	3% {
		opacity: 1;
		transform: rotate(-20deg) scaleY(1);
		filter: brightness(2);
		top: 320px;
		left: calc(50% - 30px);
	}
	3.3% {
		opacity: 0.3;
		transform: rotate(-18deg) scaleY(0.8);
		filter: brightness(1);
	}
	3.6% {
		opacity: 1;
		transform: rotate(-22deg) scaleY(1.1);
		filter: brightness(2.5);
	}
	4% {
		opacity: 0;
		transform: rotate(-20deg) scaleY(0.5);
		filter: brightness(0.5);
	}
	11% {
		opacity: 1;
		transform: rotate(12deg) scaleY(1.2);
		filter: brightness(2);
		top: 270px;
		left: calc(50% + 55px);
	}
	11.3% {
		opacity: 0.4;
		transform: rotate(10deg) scaleY(0.9);
		filter: brightness(1.2);
	}
	11.6% {
		opacity: 1;
		transform: rotate(14deg) scaleY(1.1);
		filter: brightness(2.5);
	}
	12% {
		opacity: 0;
		transform: rotate(12deg) scaleY(0.5);
		filter: brightness(0.5);
	}
	19% {
		opacity: 1;
		transform: rotate(-22deg) scaleY(1.1);
		filter: brightness(2);
		top: 350px;
		left: calc(50% - 65px);
	}
	19.3% {
		opacity: 0.3;
		transform: rotate(-20deg) scaleY(0.8);
		filter: brightness(1);
	}
	19.6% {
		opacity: 1;
		transform: rotate(-24deg) scaleY(1.2);
		filter: brightness(2.5);
	}
	20% {
		opacity: 0;
		transform: rotate(-22deg) scaleY(0.5);
		filter: brightness(0.5);
	}
	27% {
		opacity: 1;
		transform: rotate(18deg) scaleY(1.3);
		filter: brightness(2);
		top: 240px;
		left: calc(50% + 25px);
	}
	27.3% {
		opacity: 0.4;
		transform: rotate(16deg) scaleY(0.9);
		filter: brightness(1.2);
	}
	27.6% {
		opacity: 1;
		transform: rotate(20deg) scaleY(1.1);
		filter: brightness(2.5);
	}
	28% {
		opacity: 0;
		transform: rotate(18deg) scaleY(0.5);
		filter: brightness(0.5);
	}
	35% {
		opacity: 1;
		transform: rotate(-28deg) scaleY(1.1);
		filter: brightness(2);
		top: 390px;
		left: calc(50% - 75px);
	}
	35.3% {
		opacity: 0.3;
		transform: rotate(-26deg) scaleY(0.8);
		filter: brightness(1);
	}
	35.6% {
		opacity: 1;
		transform: rotate(-30deg) scaleY(1.2);
		filter: brightness(2.5);
	}
	36% {
		opacity: 0;
		transform: rotate(-28deg) scaleY(0.5);
		filter: brightness(0.5);
	}
	43% {
		opacity: 1;
		transform: rotate(8deg) scaleY(1.2);
		filter: brightness(2);
		top: 310px;
		left: calc(50% + 65px);
	}
	43.3% {
		opacity: 0.4;
		transform: rotate(6deg) scaleY(0.9);
		filter: brightness(1.2);
	}
	43.6% {
		opacity: 1;
		transform: rotate(10deg) scaleY(1.1);
		filter: brightness(2.5);
	}
	44% {
		opacity: 0;
		transform: rotate(8deg) scaleY(0.5);
		filter: brightness(0.5);
	}
	51% {
		opacity: 1;
		transform: rotate(-15deg) scaleY(1.1);
		filter: brightness(2);
		top: 360px;
		left: calc(50% - 35px);
	}
	51.3% {
		opacity: 0.3;
		transform: rotate(-13deg) scaleY(0.8);
		filter: brightness(1);
	}
	51.6% {
		opacity: 1;
		transform: rotate(-17deg) scaleY(1.2);
		filter: brightness(2.5);
	}
	52% {
		opacity: 0;
		transform: rotate(-15deg) scaleY(0.5);
		filter: brightness(0.5);
	}
	59% {
		opacity: 1;
		transform: rotate(25deg) scaleY(1.3);
		filter: brightness(2);
		top: 330px;
		left: calc(50% + 45px);
	}
	59.3% {
		opacity: 0.4;
		transform: rotate(23deg) scaleY(0.9);
		filter: brightness(1.2);
	}
	59.6% {
		opacity: 1;
		transform: rotate(27deg) scaleY(1.1);
		filter: brightness(2.5);
	}
	60% {
		opacity: 0;
		transform: rotate(25deg) scaleY(0.5);
		filter: brightness(0.5);
	}
	67% {
		opacity: 1;
		transform: rotate(-8deg) scaleY(1.1);
		filter: brightness(2);
		top: 260px;
		left: calc(50% - 55px);
	}
	67.3% {
		opacity: 0.3;
		transform: rotate(-6deg) scaleY(0.8);
		filter: brightness(1);
	}
	67.6% {
		opacity: 1;
		transform: rotate(-10deg) scaleY(1.2);
		filter: brightness(2.5);
	}
	68% {
		opacity: 0;
		transform: rotate(-8deg) scaleY(0.5);
		filter: brightness(0.5);
	}
	75% {
		opacity: 1;
		transform: rotate(22deg) scaleY(1.2);
		filter: brightness(2);
		top: 410px;
		left: calc(50% + 15px);
	}
	75.3% {
		opacity: 0.4;
		transform: rotate(20deg) scaleY(0.9);
		filter: brightness(1.2);
	}
	75.6% {
		opacity: 1;
		transform: rotate(24deg) scaleY(1.1);
		filter: brightness(2.5);
	}
	76% {
		opacity: 0;
		transform: rotate(22deg) scaleY(0.5);
		filter: brightness(0.5);
	}
	83% {
		opacity: 1;
		transform: rotate(-12deg) scaleY(1.1);
		filter: brightness(2);
		top: 300px;
		left: calc(50% - 45px);
	}
	83.3% {
		opacity: 0.3;
		transform: rotate(-10deg) scaleY(0.8);
		filter: brightness(1);
	}
	83.6% {
		opacity: 1;
		transform: rotate(-14deg) scaleY(1.2);
		filter: brightness(2.5);
	}
	84% {
		opacity: 0;
		transform: rotate(-12deg) scaleY(0.5);
		filter: brightness(0.5);
	}
	91% {
		opacity: 1;
		transform: rotate(28deg) scaleY(1.3);
		filter: brightness(2);
		top: 370px;
		left: calc(50% + 75px);
	}
	91.3% {
		opacity: 0.4;
		transform: rotate(26deg) scaleY(0.9);
		filter: brightness(1.2);
	}
	91.6% {
		opacity: 1;
		transform: rotate(30deg) scaleY(1.1);
		filter: brightness(2.5);
	}
	92% {
		opacity: 0;
		transform: rotate(28deg) scaleY(0.5);
		filter: brightness(0.5);
	}
}

/* Lightning bolt animation for JavaScript-created bolts */
@keyframes lightningRandom {
	0%, 100% {
		opacity: 0;
		transform: scaleY(0.5);
		filter: brightness(0.5);
	}
	2% {
		opacity: 1;
		transform: scaleY(1);
		filter: brightness(2);
	}
	2.3% {
		opacity: 0.3;
		transform: scaleY(0.8);
		filter: brightness(1);
	}
	2.6% {
		opacity: 1;
		transform: scaleY(1.1);
		filter: brightness(2.5);
	}
	3% {
		opacity: 0;
		transform: scaleY(0.5);
		filter: brightness(0.5);
	}
	45% {
		opacity: 0;
		transform: scaleY(0.5);
		filter: brightness(0.5);
	}
	48% {
		opacity: 1;
		transform: scaleY(1.2);
		filter: brightness(2);
	}
	48.3% {
		opacity: 0.4;
		transform: scaleY(0.9);
		filter: brightness(1.2);
	}
	48.6% {
		opacity: 1;
		transform: scaleY(1.1);
		filter: brightness(2.5);
	}
	49% {
		opacity: 0;
		transform: scaleY(0.5);
		filter: brightness(0.5);
	}
}

.lightning-bolt-screen {
	position: fixed;
	z-index: 9998;
	pointer-events: none;
}

@media (max-width: 767px) {
	#cyberattack-container .roomimage-right::before,
	#cyberattackteams .roomimage-left::before,
	.lightning-bolt {
		width: 3px;
		height: 40px;
	}
	
	.lightning-bolt-screen {
		width: 3px;
	}
}

/* Jackpot - Gold (Casino in Macau) */
#jp1 {
	filter: none !important;
}

#jp1:hover {
	box-shadow: 0 20px 40px rgba(255, 215, 0, 0.6), 0 0 60px rgba(255, 223, 0, 0.5), 0 0 80px rgba(218, 165, 32, 0.3);
}

#jp1::after {
	background: linear-gradient(135deg, rgba(255, 215, 0, 0.25) 0%, rgba(255, 223, 0, 0.15) 50%, transparent 60%);
}

/* Jackpot Top Secret - gleicher goldener Glow wie Jackpot */
#jackpotmore .zoom:hover {
	box-shadow: 0 20px 40px rgba(255, 215, 0, 0.6), 0 0 60px rgba(255, 223, 0, 0.5), 0 0 80px rgba(218, 165, 32, 0.3) !important;
}

#jackpotmore .zoom::after {
	background: linear-gradient(135deg, rgba(255, 215, 0, 0.25) 0%, rgba(255, 223, 0, 0.15) 50%, transparent 60%) !important;
}

#jackpotmore .roombox:hover {
	box-shadow: 0 20px 40px rgba(255, 215, 0, 0.5), 0 0 0 1px rgba(255, 223, 0, 0.5), 0 0 60px rgba(218, 165, 32, 0.4) !important;
}

/* Lantern light effect for Jackpot image */
#jackpot-container .roomimage-left {
	position: relative;
	overflow: visible !important;
}

#jackpot-container .roomimage-left::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 10%;
	width: 45px;
	height: 45px;
	background: radial-gradient(ellipse at center, 
		rgba(255, 220, 100, 1) 0%,
		rgba(255, 200, 80, 0.6) 25%,
		rgba(255, 180, 60, 0.3) 50%,
		rgba(255, 160, 40, 0.16) 75%,
		transparent 100%
	);
	z-index: 15;
	animation: candleFlicker 4s ease-in-out infinite;
	pointer-events: none;
	transform: translate(-50%, -50%);
	filter: blur(9px);
	border-radius: 50%;
}

#jackpot-container .roomimage-left::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 10%;
	width: 31px;
	height: 89px;
	background: radial-gradient(ellipse 31px 89px at center, 
		rgba(255, 220, 100, 0.5) 0%,
		rgba(255, 200, 80, 0.3) 20%,
		rgba(255, 180, 60, 0.16) 40%,
		rgba(255, 160, 40, 0.08) 60%,
		transparent 80%
	);
	z-index: 14;
	animation: candleBeam 5s ease-in-out infinite;
	pointer-events: none;
	transform: translate(-50%, -50%) rotate(40deg);
	filter: blur(11px);
	clip-path: ellipse(15px 45px at center);
}


@keyframes candleFlicker {
	0% {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1) translateX(0px) translateY(0px);
		filter: blur(9px);
	}
	5% {
		opacity: 0.9;
		transform: translate(-50%, -50%) scale(0.98) translateX(1px) translateY(-0.5px);
		filter: blur(10px);
	}
	10% {
		opacity: 1.05;
		transform: translate(-50%, -50%) scale(1.02) translateX(-0.5px) translateY(0.5px);
		filter: blur(9px);
	}
	15% {
		opacity: 0.92;
		transform: translate(-50%, -50%) scale(0.99) translateX(0.5px) translateY(-0.5px);
		filter: blur(10px);
	}
	20% {
		opacity: 1.02;
		transform: translate(-50%, -50%) scale(1.01) translateX(-0.5px) translateY(0.5px);
		filter: blur(9px);
	}
	25% {
		opacity: 0.94;
		transform: translate(-50%, -50%) scale(0.99) translateX(0.5px) translateY(0.5px);
		filter: blur(10px);
	}
	30% {
		opacity: 1.03;
		transform: translate(-50%, -50%) scale(1.02) translateX(0px) translateY(-0.5px);
		filter: blur(9px);
	}
	35% {
		opacity: 0.91;
		transform: translate(-50%, -50%) scale(0.98) translateX(-0.5px) translateY(0.5px);
		filter: blur(10px);
	}
	40% {
		opacity: 1.01;
		transform: translate(-50%, -50%) scale(1.01) translateX(0.5px) translateY(-0.5px);
		filter: blur(9px);
	}
	45% {
		opacity: 0.95;
		transform: translate(-50%, -50%) scale(0.99) translateX(-0.5px) translateY(0.5px);
		filter: blur(10px);
	}
	50% {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1) translateX(0px) translateY(0px);
		filter: blur(9px);
	}
	55% {
		opacity: 0.93;
		transform: translate(-50%, -50%) scale(0.99) translateX(0.5px) translateY(0.5px);
		filter: blur(10px);
	}
	60% {
		opacity: 1.04;
		transform: translate(-50%, -50%) scale(1.02) translateX(-0.5px) translateY(-0.5px);
		filter: blur(9px);
	}
	65% {
		opacity: 0.92;
		transform: translate(-50%, -50%) scale(0.98) translateX(-0.5px) translateY(0.5px);
		filter: blur(10px);
	}
	70% {
		opacity: 1.02;
		transform: translate(-50%, -50%) scale(1.01) translateX(0.5px) translateY(-0.5px);
		filter: blur(9px);
	}
	75% {
		opacity: 0.94;
		transform: translate(-50%, -50%) scale(0.99) translateX(0.5px) translateY(0.5px);
		filter: blur(10px);
	}
	80% {
		opacity: 1.03;
		transform: translate(-50%, -50%) scale(1.02) translateX(-0.5px) translateY(-0.5px);
		filter: blur(9px);
	}
	85% {
		opacity: 0.96;
		transform: translate(-50%, -50%) scale(0.99) translateX(0.5px) translateY(0.5px);
		filter: blur(10px);
	}
	90% {
		opacity: 1.01;
		transform: translate(-50%, -50%) scale(1) translateX(-0.5px) translateY(-0.5px);
		filter: blur(9px);
	}
	95% {
		opacity: 0.97;
		transform: translate(-50%, -50%) scale(0.99) translateX(0.5px) translateY(0.5px);
		filter: blur(10px);
	}
	100% {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1) translateX(0px) translateY(0px);
		filter: blur(9px);
	}
}

@keyframes candleBeam {
	0% {
		opacity: 0.7;
		transform: translate(-50%, -50%) rotate(40deg) scaleY(1) scaleX(1);
		filter: blur(11px);
	}
	12% {
		opacity: 0.75;
		transform: translate(-50%, -50%) rotate(40.3deg) scaleY(1.01) scaleX(1.005);
		filter: blur(11px);
	}
	24% {
		opacity: 0.68;
		transform: translate(-50%, -50%) rotate(39.7deg) scaleY(0.99) scaleX(0.995);
		filter: blur(11px);
	}
	35% {
		opacity: 0.78;
		transform: translate(-50%, -50%) rotate(40.5deg) scaleY(1.02) scaleX(1.01);
		filter: blur(11px);
	}
	46% {
		opacity: 0.66;
		transform: translate(-50%, -50%) rotate(39.5deg) scaleY(0.98) scaleX(0.99);
		filter: blur(11px);
	}
	57% {
		opacity: 0.74;
		transform: translate(-50%, -50%) rotate(40.2deg) scaleY(1.01) scaleX(1.005);
		filter: blur(11px);
	}
	68% {
		opacity: 0.7;
		transform: translate(-50%, -50%) rotate(39.9deg) scaleY(0.99) scaleX(0.995);
		filter: blur(11px);
	}
	78% {
		opacity: 0.76;
		transform: translate(-50%, -50%) rotate(40.4deg) scaleY(1.02) scaleX(1.01);
		filter: blur(11px);
	}
	88% {
		opacity: 0.69;
		transform: translate(-50%, -50%) rotate(39.6deg) scaleY(0.98) scaleX(0.99);
		filter: blur(11px);
	}
	96% {
		opacity: 0.72;
		transform: translate(-50%, -50%) rotate(40deg) scaleY(1.005) scaleX(1);
		filter: blur(11px);
	}
	100% {
		opacity: 0.7;
		transform: translate(-50%, -50%) rotate(40deg) scaleY(1) scaleX(1);
		filter: blur(11px);
	}
}

/* Red flickering light effect on right side of Jackpot image */
.red-lantern-glow {
	position: absolute;
	top: 50%;
	left: 90%;
	width: 67px;
	height: 67px;
	background: radial-gradient(ellipse at center, 
		rgba(255, 50, 50, 1) 0%,
		rgba(255, 30, 30, 0.6) 25%,
		rgba(220, 20, 20, 0.3) 50%,
		rgba(200, 10, 10, 0.16) 75%,
		transparent 100%
	);
	z-index: 15;
	animation: candleFlickerRed 4.2s ease-in-out infinite;
	pointer-events: none;
	transform: translate(-50%, -50%);
	filter: blur(13px);
	border-radius: 50%;
}

.red-lantern-beam {
	position: absolute;
	top: 50%;
	left: 90%;
	width: 47px;
	height: 133px;
	background: radial-gradient(ellipse 47px 133px at center, 
		rgba(255, 50, 50, 0.5) 0%,
		rgba(255, 30, 30, 0.3) 20%,
		rgba(220, 20, 20, 0.16) 40%,
		rgba(200, 10, 10, 0.08) 60%,
		transparent 80%
	);
	z-index: 14;
	animation: candleBeamRed 5.3s ease-in-out infinite;
	pointer-events: none;
	transform: translate(-50%, -50%) rotate(20deg);
	filter: blur(17px);
	clip-path: ellipse(23px 67px at center);
}

@keyframes candleFlickerRed {
	0% {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1) translateX(0px) translateY(0px);
		filter: blur(13px);
	}
	5% {
		opacity: 0.9;
		transform: translate(-50%, -50%) scale(0.98) translateX(1px) translateY(-0.5px);
		filter: blur(14px);
	}
	10% {
		opacity: 1.05;
		transform: translate(-50%, -50%) scale(1.02) translateX(-0.5px) translateY(0.5px);
		filter: blur(13px);
	}
	15% {
		opacity: 0.92;
		transform: translate(-50%, -50%) scale(0.99) translateX(0.5px) translateY(-0.5px);
		filter: blur(14px);
	}
	20% {
		opacity: 1.02;
		transform: translate(-50%, -50%) scale(1.01) translateX(-0.5px) translateY(0.5px);
		filter: blur(13px);
	}
	25% {
		opacity: 0.94;
		transform: translate(-50%, -50%) scale(0.99) translateX(0.5px) translateY(0.5px);
		filter: blur(14px);
	}
	30% {
		opacity: 1.03;
		transform: translate(-50%, -50%) scale(1.02) translateX(0px) translateY(-0.5px);
		filter: blur(13px);
	}
	35% {
		opacity: 0.91;
		transform: translate(-50%, -50%) scale(0.98) translateX(-0.5px) translateY(0.5px);
		filter: blur(14px);
	}
	40% {
		opacity: 1.01;
		transform: translate(-50%, -50%) scale(1.01) translateX(0.5px) translateY(-0.5px);
		filter: blur(13px);
	}
	45% {
		opacity: 0.95;
		transform: translate(-50%, -50%) scale(0.99) translateX(-0.5px) translateY(0.5px);
		filter: blur(14px);
	}
	50% {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1) translateX(0px) translateY(0px);
		filter: blur(13px);
	}
	55% {
		opacity: 0.93;
		transform: translate(-50%, -50%) scale(0.99) translateX(0.5px) translateY(0.5px);
		filter: blur(14px);
	}
	60% {
		opacity: 1.04;
		transform: translate(-50%, -50%) scale(1.02) translateX(-0.5px) translateY(-0.5px);
		filter: blur(13px);
	}
	65% {
		opacity: 0.92;
		transform: translate(-50%, -50%) scale(0.98) translateX(-0.5px) translateY(0.5px);
		filter: blur(14px);
	}
	70% {
		opacity: 1.02;
		transform: translate(-50%, -50%) scale(1.01) translateX(0.5px) translateY(-0.5px);
		filter: blur(13px);
	}
	75% {
		opacity: 0.94;
		transform: translate(-50%, -50%) scale(0.99) translateX(0.5px) translateY(0.5px);
		filter: blur(14px);
	}
	80% {
		opacity: 1.03;
		transform: translate(-50%, -50%) scale(1.02) translateX(-0.5px) translateY(-0.5px);
		filter: blur(13px);
	}
	85% {
		opacity: 0.96;
		transform: translate(-50%, -50%) scale(0.99) translateX(0.5px) translateY(0.5px);
		filter: blur(14px);
	}
	90% {
		opacity: 1.01;
		transform: translate(-50%, -50%) scale(1) translateX(-0.5px) translateY(-0.5px);
		filter: blur(13px);
	}
	95% {
		opacity: 0.97;
		transform: translate(-50%, -50%) scale(0.99) translateX(0.5px) translateY(0.5px);
		filter: blur(14px);
	}
	100% {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1) translateX(0px) translateY(0px);
		filter: blur(13px);
	}
}

@keyframes candleBeamRed {
	0% {
		opacity: 0.7;
		transform: translate(-50%, -50%) rotate(20deg) scaleY(1) scaleX(1);
		filter: blur(17px);
	}
	12% {
		opacity: 0.75;
		transform: translate(-50%, -50%) rotate(20.3deg) scaleY(1.01) scaleX(1.005);
		filter: blur(17px);
	}
	24% {
		opacity: 0.68;
		transform: translate(-50%, -50%) rotate(19.7deg) scaleY(0.99) scaleX(0.995);
		filter: blur(17px);
	}
	35% {
		opacity: 0.78;
		transform: translate(-50%, -50%) rotate(20.5deg) scaleY(1.02) scaleX(1.01);
		filter: blur(17px);
	}
	46% {
		opacity: 0.66;
		transform: translate(-50%, -50%) rotate(19.5deg) scaleY(0.98) scaleX(0.99);
		filter: blur(17px);
	}
	57% {
		opacity: 0.74;
		transform: translate(-50%, -50%) rotate(20.2deg) scaleY(1.01) scaleX(1.005);
		filter: blur(17px);
	}
	68% {
		opacity: 0.7;
		transform: translate(-50%, -50%) rotate(19.9deg) scaleY(0.99) scaleX(0.995);
		filter: blur(17px);
	}
	78% {
		opacity: 0.76;
		transform: translate(-50%, -50%) rotate(20.4deg) scaleY(1.02) scaleX(1.01);
		filter: blur(17px);
	}
	88% {
		opacity: 0.69;
		transform: translate(-50%, -50%) rotate(19.6deg) scaleY(0.98) scaleX(0.99);
		filter: blur(17px);
	}
	96% {
		opacity: 0.72;
		transform: translate(-50%, -50%) rotate(20deg) scaleY(1.005) scaleX(1);
		filter: blur(17px);
	}
	100% {
		opacity: 0.7;
		transform: translate(-50%, -50%) rotate(20deg) scaleY(1) scaleX(1);
		filter: blur(17px);
	}
}

@media (max-width: 767px) {
	#jackpot-container .roomimage-left::before {
		width: 45px;
		height: 45px;
		left: 15%;
	}
	
	#jackpot-container .roomimage-left::after {
		width: 31px;
		height: 89px;
		left: 15%;
	}
	
	.red-lantern-glow {
		width: 45px;
		height: 45px;
		left: 85%;
	}
	
	.red-lantern-beam {
		width: 31px;
		height: 89px;
		left: 85%;
	}
}

/* Titanik - Neon Cyan Blue (Water/Ship theme) */
#ti1,
#ti1-more {
	animation: gentleSway 8s ease-in-out infinite;
	transform-origin: center center;
}

#ti1:hover {
	box-shadow: 0 20px 40px rgba(0, 191, 255, 0.6), 0 0 60px rgba(0, 255, 255, 0.4);
}

#ti1::after {
	background: linear-gradient(135deg, rgba(0, 191, 255, 0.25) 0%, rgba(0, 255, 255, 0.15) 50%, transparent 60%);
}

/* Titanik 2.0 Top Secret - gleicher Cyan/Blue Glow wie Titanik */
#titanikmore .zoom:hover {
	box-shadow: 0 20px 40px rgba(0, 191, 255, 0.6), 0 0 60px rgba(0, 255, 255, 0.4) !important;
}

#titanikmore .zoom::after {
	background: linear-gradient(135deg, rgba(0, 191, 255, 0.25) 0%, rgba(0, 255, 255, 0.15) 50%, transparent 60%) !important;
}

#titanikmore .roombox:hover {
	box-shadow: 0 20px 40px rgba(0, 191, 255, 0.5), 0 0 0 1px rgba(0, 191, 255, 0.5), 0 0 60px rgba(0, 255, 255, 0.3) !important;
}

/* Gentle swaying animation for Titanic image (like gentle sea motion) */
@keyframes gentleSway {
	0%, 100% {
		transform: rotate(0deg) translateY(0px);
	}
	25% {
		transform: rotate(0.8deg) translateY(-3px);
	}
	50% {
		transform: rotate(0deg) translateY(0px);
	}
	75% {
		transform: rotate(-0.8deg) translateY(3px);
	}
}

/* Outdoor Room-specific colors */
/* Schattenläufer - White/Gray Glow (Dark/Mystery theme) */
#sl1:hover {
	box-shadow: 0 20px 40px rgba(255, 255, 255, 0.4), 0 0 60px rgba(200, 200, 200, 0.3), 0 0 80px rgba(150, 150, 150, 0.2);
}

#sl1::after {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(200, 200, 200, 0.1) 50%, transparent 60%);
}

/* Safe House - Neon Blue-Gray (Cloudy/Danger theme) */
#sh1:hover {
	box-shadow: 0 20px 40px rgba(100, 149, 237, 0.6), 0 0 60px rgba(0, 191, 255, 0.4);
}

#sh1::after {
	background: linear-gradient(135deg, rgba(100, 149, 237, 0.25) 0%, rgba(0, 191, 255, 0.15) 50%, transparent 60%);
}

/* Digitale Bomben-Counter für Safe House */
.bomb-counter {
	position: fixed;
	z-index: 99998;
	pointer-events: none;
}

.bomb-counter-display {
	background: rgba(0, 0, 0, 0.95);
	border: 3px solid rgba(255, 0, 0, 0.9);
	border-radius: 8px;
	padding: 12px 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-width: 192px;
	transform: scale(0.6);
	transform-origin: center center;
}

/* 7-Segment-Anzeige Container */
.seven-segment-digit {
	position: relative;
	width: 50px;
	height: 80px;
	transform: scale(1);
}

/* 7-Segment-Segmente */
.segment {
	position: absolute;
	background: rgba(255, 0, 0, 0.1);
	border-radius: 3px;
	transition: background 0.1s ease;
}

.segment.active {
	background: #ff0000;
	box-shadow: 
		0 0 10px rgba(255, 0, 0, 1),
		0 0 20px rgba(255, 0, 0, 0.8),
		inset 0 0 10px rgba(255, 100, 100, 0.5);
}

/* Segment a (oben) */
.segment-a {
	top: 0;
	left: 10px;
	width: 30px;
	height: 8px;
}

/* Segment b (oben-rechts) */
.segment-b {
	top: 8px;
	right: 0;
	width: 8px;
	height: 30px;
}

/* Segment c (unten-rechts) */
.segment-c {
	bottom: 8px;
	right: 0;
	width: 8px;
	height: 30px;
}

/* Segment d (unten) */
.segment-d {
	bottom: 0;
	left: 10px;
	width: 30px;
	height: 8px;
}

/* Segment e (unten-links) */
.segment-e {
	bottom: 8px;
	left: 0;
	width: 8px;
	height: 30px;
}

/* Segment f (oben-links) */
.segment-f {
	top: 8px;
	left: 0;
	width: 8px;
	height: 30px;
}

/* Segment g (mitte) */
.segment-g {
	top: 50%;
	left: 10px;
	transform: translateY(-50%);
	width: 30px;
	height: 8px;
}

/* Doppelpunkt */
.bomb-counter-display .colon {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 15px;
	width: 20px;
	height: 80px;
}

.bomb-counter-display .colon span {
	width: 12px;
	height: 12px;
	background: #ff0000;
	border-radius: 50%;
	box-shadow: 
		0 0 10px rgba(255, 0, 0, 1),
		0 0 20px rgba(255, 0, 0, 0.8);
	animation: colonBlink 1s ease-in-out infinite;
	margin: 0 auto;
}

.bomb-counter-display .colon span:nth-child(2) {
	animation-delay: 0.5s;
}

.bomb-counter-display.warning {
	animation: bombCounterBlink 0.3s ease infinite;
}

@keyframes colonBlink {
	0%, 50% {
		opacity: 1;
	}
	51%, 100% {
		opacity: 0.2;
	}
}

@keyframes bombCounterFadeIn {
	0% {
		opacity: 0;
		transform: translate(-50%, -50%) scale(0.8);
	}
	100% {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1);
	}
}

@keyframes bombCounterFadeOut {
	0% {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1);
	}
	100% {
		opacity: 0;
		transform: translate(-50%, -50%) scale(0.8);
	}
}

@keyframes bombCounterBlink {
	0%, 100% {
		opacity: 1;
		filter: brightness(1);
	}
	50% {
		opacity: 0.7;
		filter: brightness(1.5);
	}
}

@media (max-width: 767px) {
	.bomb-counter-display {
		font-size: 2rem;
		padding: 12px 20px;
		min-width: 60px;
	}
	
	/* FAQ-Texte als Blocksatz auf Mobile */
	#faq .col-md-9 p,
	#faq .col-md-9 h5 + p {
		text-align: justify !important;
		hyphens: auto;
		-webkit-hyphens: auto;
		-moz-hyphens: auto;
		word-spacing: 0.1em;
	}
}

/* Safe House Top Secret - gleicher Blue-Gray Glow wie Safe House */
#safehousemore .zoom:hover {
	box-shadow: 0 20px 40px rgba(100, 149, 237, 0.6), 0 0 60px rgba(0, 191, 255, 0.4) !important;
}

#safehousemore .zoom::after {
	background: linear-gradient(135deg, rgba(100, 149, 237, 0.25) 0%, rgba(0, 191, 255, 0.15) 50%, transparent 60%) !important;
}

#safehousemore .roombox:hover {
	box-shadow: 0 20px 40px rgba(100, 149, 237, 0.5), 0 0 0 1px rgba(100, 149, 237, 0.5), 0 0 60px rgba(0, 191, 255, 0.3) !important;
}

/* Skywatch - Neon Orange-Pink (Meteor shower theme) */
#sw1:hover {
	box-shadow: 0 20px 40px rgba(255, 100, 0, 0.6), 0 0 60px rgba(255, 20, 147, 0.4);
}

#sw1::after {
	background: linear-gradient(135deg, rgba(255, 100, 0, 0.25) 0%, rgba(255, 20, 147, 0.15) 50%, transparent 60%);
}

/* Meteoritenschauer */
.meteor {
	position: fixed;
	z-index: 9997;
	pointer-events: none;
}


/* Skywatch Top Secret - gleicher Orange-Pink Glow wie Skywatch */
#skywatchmore .zoom:hover {
	box-shadow: 0 20px 40px rgba(255, 100, 0, 0.6), 0 0 60px rgba(255, 20, 147, 0.4) !important;
}

#skywatchmore .zoom::after {
	background: linear-gradient(135deg, rgba(255, 100, 0, 0.25) 0%, rgba(255, 20, 147, 0.15) 50%, transparent 60%) !important;
}

#skywatchmore .roombox:hover {
	box-shadow: 0 20px 40px rgba(255, 100, 0, 0.5), 0 0 0 1px rgba(255, 100, 0, 0.5), 0 0 60px rgba(255, 20, 147, 0.3) !important;
}

/* Mord am Bischof - Neon Amber (Church/Wood theme) */
#mf1:hover {
	box-shadow: 0 20px 40px rgba(255, 191, 0, 0.6), 0 0 60px rgba(255, 140, 0, 0.4);
}

#mf1:hover::after {
	background: linear-gradient(135deg, rgba(255, 191, 0, 0.3) 0%, rgba(255, 140, 0, 0.2) 50%, transparent 70%);
}

#mordambischof {
	text-shadow: 0 0 20px rgba(255, 191, 0, 0.8), 0 0 30px rgba(255, 140, 0, 0.5);
	transition: all 0.3s ease;
}

#mordambischof:hover {
	text-shadow: 0 0 20px rgba(255, 191, 0, 1), 0 0 40px rgba(255, 140, 0, 0.8);
	transform: translateX(10px);
}

/* Modern Room Box with better mobile support - Sci-Fi Neon Style */
.roombox {
	color: #e0e0e0;
	background: linear-gradient(135deg, rgba(10, 10, 30, 0.9) 0%, rgba(20, 10, 40, 0.9) 50%, rgba(10, 10, 30, 0.9) 100%);
	padding: 40px 24px;
	box-shadow: 
		0 10px 30px rgba(0, 0, 0, 0.7), 
		0 0 0 1px rgba(0, 255, 255, 0.2),
		inset 0 0 20px rgba(0, 255, 255, 0.05);
	z-index: 10;
	border-radius: 8px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 0.8s ease forwards;
	backdrop-filter: blur(10px);
	position: relative;
}

.roombox::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, 
		rgba(0, 255, 255, 0.05) 0%, 
		transparent 30%, 
		transparent 70%, 
		rgba(255, 0, 255, 0.05) 100%);
	border-radius: 8px;
	pointer-events: none;
	z-index: -1;
}

.roombox:hover {
	transform: translateY(-8px);
}

@media (min-width: 768px) {
	.roombox {
		padding: 70px 44px;
	}
}

/* Scroll reveal animation */
@keyframes fadeInUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.reveal {
	opacity: 0;
	transform: translateY(50px);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
	opacity: 1;
	transform: translateY(0);
}

/* Improved Image positioning for mobile */
.roomimage-left {
	margin-right: 0;
	margin-bottom: 0;
	z-index: 5;
}

.roomimage-right {
	margin-left: 0;
	margin-bottom: 0;
	z-index: 5;
}

@media (min-width: 768px) {
	.roomimage-left {
		margin-right: -70px;
		margin-bottom: 0;
	}

	.roomimage-right {
		margin-left: -10px;
		margin-bottom: 0;
	}
}

/* Fix overlap issue in mobile view for contact section */
@media (max-width: 767px) {
	#kontakt .row {
		margin-bottom: 0;
	}
	
	#kontakt .col-md-5.order-md-3 {
		margin-bottom: 40px !important;
		padding-bottom: 0 !important;
		display: block !important;
	}
	
	#kontakt .col-md-5.order-md-3 a {
		display: block;
		margin-bottom: 0 !important;
	}
	
	#kontakt .col-md-5.order-md-3 img,
	#kontakt .col-md-5.order-md-3 .zoom {
		margin-bottom: 0 !important;
		display: block;
		width: 100%;
	}
	
	#kontakt .col-md-5.order-md-2.roombox {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
		position: relative;
		z-index: 1;
		clear: both;
	}
}

/* Pulsing Book Button */
.sbuchen {
	color: #ffffff;
	background: linear-gradient(135deg, #00ffff 0%, #ff00ff 100%);
	border: none;
	padding: 12px 28px;
	border-radius: 6px;
	font-weight: 600;
	letter-spacing: 0.5px;
	box-shadow: 0 4px 15px rgba(0, 255, 255, 0.6), 0 0 30px rgba(255, 0, 255, 0.4);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

/* Room-specific roombox glow colors */
/* Indoor Rooms */
#aliengrill-container .roombox:hover {
	box-shadow: 0 20px 40px rgba(57, 255, 20, 0.5), 0 0 0 1px rgba(57, 255, 20, 0.5), 0 0 60px rgba(0, 255, 127, 0.3);
}

#cyberattack-container .roombox:hover {
	box-shadow: 0 20px 40px rgba(0, 255, 255, 0.5), 0 0 0 1px rgba(0, 255, 255, 0.5), 0 0 60px rgba(255, 0, 255, 0.3);
}

#cyberattackteams .roombox:hover {
	box-shadow: 0 20px 40px rgba(0, 255, 255, 0.5), 0 0 0 1px rgba(0, 255, 255, 0.5), 0 0 60px rgba(255, 0, 255, 0.3);
}

#jackpot-container .roombox:hover {
	box-shadow: 0 20px 40px rgba(255, 215, 0, 0.5), 0 0 0 1px rgba(255, 223, 0, 0.5), 0 0 60px rgba(218, 165, 32, 0.4);
}

#titanik-container .roombox:hover {
	box-shadow: 0 20px 40px rgba(0, 191, 255, 0.5), 0 0 0 1px rgba(0, 191, 255, 0.5), 0 0 60px rgba(0, 255, 255, 0.3);
}

/* Outdoor Rooms */
#schattenlaeufer-container .roombox:hover {
	box-shadow: 0 20px 40px rgba(255, 255, 255, 0.4), 0 0 0 1px rgba(220, 220, 220, 0.5), 0 0 60px rgba(200, 200, 200, 0.3);
}

#safehouse-container .roombox:hover {
	box-shadow: 0 20px 40px rgba(100, 149, 237, 0.5), 0 0 0 1px rgba(100, 149, 237, 0.5), 0 0 60px rgba(0, 191, 255, 0.3);
}

#skywatch-container .roombox:hover {
	box-shadow: 0 20px 40px rgba(255, 100, 0, 0.5), 0 0 0 1px rgba(255, 100, 0, 0.5), 0 0 60px rgba(255, 20, 147, 0.3);
}

#mordfall .roombox:hover {
	box-shadow: 0 20px 40px rgba(255, 191, 0, 0.5), 0 0 0 1px rgba(255, 191, 0, 0.5), 0 0 60px rgba(255, 140, 0, 0.3);
}

.sbuchen::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	transform: translate(-50%, -50%);
	transition: width 0.6s ease, height 0.6s ease;
}

.sbuchen:hover::before {
	width: 300px;
	height: 300px;
}

.sbuchen:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 255, 255, 0.8), 0 0 40px rgba(255, 0, 255, 0.6);
}

.sbuchen:active {
	transform: translateY(0);
}

/* Icon improvements */
.features-list__icon {
	font-size: 32px;
	line-height: 1em;
	height: 1em;
	margin-right: 1rem;
	color: #00ffff;
	filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.8)) drop-shadow(0 0 20px rgba(255, 0, 255, 0.5));
	transition: transform 0.3s ease, filter 0.3s ease;
}

.features-list__icon:hover {
	transform: scale(1.1) rotate(5deg);
	filter: drop-shadow(0 0 15px rgba(0, 255, 255, 1)) drop-shadow(0 0 30px rgba(255, 0, 255, 0.8));
}

@media (min-width: 768px) {
	.features-list__icon {
		font-size: 56px;
		margin-right: 2rem;
	}
}

/* Carousel improvements */
.carousel-item {
	transition: transform 0.8s ease, opacity 0.8s ease;
}

.carousel-item img {
	object-fit: cover;
}

/* Reduce carousel height on desktop */
@media (min-width: 768px) {
	#topCarousel {
		max-height: 50vh;
		overflow: hidden;
		position: relative;
		z-index: 10;
	}

	#topCarousel .carousel-item img {
		height: 50vh;
		object-fit: cover;
	}
}

.carousel-caption {
	animation: fadeIn 1s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* News ticker Sci-Fi Neon styling */
.breaking-news {
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 
		0 4px 15px rgba(0, 0, 0, 0.5),
		0 0 20px rgba(0, 255, 255, 0.3),
		inset 0 0 10px rgba(0, 255, 255, 0.1);
	position: relative;
	z-index: 20;
	background: linear-gradient(135deg, rgba(10, 10, 26, 0.85) 0%, rgba(26, 10, 46, 0.85) 50%, rgba(10, 10, 26, 0.85) 100%);
	border: 1px solid rgba(0, 255, 255, 0.4);
	backdrop-filter: blur(10px);
}

.breaking-news .sbuchen {
	background: transparent;
	box-shadow: none;
	color: #00ffff;
	text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
	font-weight: 700;
	padding: 12px 16px;
	border-right: 1px solid rgba(0, 255, 255, 0.3);
}

.news-scroll {
	padding: 12px 0;
	background: linear-gradient(90deg, 
		rgba(10, 10, 26, 0.85) 0%, 
		rgba(26, 10, 46, 0.85) 25%,
		rgba(10, 10, 26, 0.85) 50%,
		rgba(26, 10, 46, 0.85) 75%,
		rgba(10, 10, 26, 0.85) 100%) !important;
	color: #e0e0e0;
	text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

.news-scroll a.text-light {
	color: #00ffff !important;
	text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
	text-decoration: none;
	transition: all 0.3s ease;
}

.news-scroll a.text-light:hover {
	color: #ffffff !important;
	text-shadow: 0 0 15px rgba(0, 255, 255, 1), 0 0 25px rgba(255, 0, 255, 0.6);
}

/* Room title styling */
.roombox h2 {
	text-shadow: 0 2px 10px rgba(0, 255, 255, 0.8), 0 0 20px rgba(255, 0, 255, 0.5);
	margin-bottom: 1rem;
}

/* Room-specific title colors */
#aliengrill {
	text-shadow: 0 2px 10px rgba(57, 255, 20, 0.8), 0 0 20px rgba(0, 255, 127, 0.5);
}

/* Alien Grill Top Secret Titel - gleicher grüner Glow */
#aliengrillmore h2 {
	text-shadow: 0 2px 10px rgba(57, 255, 20, 0.8), 0 0 20px rgba(0, 255, 127, 0.5);
}

#cyberattack {
	text-shadow: 0 2px 10px rgba(0, 255, 255, 0.8), 0 0 20px rgba(255, 0, 255, 0.5);
}

/* Cyber Attack Top Secret Titel - gleicher Cyan/Magenta Glow */
#cyberattackmore h2 {
	text-shadow: 0 2px 10px rgba(0, 255, 255, 0.8), 0 0 20px rgba(255, 0, 255, 0.5);
}

#jackpot {
	text-shadow: 0 2px 10px rgba(255, 215, 0, 0.9), 0 0 20px rgba(255, 223, 0, 0.7), 0 0 30px rgba(218, 165, 32, 0.5);
}

/* Jackpot Top Secret Titel - gleicher goldener Glow */
#jackpotmore h2 {
	text-shadow: 0 2px 10px rgba(255, 215, 0, 0.9), 0 0 20px rgba(255, 223, 0, 0.7), 0 0 30px rgba(218, 165, 32, 0.5);
}

#titanik {
	text-shadow: 0 2px 10px rgba(0, 191, 255, 0.8), 0 0 20px rgba(0, 255, 255, 0.5);
}

/* Titanik 2.0 Top Secret Titel - gleicher Cyan/Blue Glow */
#titanikmore h2 {
	text-shadow: 0 2px 10px rgba(0, 191, 255, 0.8), 0 0 20px rgba(0, 255, 255, 0.5);
}

/* Outdoor room-specific title colors */
#schattenlaeufer {
	text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(220, 220, 220, 0.6), 0 0 30px rgba(180, 180, 180, 0.4);
}

#safehouse {
	text-shadow: 0 2px 10px rgba(100, 149, 237, 0.8), 0 0 20px rgba(0, 191, 255, 0.5);
}

/* Safe House Top Secret Titel - gleicher Blue-Gray Glow */
#safehousemore h2 {
	text-shadow: 0 2px 10px rgba(100, 149, 237, 0.8), 0 0 20px rgba(0, 191, 255, 0.5);
}

#skywatch {
	text-shadow: 0 2px 10px rgba(255, 100, 0, 0.8), 0 0 20px rgba(255, 20, 147, 0.5);
}

/* Skywatch Top Secret Titel - gleicher Orange-Pink Glow */
#skywatchmore h2 {
	text-shadow: 0 2px 10px rgba(255, 100, 0, 0.8), 0 0 20px rgba(255, 20, 147, 0.5);
}

/* Improved card text */
.roombox .card-text {
	line-height: 1.8;
	font-size: 0.95rem;
}

@media (min-width: 768px) {
	.roombox .card-text {
		font-size: 1rem;
	}
}

/* Loading animation for images */
img {
	animation: imageLoad 0.5s ease;
}

@keyframes imageLoad {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* Sci-Fi Neon Navbar */
.navbar {
	backdrop-filter: blur(15px);
	background: linear-gradient(135deg, rgba(10, 10, 30, 0.95) 0%, rgba(20, 10, 40, 0.95) 100%) !important;
	box-shadow: 
		0 2px 10px rgba(0, 0, 0, 0.5),
		0 0 20px rgba(0, 255, 255, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	border-bottom: 1px solid rgba(0, 255, 255, 0.3);
}

.navbar-dark .navbar-nav .nav-link {
	color: rgba(255, 255, 255, 0.9) !important;
	transition: all 0.3s ease;
	text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
	color: #00ffff !important;
	text-shadow: 0 0 15px rgba(0, 255, 255, 0.8), 0 0 25px rgba(255, 0, 255, 0.5);
	transform: translateY(-1px);
}

.navbar-dark .navbar-nav .nav-link.active {
	color: #00ffff !important;
	text-shadow: 0 0 15px rgba(0, 255, 255, 1), 0 0 25px rgba(255, 0, 255, 0.6);
	border-bottom: 2px solid rgba(0, 255, 255, 0.6);
}

.navbar-toggler {
	border-color: rgba(0, 255, 255, 0.5) !important;
}

.navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Stagger animation for room boxes */
.roombox:nth-child(1) {
	animation-delay: 0.1s;
}

.roombox:nth-child(2) {
	animation-delay: 0.2s;
}

.roombox:nth-child(3) {
	animation-delay: 0.3s;
}

