* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont,
		sans-serif;
	background-color: #f0f2f5;
	color: #2e2e2e;
	line-height: 1.6;
	overflow-x: hidden;
}

/* ========== CUSTOM SCROLLBAR ========== */
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: #e8ebf0;
}

::-webkit-scrollbar-thumb {
	background: linear-gradient(45deg, #3b4cca, #ff6f61);
	border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(45deg, #2e3ca8, #e55a4f);
}

/* ========== TYPOGRAPHY ========== */
h1 {
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, #3b4cca, #ff6f61);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

h2 {
	font-size: 2.5rem;
	font-weight: 600;
	margin-bottom: 1.25rem;
	color: #2e2e2e;
}

h3 {
	font-size: 1.875rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #3b4cca;
}

h4 {
	font-size: 1.5rem;
	font-weight: 500;
	margin-bottom: 0.875rem;
	color: #2e2e2e;
}

p {
	font-size: 1.1rem;
	margin-bottom: 1rem;
	color: #2e2e2e;
	opacity: 0.9;
}

/* ========== LAYOUT CONTAINERS ========== */
.bv-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.bv-section {
	padding: 80px 0;
	position: relative;
}

.bv-section-alt {
	background: linear-gradient(
		135deg,
		rgba(59, 76, 202, 0.05),
		rgba(255, 111, 97, 0.05)
	);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(59, 76, 202, 0.1);
}

/* ========== HEADER STYLES ========== */
.bv-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(240, 242, 245, 0.95);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(59, 76, 202, 0.2);
	box-shadow: 0 2px 20px rgba(59, 76, 202, 0.1);
	transition: all 0.3s ease;
	padding: 1rem 0;
}

.bv-header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.bv-logo {
	font-size: 1.8rem;
	font-weight: 700;
	text-decoration: none;
	background: linear-gradient(135deg, #3b4cca, #ff6f61);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	transition: all 0.3s ease;
}

.bv-logo:hover {
	transform: scale(1.05);
}

.bv-nav {
	display: flex;
	gap: 2rem;
	align-items: center;
}

.bv-nav-link {
	text-decoration: none;
	color: #2e2e2e;
	font-weight: 500;
	font-size: 1rem;
	padding: 0.5rem 1rem;
	border-radius: 25px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.bv-nav-link::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(59, 76, 202, 0.2),
		transparent
	);
	transition: left 0.5s ease;
}

.bv-nav-link:hover::before {
	left: 100%;
}

.bv-nav-link:hover {
	color: #3b4cca;
	background: rgba(59, 76, 202, 0.1);
	transform: translateY(-2px);
}

.bv-auth-buttons {
	display: flex;
	gap: 1rem;
	align-items: center;
}

/* ========== BUTTON STYLES ========== */
.bv-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 1rem 2rem;
	border: none;
	border-radius: 50px;
	font-size: 1.1rem;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	min-width: 160px;
	justify-content: center;
}

.bv-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);
	transition: left 0.5s ease;
}

.bv-btn:hover::before {
	left: 100%;
}

.bv-btn-primary {
	background: linear-gradient(135deg, #3b4cca, #2e3ca8);
	color: #ffffff;
	box-shadow: 0 8px 25px rgba(59, 76, 202, 0.3);
}

.bv-btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(59, 76, 202, 0.4);
	background: linear-gradient(135deg, #2e3ca8, #3b4cca);
}

.bv-btn-secondary {
	background: transparent;
	color: #ff6f61;
	border: 2px solid #ff6f61;
	box-shadow: 0 8px 25px rgba(255, 111, 97, 0.2);
}

.bv-btn-secondary:hover {
	background: linear-gradient(135deg, #ff6f61, #e55a4f);
	color: #ffffff;
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(255, 111, 97, 0.4);
}

.bv-btn-outline {
	background: transparent;
	color: #2e2e2e;
	border: 2px solid rgba(46, 46, 46, 0.3);
}

.bv-btn-outline:hover {
	background: rgba(46, 46, 46, 0.1);
	border-color: #3b4cca;
	color: #3b4cca;
	transform: translateY(-3px);
}

.bv-btn-auth {
	padding: 0.8rem 1.5rem;
	font-size: 0.95rem;
	min-width: 100px;
}

/* ========== CARD STYLES ========== */
.bv-card {
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(59, 76, 202, 0.2);
	border-radius: 20px;
	padding: 2rem;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(59, 76, 202, 0.1);
}

.bv-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #3b4cca, #ff6f61);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.bv-card:hover::before {
	transform: scaleX(1);
}

.bv-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(59, 76, 202, 0.2);
	border-color: #3b4cca;
}

