.main-title {
	padding-top: 80px;
	text-align: center;
}



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

/* 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);
}

.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);
}

.exchanges img {
	margin: 0 10px;
	height: 16px;
	width: auto;
	filter: grayscale(60%)
}

.exchanges img:hover {
	filter: grayscale(0%);
	transform: scale(1.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: var(--grey-color);
}


.demo-video {
	display: flex;
	overflow: hidden;
	border-radius: 5px;
}

.demo-book {
	left: 50%;
	top: calc(50% + 40px);
	z-index: 100;
	display: none;
	position: absolute;
	transform: translate(-50%, -50%);
}

.demo-video video {
	margin-top: -1px;
	max-width: 710px;
	width: 100%;
	height: intrinsic;
}

.demo-container:hover .demo-video {
	filter: blur(2px);
}

.demo-container:hover .demo-book {
	display: block;
}


@media (max-width:992px) {

	.main-title {
		padding-top: 50px;
	}

	.main-title h1 {
		font-size: 45px;
		line-height: 65px;
	}

	.info-banner img:nth-child(n+15) {
		display: none;
	}
}

@media (max-width:768px) {

	.main-title {
		padding-top: 40px;
		text-align: left;
	}

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

	.info-banner {
		font-size: 17px;
	}

	.info-banner img:nth-child(n+12) {
		display: none;
	}
}


@media (max-width:576px) {

	h2 {
		font-size: 20px;
	}

	.main-title {
		padding-top: 30px;
		line-height: 45px;
	}

	.main-title h1 {
		font-size: 32px;
	}

	.info-banner img:nth-child(n+9) {
		display: none;
	}

	.demo-block {
		padding: 0;
	}

	.demo-container {
		margin-bottom: 80px;
	}

	.demo-header-number {
		font-size: 76px;
	}

	.demo-header-info {
		max-width: 300px;
	}

}
