/* Beta-specific styles for Battle of the Bots banner */

/* Beta Notice Banner */
.beta-notice {
  background: linear-gradient(135deg, #db2427 0%, #343064 100%);
  color: white;
  padding: 1rem 0;
  margin-bottom: 2rem;
  border-bottom: 3px solid #db2427;
}

.beta-badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 0.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.beta-message {
  margin: 0;
  font-size: 1rem;
  opacity: 0.95;
}

.beta-link {
  color: white;
  text-decoration: underline;
  font-weight: 600;
}

.beta-link:hover {
  color: #f0f0f0;
  text-decoration: none;
}

/* Battle of the Bots Banner */
.battle-banner {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	border-radius: 1rem;
	padding: 2.5rem;
	margin: 2rem 0;
	border: 2px solid rgba(229, 38, 31, 0.15);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.battle-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #db2427 0%, #343064 50%, #db2427 100%);
}

.battle-banner:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(229, 38, 31, 0.15);
	border-color: rgba(229, 38, 31, 0.25);
}

.battle-banner-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2f2f41;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #db2427 0%, #343064 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.battle-banner-subtitle {
	font-size: 1.3rem;
	color: #5c5a5a;
	margin-bottom: 1rem;
	font-weight: 600;
}

.battle-banner-description {
	font-size: 1.1rem;
	color: #6c757d;
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.battle-banner-cta {
	margin-bottom: 1rem;
}

.battle-banner-cta .btn {
	font-weight: 600;
	padding: 0.75rem 1.5rem;
	border-radius: 0.5rem;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
}

.battle-banner-cta .btn-primary {
  background: linear-gradient(135deg, #20bd67 0%, #1a9f5a 100%);
  border: none;
  color: white;
}

.battle-banner-cta .btn-primary:hover {
  background: linear-gradient(135deg, #1a9f5a 0%, #20bd67 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(32, 189, 103, 0.3);
}

.battle-banner-cta .btn-outline-primary {
  color: #db2427;
  border: 2px solid #db2427;
  background: transparent;
}

.battle-banner-cta .btn-outline-primary:hover {
  background: #db2427;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(219, 36, 39, 0.3);
}

.battle-banner-image img {
	max-width: 100%;
	height: auto;
	border-radius: 0.75rem;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
	.battle-banner {
		padding: 1.5rem;
		text-align: center;
	}
	
	.battle-banner-title {
		font-size: 2rem;
	}
	
	.battle-banner-subtitle {
		font-size: 1.1rem;
	}
	
	.battle-banner-image {
		margin-top: 1.5rem;
	}
}

/* Partner/Exchange Images - Ensure normal sizing */
.exchanges img {
	margin: 0 10px;
	height: 16px;
	width: auto;
	filter: grayscale(60%);
}

.exchanges img:hover {
	filter: grayscale(0%);
	transform: scale(1.1);
}

/* Exchange image styling to match main homepage exactly */
.exchanges img {
	margin: 0 10px;
	height: 16px;
	width: auto;
	filter: grayscale(60%);
}

.exchanges img:hover {
	filter: grayscale(0%);
	transform: scale(1.1);
}

/* Ensure all original homepage styling is preserved */
.main-title {
	padding-top: 80px;
	text-align: center;
}

.main-title h1 {
	font-size: 50px;
	line-height: 75px;
}

.info-banner {
	font-size: 18px;
	line-height: 2.5;
	text-align: center;
	margin: 40px 0;
	padding: 25px 0;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.demo-block {
	display: flex;
	padding: 50px 0;
	flex-direction: column;
}

.demo-container {
	margin: 0 auto;
	position: relative;
	margin-bottom: 100px;
	flex-direction: column;
}

.demo-header {
	display: flex;
	align-items: flex-end;
	margin-bottom: 18px;
	line-height: 1;
}

.demo-header-number {
	font-size: 65px;
	margin-right: 20px;
	font-weight: bolder;
	color: rgba(0, 0, 0, 0.8);
}

.demo-header-info {
	margin-bottom: 10px;
}

.demo-header-info div {
	font-size: 16px;
	color: #6c757d;
}

.section-heading {
	font-size: 2rem;
	font-weight: 600;
	color: #2f2f41;
	margin: 2rem 0 1rem 0;
	text-align: center;
}

.posts-container {
	margin-bottom: 3rem;
}

.post-item {
	margin-bottom: 1.5rem;
}

.post-image img {
	width: 100%;
	height: auto;
	border-radius: 0.5rem;
}

.post-title {
	font-weight: 600;
	color: #2f2f41;
	margin-top: 0.5rem;
}

.post-prefix {
	font-size: 0.9rem;
	color: #6c757d;
	margin-bottom: 0.5rem;
}

.post-prefix span:not(:last-child)::after {
	content: " • ";
	margin: 0 0.25rem;
}