.bv-card-icon {
	font-size: 3rem;
	color: #3b4cca;
	margin-bottom: 1.5rem;
	display: block;
}

.bv-card-title {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #2e2e2e;
}

.bv-card-description {
	color: #2e2e2e;
	opacity: 0.8;
	line-height: 1.6;
}

/* ========== GRID LAYOUTS ========== */
.bv-grid {
	display: grid;
	gap: 2rem;
}

.bv-grid-2 {
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.bv-grid-3 {
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.bv-grid-4 {
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* ========== HERO SECTION ========== */
.bv-hero {
	height: 100vh;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: linear-gradient(135deg, #f0f2f5 0%, #e8ebf0 100%);
}

.bv-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233B4CCA' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
		repeat;
	z-index: 1;
}

.bv-hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		rgba(240, 242, 245, 0.7),
		rgba(59, 76, 202, 0.1),
		rgba(255, 111, 97, 0.1)
	);
	z-index: 2;
}

.bv-hero-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('assets/bv-hero.webp') center/cover no-repeat;
	opacity: 0.3;
	background-attachment: fixed;
	z-index: 1;
}

.bv-hero-content {
	text-align: center;
	z-index: 3;
	position: relative;
	animation: bv-fadeInUp 1s ease-out;
}

.bv-hero-heading {
	font-size: 4rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.bv-hero-subheading {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #2e2e2e;
	opacity: 0.9;
}

.bv-hero-description {
	font-size: 1.2rem;
	margin-bottom: 2.5rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	opacity: 0.8;
}

.bv-hero-buttons {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* ========== RACE DASHBOARD SECTION ========== */
.bv-race-dashboard {
	padding: 100px 0;
	background: linear-gradient(
		135deg,
		rgba(255, 111, 97, 0.05),
		rgba(59, 76, 202, 0.05)
	);
}

.bv-race-header {
	text-align: center;
	margin-bottom: 4rem;
}

.bv-race-filters {
	display: flex;
	gap: 1rem;
	margin-bottom: 3rem;
	flex-wrap: wrap;
	justify-content: center;
}

.bv-filter-btn {
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(59, 76, 202, 0.2);
	color: #2e2e2e;
	padding: 0.8rem 1.5rem;
	border-radius: 25px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-weight: 500;
}

.bv-filter-btn:hover,
.bv-filter-btn.active {
	background: #3b4cca;
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(59, 76, 202, 0.3);
}

.bv-race-table-container {
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(20px);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 15px 35px rgba(59, 76, 202, 0.1);
	border: 1px solid rgba(59, 76, 202, 0.2);
}

.bv-race-table {
	width: 100%;
	border-collapse: collapse;
}

.bv-race-table th {
	background: linear-gradient(135deg, #3b4cca, #ff6f61);
	color: #ffffff;
	padding: 1.5rem 1rem;
	text-align: left;
	font-weight: 600;
	font-size: 1rem;
}

.bv-race-table td {
	padding: 1.5rem 1rem;
	border-bottom: 1px solid rgba(59, 76, 202, 0.1);
	color: #2e2e2e;
	font-size: 0.95rem;
}

.bv-race-table tbody tr:hover {
	background: rgba(59, 76, 202, 0.05);
}

.bv-race-table tbody tr:last-child td {
	border-bottom: none;
}

.bv-live-badge {
	background: linear-gradient(135deg, #ff6f61, #e55a4f);
	color: #ffffff;
	padding: 0.3rem 0.8rem;
	border-radius: 15px;
	font-size: 0.8rem;
	font-weight: 600;
	animation: bv-pulse 2s infinite;
}

.bv-odds-cell {
	font-weight: 700;
	color: #3b4cca;
	font-size: 1.1rem;
}

/* ========== GLOBAL MARKETS SECTION ========== */
.bv-markets {
	padding: 100px 0;
}

.bv-markets-header {
	text-align: center;
	margin-bottom: 4rem;
}

.bv-markets-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2.5rem;
}

.bv-market-card {
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(59, 76, 202, 0.2);
	border-radius: 20px;
	padding: 3rem 2rem;
	text-align: center;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

.bv-market-card::after {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(
		circle,
		rgba(59, 76, 202, 0.1) 0%,
		transparent 70%
	);
	transform: scale(0);
	transition: transform 0.5s ease;
}

.bv-market-card:hover::after {
	transform: scale(1);
}

.bv-market-card:hover {
	transform: translateY(-15px) scale(1.02);
	box-shadow: 0 25px 50px rgba(59, 76, 202, 0.2);
	border-color: #3b4cca;
}

.bv-market-icon {
	font-size: 4rem;
	color: #3b4cca;
	margin-bottom: 2rem;
	position: relative;
	z-index: 1;
}

.bv-market-title {
	font-size: 1.8rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	color: #2e2e2e;
	position: relative;
	z-index: 1;
}

.bv-market-description {
	font-size: 1.1rem;
	line-height: 1.7;
	color: #2e2e2e;
	opacity: 0.8;
	position: relative;
	z-index: 1;
	margin-bottom: 2rem;
}

.bv-market-stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
	margin-bottom: 2rem;
	position: relative;
	z-index: 1;
}

.bv-stat {
	background: rgba(59, 76, 202, 0.1);
	padding: 1rem;
	border-radius: 10px;
	text-align: center;
}

.bv-stat-value {
	font-size: 1.5rem;
	font-weight: 700;
	color: #3b4cca;
	display: block;
}

.bv-stat-label {
	font-size: 0.9rem;
	color: #2e2e2e;
	opacity: 0.7;
}

/* ========== INSIGHTS SECTION ========== */
.bv-insights {
	padding: 100px 0;
	background: linear-gradient(
		135deg,
		rgba(59, 76, 202, 0.05),
		rgba(255, 111, 97, 0.05)
	);
}

.bv-insights-header {
	text-align: center;
	margin-bottom: 4rem;
}

.bv-insights-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 2rem;
}

.bv-insight-panel {
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(15px);
	border: 1px solid rgba(255, 111, 97, 0.2);
	border-radius: 15px;
	padding: 2.5rem 1.5rem;
	text-align: center;
	transition: all 0.3s ease;
	position: relative;
}

.bv-insight-panel:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 30px rgba(255, 111, 97, 0.2);
	border-color: #ff6f61;
}

.bv-insight-icon {
	font-size: 3.5rem;
	color: #ff6f61;
	margin-bottom: 1.5rem;
}

.bv-insight-title {
	font-size: 1.4rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #2e2e2e;
}

.bv-insight-description {
	color: #2e2e2e;
	opacity: 0.8;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.bv-gauge {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: conic-gradient(#3b4cca 0deg 270deg, #e8ebf0 270deg);
	margin: 0 auto 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.bv-gauge::before {
	content: '75%';
	font-size: 1.5rem;
	font-weight: 700;
	color: #fff;
	background: #ff6f61;
	border-radius: 50%;
	padding: 10px;
}

.bv-chart-container {
	height: 200px;
	background: rgba(59, 76, 202, 0.05);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
}

.bv-chart-placeholder {
	color: #3b4cca;
	font-size: 0.9rem;
	font-weight: 500;
}

.bv-sports-logos {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
	margin-top: 1.5rem;
}

.bv-sport-logo svg {
	width: 50px;
	height: 50px;
	object-fit: cover;
	transition: all 0.3s ease;
	background: rgba(46, 46, 46, 0.8);
	padding: 5px;
	border-radius: 15px;
}

/* ========== COMMUNITY SECTION ========== */
.bv-community {
	padding: 100px 0;
}

.bv-community-header {
	text-align: center;
	margin-bottom: 4rem;
}

.bv-feed-container {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 3rem;
	margin-bottom: 3rem;
}

.bv-live-feed {
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(59, 76, 202, 0.2);
	border-radius: 15px;
	padding: 2rem;
	height: 400px;
	overflow-y: auto;
}

.bv-feed-item {
	padding: 1rem 0;
	border-bottom: 1px solid rgba(59, 76, 202, 0.1);
	display: flex;
	gap: 1rem;
	align-items: flex-start;
}

.bv-feed-item:last-child {
	border-bottom: none;
}

.bv-feed-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: linear-gradient(135deg, #3b4cca, #ff6f61);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-weight: 600;
	flex-shrink: 0;
}

.bv-feed-content {
	flex: 1;
}

.bv-feed-author {
	font-weight: 600;
	color: #3b4cca;
	font-size: 0.9rem;
	margin-bottom: 0.2rem;
}

.bv-feed-text {
	font-size: 0.9rem;
	color: #2e2e2e;
	opacity: 0.8;
	line-height: 1.4;
}

.bv-feed-time {
	font-size: 0.8rem;
	color: #ff6f61;
	margin-top: 0.3rem;
}

.bv-trending {
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 111, 97, 0.2);
	border-radius: 15px;
	padding: 2rem;
}

.bv-trending h4 {
	color: #ff6f61;
	margin-bottom: 1.5rem;
	font-size: 1.2rem;
}

.bv-trending-item {
	padding: 1rem 0;
	border-bottom: 1px solid rgba(255, 111, 97, 0.1);
	cursor: pointer;
	transition: all 0.3s ease;
}

.bv-trending-item:hover {
	background: rgba(255, 111, 97, 0.05);
	padding-left: 0.5rem;
}

.bv-trending-item:last-child {
	border-bottom: none;
}

.bv-trending-title {
	font-size: 0.9rem;
	font-weight: 600;
	color: #2e2e2e;
	margin-bottom: 0.3rem;
}

.bv-trending-meta {
	font-size: 0.8rem;
	color: #ff6f61;
}

.bv-discussions-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.bv-discussion-card {
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(59, 76, 202, 0.2);
	border-radius: 15px;
	overflow: hidden;
	transition: all 0.3s ease;
	cursor: pointer;
}

.bv-discussion-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(59, 76, 202, 0.2);
}

.bv-discussion-image {
	width: 100%;
	height: 180px;
	object-fit: cover;
}

.bv-discussion-content {
	padding: 1.5rem;
}

.bv-discussion-title {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 0.8rem;
	color: #2e2e2e;
}

.bv-discussion-excerpt {
	font-size: 0.9rem;
	color: #2e2e2e;
	opacity: 0.7;
	line-height: 1.4;
	margin-bottom: 1rem;
}

.bv-discussion-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.8rem;
	color: #ff6f61;
}

/* ========== EXPERT PANEL SECTION ========== */
.bv-experts {
	padding: 100px 0;
	background: linear-gradient(
		135deg,
		rgba(255, 111, 97, 0.05),
		rgba(59, 76, 202, 0.05)
	);
}

.bv-experts-header {
	text-align: center;
	margin-bottom: 4rem;
}

.bv-experts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2.5rem;
}

