body {
	background: #a02239;
	color: white;
	font-family: 'Segoe UI', Arial, sans-serif;
	text-align: center;
	padding: 2vh 20px 40px 20px; /* Shifted UP */
	margin: 0;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
}

h1 { 
	font-size: 38px; 
	margin-top: 0; 
	margin-bottom: 5px; 
	text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
	cursor: pointer;
}
p { font-size: 18px; opacity: 0.9; margin-bottom: 5px; }

.banner-link {
	display: inline-block;
	text-decoration: none;
	width: 333px;
	max-width: 100%;
	margin-bottom: 15px;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,0.4);
	border: 2px solid rgba(250, 218, 221, 0.2);
	transition: transform 0.3s ease;
	cursor:pointer;
}
.banner-link:hover { transform: scale(1.02); }
.banner-link img {
	width: 100%; 
	display: block; 
	filter: blur(4px); /* Slight blur to keep it "soft" */
	transition: filter 0.3s ease;
}

.banner-link:hover img {
	filter: blur(0); /* Clears up when they interact */
}

#visitor-count { color: #ffdada; font-size: 18px; font-weight: bold; margin-bottom: 15px; display: block; }

.btn-elegant {
	display: inline-block;
	text-decoration: none;
	background-color: #FADADD;
	color: #a02239;
	padding: 25px 50px;
	font-size: 32px;
	font-weight: bold;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.3);
	transition: background-color 0.3s ease;
	animation: pulse 2s infinite ease-in-out;
}

/* Shadow-only pulse to prevent "Jumping" */
@keyframes pulse {
	0% { box-shadow: 0 4px 15px rgba(0,0,0,0.3); }
	50% { box-shadow: 0 8px 25px rgba(0,0,0,0.6); }
	100% { box-shadow: 0 4px 15px rgba(0,0,0,0.3); }
}

.btn-elegant:hover {
	background-color: #F8B9C0;
	animation: none; /* Stops pulse */
	transform: none; /* Stay perfectly still */
}

.footer-disclaimer {
	margin-top: 40px;
	font-size: 11px;
	color: rgba(255, 255, 255, 0.5);
	max-width: 450px;
	line-height: 1.3;
}

@media (max-width: 480px) {
	h1 { font-size: 32px; }
	.btn-elegant { width: 95%; font-size: 28px; padding: 20px 0; }
}

/* Progress Bar Container */
#progress-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: rgba(255, 255, 255, 0.1);
	z-index: 9999;
}

/* The Moving Bar */
#progress-bar {
	width: 0%;
	height: 100%;
	background: #ff3399; /* Matches your pink button */
	box-shadow: 0 0 10px #ff3399;
	transition: width 6s linear;
}

@media (prefers-reduced-motion: reduce) {
	/* Respect reduced-motion by disabling animated effects. */
	.btn-elegant {
		animation: none;
	}

	.live-dot::after {
		animation: none;
	}

	#progress-bar {
		transition: none;
	}
}

/* Optional: "Redirecting" text */
#redirect-text {
	top: 10px;
	right: 10px;
	font-size: 12px;
	color: #fff;
	opacity: 0.7;
	font-family: sans-serif;
	text-align: center;
    letter-spacing: 1px;
}

.country {
	margin-top: 0;
	cursor: pointer;
	font-size: 22px;
}

.flag-icon {
	width: 24px !important; 
    min-width: 24px;
    max-width: 24px;
    height: auto;
    vertical-align: middle; /* Keeps it aligned with the text */
    margin-right: 1px;     /* Space between flag and number */
    border-radius: 2px;    /* Optional: slightly rounded corners */
    box-shadow: 0 0 5px rgba(0,0,0,0.5); /* Makes it pop on dark background */
	margin-left: 5px;
}

#performer-count {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* The Pulsing Live Dot */
.live-dot {
    width: 8px;
    height: 8px;
    background-color: #00ff00; /* Bright Green */
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
    box-shadow: 0 0 5px #00ff00;
}

/* The pulse ring effect */
.live-dot::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #00ff00;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    animation: pulse-ring 2s infinite;
    opacity: 0.7;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(3);
        opacity: 0;
    }
}