.bv-expert-card {
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 111, 97, 0.2);
	border-radius: 20px;
	padding: 2rem;
	text-align: center;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.bv-expert-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 111, 97, 0.1),
		transparent
	);
	transition: left 0.5s ease;
}

.bv-expert-card:hover::before {
	left: 100%;
}

.bv-expert-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(255, 111, 97, 0.2);
	border-color: #ff6f61;
}

.bv-expert-photo {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	object-fit: cover;
	margin: 0 auto 1.5rem;
	border: 3px solid #ff6f61;
	transition: all 0.3s ease;
}

.bv-expert-card:hover .bv-expert-photo {
	transform: scale(1.1);
	border-color: #3b4cca;
}

.bv-expert-name {
	font-size: 1.4rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: #2e2e2e;
}

.bv-expert-role {
	color: #ff6f61;
	font-weight: 500;
	margin-bottom: 1rem;
}

.bv-expert-bio {
	color: #2e2e2e;
	opacity: 0.8;
	line-height: 1.5;
	margin-bottom: 1.5rem;
}

.bv-expert-stats {
	display: flex;
	justify-content: space-around;
	margin-top: 1.5rem;
}

.bv-expert-stat {
	text-align: center;
}

.bv-expert-stat-value {
	font-size: 1.3rem;
	font-weight: 700;
	color: #3b4cca;
	display: block;
}

.bv-expert-stat-label {
	font-size: 0.8rem;
	color: #2e2e2e;
	opacity: 0.7;
}

/* ========== MODAL STYLES ========== */
.bv-modal {
	display: none;
	position: fixed;
	z-index: 10000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(46, 46, 46, 0.8);
	backdrop-filter: blur(10px);
}

.bv-modal.show {
	display: flex;
	align-items: center;
	justify-content: center;
	animation: bv-fadeIn 0.3s ease-out;
}

.bv-modal-content {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	border-radius: 20px;
	padding: 3rem;
	width: 90%;
	max-width: 450px;
	position: relative;
	box-shadow: 0 25px 50px rgba(59, 76, 202, 0.3);
	border: 1px solid rgba(59, 76, 202, 0.2);
	animation: bv-scaleIn 0.3s ease-out;
}

.bv-modal-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: none;
	border: none;
	font-size: 2rem;
	color: #2e2e2e;
	cursor: pointer;
	padding: 0.5rem;
	border-radius: 50%;
	transition: all 0.3s ease;
}

.bv-modal-close:hover {
	background: rgba(59, 76, 202, 0.1);
	color: #3b4cca;
	transform: scale(1.1);
}

.bv-modal-title {
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 2rem;
	color: #2e2e2e;
	text-align: center;
}

.bv-form-group {
	margin-bottom: 1.5rem;
}

.bv-form-label {
	display: block;
	margin-bottom: 0.5rem;
	color: #2e2e2e;
	font-weight: 500;
}

.bv-form-input {
	width: 100%;
	padding: 1rem 1.5rem;
	background: rgba(240, 242, 245, 0.8);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(59, 76, 202, 0.3);
	border-radius: 10px;
	color: #2e2e2e;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.bv-form-input:focus {
	outline: none;
	border-color: #3b4cca;
	box-shadow: 0 0 20px rgba(59, 76, 202, 0.2);
	background: rgba(240, 242, 245, 0.9);
}

.bv-form-input::placeholder {
	color: rgba(46, 46, 46, 0.5);
}

.bv-form-error {
	color: #ff6f61;
	font-size: 0.9rem;
	margin-top: 0.5rem;
	display: none;
}

.bv-form-submit {
	width: 100%;
	margin-top: 1rem;
}

.bv-form-submit:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	transform: none !important;
}

/* ========== FOOTER STYLES ========== */
.bv-footer {
	background: linear-gradient(
		135deg,
		rgba(59, 76, 202, 0.05),
		rgba(255, 111, 97, 0.05)
	);
	padding: 80px 0 40px;
	border-top: 1px solid rgba(59, 76, 202, 0.2);
}

.bv-footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 3rem;
	margin-bottom: 3rem;
}

.bv-footer-col {
	margin-bottom: 2rem;
}

.bv-footer-logo {
	font-size: 1.5rem;
	font-weight: 700;
	background: linear-gradient(135deg, #3b4cca, #ff6f61);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	display: flex;
	align-items: center;
	margin-bottom: 2rem;
}

.bv-footer-logo i {
	margin-right: 10px;
}

.bv-footer-about {
	font-size: 1rem;
	color: #2e2e2e;
	line-height: 1.6;
	opacity: 0.8;
}

.bv-footer-heading {
	font-size: 1.3rem;
	color: #3b4cca;
	margin-bottom: 1.5rem;
	font-weight: 600;
}

.bv-footer-links {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
}

.bv-footer-link {
	color: #2e2e2e;
	text-decoration: none;
	transition: all 0.3s ease;
	opacity: 0.8;
}

.bv-footer-link:hover {
	color: #ff6f61;
	opacity: 1;
	transform: translateX(5px);
}

.bv-leagues-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
	gap: 1rem;
	margin-top: 1rem;
}

.bv-league-logo {
	background: rgba(255, 255, 255, 0.9);
	padding: 1rem;
	border-radius: 10px;
	text-align: center;
	transition: all 0.3s ease;
	border: 1px solid rgba(59, 76, 202, 0.1);
}

.bv-league-logo:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(59, 76, 202, 0.2);
}

.bv-league-logo img {
	width: 100%;
	height: 40px;
	object-fit: contain;
}

.bv-disclaimer {
	background: rgba(255, 255, 255, 0.9);
	padding: 2rem;
	border-radius: 15px;
	margin: 2rem 0;
	border: 1px solid rgba(255, 111, 97, 0.2);
}

.bv-disclaimer-text {
	font-size: 0.9rem;
	color: #2e2e2e;
	line-height: 1.6;
	margin-bottom: 1rem;
}

.bv-age-restriction {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: linear-gradient(135deg, #ff6f61, #e55a4f);
	color: #ffffff;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-weight: 600;
	font-size: 1.1rem;
}

.bv-footer-bottom {
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(59, 76, 202, 0.2);
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 0.9rem;
	color: #2e2e2e;
	opacity: 0.8;
}

.bv-footer-nav {
	display: flex;
	gap: 2rem;
}

.bv-footer-nav-link {
	color: #2e2e2e;
	text-decoration: none;
	transition: color 0.3s ease;
	opacity: 0.8;
}

.bv-footer-nav-link:hover {
	color: #ff6f61;
	opacity: 1;
}

/* ========== THANK YOU PAGE STYLES ========== */
.bv-thank-you {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #f0f2f5 0%, #e8ebf0 100%);
	position: relative;
	overflow: hidden;
}

.bv-thank-you::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233B4CCA' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
		repeat;
	z-index: 1;
}

.bv-thank-you-content {
	text-align: center;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(20px);
	padding: 4rem 3rem;
	border-radius: 25px;
	box-shadow: 0 25px 50px rgba(59, 76, 202, 0.2);
	border: 1px solid rgba(59, 76, 202, 0.2);
	position: relative;
	z-index: 2;
	max-width: 600px;
	margin: 0 2rem;
}

.bv-thank-you-icon {
	font-size: 5rem;
	color: #3b4cca;
	margin-bottom: 2rem;
	animation: bv-bounce 1s ease-out;
}

.bv-thank-you-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, #3b4cca, #ff6f61);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.bv-thank-you-text {
	font-size: 1.2rem;
	color: #2e2e2e;
	opacity: 0.8;
	margin-bottom: 3rem;
	line-height: 1.6;
}

.bv-redirect-info {
	background: rgba(59, 76, 202, 0.1);
	padding: 1.5rem;
	border-radius: 15px;
	margin-bottom: 2rem;
	border: 1px solid rgba(59, 76, 202, 0.2);
}

.bv-redirect-text {
	font-size: 1rem;
	color: #3b4cca;
	font-weight: 500;
	margin-bottom: 0.5rem;
}

.bv-countdown {
	font-size: 2rem;
	font-weight: 700;
	color: #ff6f61;
}

/* ========== LEGAL PAGES STYLES ========== */
.bv-page-header {
	background: linear-gradient(135deg, #f0f2f5 0%, #e8ebf0 100%);
	padding: 120px 0 60px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.bv-page-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		45deg,
		rgba(59, 76, 202, 0.1),
		rgba(255, 111, 97, 0.1)
	);
	opacity: 0.5;
}

.bv-page-title {
	font-size: 3.5rem;
	font-weight: 700;
	color: #2e2e2e;
	margin-bottom: 1rem;
	position: relative;
	z-index: 1;
}

.bv-page-subtitle {
	font-size: 1.3rem;
	color: #ff6f61;
	font-weight: 500;
	position: relative;
	z-index: 1;
}

.bv-legal-container {
	padding: 80px 0;
	background: #f0f2f5;
	min-height: 70vh;
}

.bv-legal-content {
	max-width: 800px;
	margin: 0 auto;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	padding: 60px;
	border: 1px solid rgba(59, 76, 202, 0.2);
	box-shadow: 0 20px 40px rgba(59, 76, 202, 0.1);
}

.bv-legal-section {
	margin-bottom: 50px;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(59, 76, 202, 0.1);
}

.bv-legal-section:last-child {
	border-bottom: none;
	margin-bottom: 0;
}

.bv-legal-section h2 {
	font-size: 2rem;
	color: #3b4cca;
	margin-bottom: 20px;
	font-weight: 600;
	position: relative;
	padding-left: 20px;
}

.bv-legal-section h2::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 30px;
	background: linear-gradient(45deg, #3b4cca, #ff6f61);
	border-radius: 2px;
}

.bv-legal-section h3 {
	font-size: 1.4rem;
	color: #ff6f61;
	margin: 30px 0 15px;
	font-weight: 500;
}

.bv-legal-section p {
	color: #2e2e2e;
	line-height: 1.8;
	margin-bottom: 20px;
	font-size: 1.05rem;
}

.bv-legal-section ul {
	margin: 20px 0;
	padding-left: 0;
	list-style: none;
}

.bv-legal-section li {
	color: #2e2e2e;
	line-height: 1.8;
	margin-bottom: 12px;
	position: relative;
	padding-left: 30px;
	font-size: 1.05rem;
}

.bv-legal-section li::before {
	content: '→';
	position: absolute;
	left: 0;
	color: #3b4cca;
	font-weight: bold;
	font-size: 1.2rem;
}

.bv-legal-section strong {
	color: #3b4cca;
	font-weight: 600;
}

.bv-legal-section a {
	color: #ff6f61;
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: all 0.3s ease;
}

.bv-legal-section a:hover {
	color: #3b4cca;
	border-bottom-color: #3b4cca;
}

.bv-contact-details {
	background: rgba(59, 76, 202, 0.1);
	padding: 30px;
	border-radius: 15px;
	border: 1px solid rgba(59, 76, 202, 0.2);
	margin: 30px 0;
}

.bv-contact-details p {
	margin-bottom: 10px;
	color: #2e2e2e;
	word-wrap: break-word;
}

.bv-contact-details strong {
	color: #3b4cca;
}

.bv-mobile-toggle {
	display: none;
}

/* ========== ANIMATIONS ========== */
@keyframes bv-fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes bv-fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes bv-scaleIn {
	from {
		opacity: 0;
		transform: scale(0.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes bv-pulse {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.5;
	}
}

@keyframes bv-bounce {
	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}
	40% {
		transform: translateY(-10px);
	}
	60% {
		transform: translateY(-5px);
	}
}

/* ========== RESPONSIVE STYLES ========== */

@media (max-width: 1110px) {
	.bv-nav {
		display: none;
		flex-direction: column;
		position: absolute;
		top: 80px;
		right: 0;
		background: rgba(240, 242, 245, 0.95);
		width: 100%;
		text-align: center;
		box-shadow: 0 5px 15px rgba(59, 76, 202, 0.2);
		z-index: 10;
		padding: 2rem 0;
	}

	.bv-nav.show {
		display: flex;
	}

	.bv-nav-link {
		margin: 0.5rem 0;
		font-size: 1.2rem;
	}

	.bv-mobile-toggle {
		display: block;
		background: none;
		border: none;
		color: #2e2e2e;
		font-size: 1.5rem;
		cursor: pointer;
		padding: 0.5rem;
		border-radius: 8px;
		transition: all 0.3s ease;
	}

	.bv-mobile-toggle:hover {
		background: rgba(59, 76, 202, 0.1);
		color: #3b4cca;
	}
}

@media (max-width: 1024px) {
	.bv-hero-heading {
		font-size: 3rem;
	}

	.bv-hero-subheading {
		font-size: 1.3rem;
	}

	.bv-feed-container {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.bv-race-filters {
		justify-content: flex-start;
	}
}

@media (max-width: 768px) {
	.bv-hero-heading {
		font-size: 2.5rem;
	}

	.bv-hero-subheading {
		font-size: 1.1rem;
	}

	.bv-hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.bv-auth-buttons {
		gap: 0.5rem;
	}

	.bv-footer-bottom {
		flex-direction: column;
		text-align: center;
		gap: 1rem;
	}

	.bv-footer-nav {
		justify-content: center;
	}

	.bv-race-table-container {
		overflow-x: auto;
	}

	.bv-race-table {
		min-width: 600px;
	}

	.bv-market-stats {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.bv-hero {
		padding: 100px 0;
	}

	.bv-hero-heading {
		font-size: 2rem;
	}

	.bv-hero-subheading {
		font-size: 1rem;
	}

	.bv-btn {
		font-size: 1rem;
		padding: 0.8rem 1.5rem;
		/* min-width: 140px; */
	}

	.bv-section {
		padding: 60px 0;
	}

	.bv-modal-content {
		padding: 2rem;
		margin: 0 1rem;
	}

	.bv-modal-title {
		font-size: 1.5rem;
	}

	.bv-page-title {
		font-size: 2.5rem;
	}

	.bv-legal-content {
		padding: 40px 30px;
	}

	.bv-legal-section h2 {
		font-size: 1.6rem;
	}

	.bv-legal-section h3 {
		font-size: 1.2rem;
	}

	.bv-thank-you-content {
		padding: 3rem 2rem;
		margin: 0 1rem;
	}

	.bv-thank-you-title {
		font-size: 2rem;
	}

	.bv-thank-you-icon {
		font-size: 4rem;
	}
}

/* ========== PRINT STYLES ========== */
@media print {
	.bv-header,
	.bv-footer,
	.bv-modal,
	.bv-hero-buttons {
		display: none;
	}

	.bv-page-header {
		padding: 2rem 0;
	}

	.bv-legal-container {
		padding: 0;
	}

	.bv-legal-content {
		background: white;
		color: black;
		box-shadow: none;
		border: none;
		padding: 20px;
	}

	.bv-legal-section h2,
	.bv-legal-section h3,
	.bv-legal-section strong {
		color: black;
	}

	.bv-legal-section p,
	.bv-legal-section li {
		color: black;
	}
}

/* ========== HIGH CONTRAST MODE ========== */
@media (prefers-contrast: high) {
	.bv-card {
		border-width: 2px;
	}

	.bv-btn {
		border-width: 2px;
	}

	.bv-form-input {
		border-width: 2px;
	}
}

/* ========== REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

.bv-thank-you-page {
	background: linear-gradient(135deg, #f0f2f5 0%, #e8eaed 100%);
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.bv-thank-you-container {
	max-width: 600px;
	width: 90%;
	margin: 0 auto;
	padding: 2rem;
}

.bv-thank-you-content {
	background: #ffffff;
	border-radius: 20px;
	padding: 3rem 2rem;
	text-align: center;
	box-shadow: 0 20px 40px rgba(59, 76, 202, 0.1);
	border: 1px solid rgba(59, 76, 202, 0.1);
	animation: bv-fade-in-up 0.8s ease-out;
}

.bv-thank-you-icon {
	margin-bottom: 1.5rem;
}

.bv-thank-you-icon i {
	font-size: 4rem;
	color: #3b4cca;
	animation: bv-check-bounce 1.2s ease-out;
}

.bv-thank-you-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #2e2e2e;
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
}

.bv-thank-you-message {
	font-size: 1.2rem;
	color: #666;
	margin-bottom: 2rem;
	line-height: 1.6;
}

.bv-thank-you-features {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin-bottom: 2.5rem;
	flex-wrap: wrap;
}

.bv-feature-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	opacity: 0;
	animation: bv-feature-fade-in 0.6s ease-out forwards;
}

.bv-feature-item:nth-child(1) {
	animation-delay: 0.3s;
}

.bv-feature-item:nth-child(2) {
	animation-delay: 0.5s;
}

.bv-feature-item:nth-child(3) {
	animation-delay: 0.7s;
}

.bv-feature-item i {
	font-size: 1.5rem;
	color: #ff6f61;
	background: rgba(255, 111, 97, 0.1);
	padding: 0.8rem;
	border-radius: 50%;
	width: 3rem;
	height: 3rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.bv-feature-item span {
	font-size: 0.9rem;
	color: #2e2e2e;
	font-weight: 500;
}

.bv-redirect-info {
	padding-top: 1.5rem;
	border-top: 1px solid #e8eaed;
}

.bv-redirect-info p {
	color: #666;
	margin-bottom: 1rem;
	font-size: 1rem;
}

#bv-countdown {
	font-weight: 700;
	color: #3b4cca;
}

/* Thank You Page Animations */
@keyframes bv-fade-in-up {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes bv-check-bounce {
	0% {
		opacity: 0;
		transform: scale(0.3);
	}
	50% {
		opacity: 1;
		transform: scale(1.05);
	}
	70% {
		transform: scale(0.9);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes bv-feature-fade-in {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive adjustments for thank you page */
@media (max-width: 768px) {
	.bv-thank-you-content {
		padding: 2rem 1.5rem;
	}

	.bv-thank-you-title {
		font-size: 2rem;
	}

	.bv-thank-you-features {
		gap: 1.5rem;
	}

	.bv-feature-item {
		min-width: 120px;
	}
}

@media (max-width: 576px) {
	.bv-logo {
		display: none;
	}

	.bv-markets-grid,
	.bv-insights-grid,
	.bv-discussions-grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}
	.bv-thank-you-container {
		padding: 0;
	}
}

@media (max-width: 480px) {
	.bv-thank-you-features {
		flex-direction: column;
		align-items: center;
		gap: 1rem;
	}

	.bv-thank-you-title {
		font-size: 1.8rem;
	}

	.bv-thank-you-message {
		font-size: 1.1rem;
	}
}
