/*

Custom style

You can override the default class or style here

This file will not be overwritten by the updater

*//* Footer legal links (AdSense compliance) */
.footer-legal{margin-bottom:12px;text-align:center}
.footer-legal a{display:inline-block;margin:0 10px;color:#8FB8D8;font-size:13px}
.footer-legal a:hover{color:#fff}

/* Cookie consent bar */
.cookie-consent{position:fixed;left:0;right:0;bottom:0;z-index:9999;background:#0B1B2E;border-top:1px solid #1B3352;color:#e8ecf5;padding:12px 20px;display:flex;align-items:center;justify-content:center;gap:16px;flex-wrap:wrap;font-size:13px}
.cookie-consent .cc-text{max-width:720px}
.cookie-consent .cc-text a{color:#38BDF8}
.cookie-consent .cc-accept{flex:none;background:#38BDF8;color:#082F49;border:none;border-radius:6px;padding:8px 22px;font-weight:600;cursor:pointer}
.cookie-consent .cc-accept:hover{background:#7DD3FC}

/* Homepage intro block (original content for SEO/AdSense) */
.site-intro{padding:30px 0 10px}
.site-intro .intro-title{font-size:22px;font-weight:600;margin-bottom:12px}
.site-intro .intro-text p{color:#8FB8D8;font-size:14px;margin-bottom:10px;max-width:980px}
.site-intro .intro-text a{color:#38BDF8}

/* ============================================================
   nova-bver magazine layout (bv- prefix)
   Structure: top header + category pills, hero mosaic,
   horizontal scroll rows, big-radius cards, game page sidebar
   ============================================================ */

/* --- Layout shell --- */
.bv-page{
	width: 100%;
	min-height: 100vh;
	background: #0B1B2E;
}
.bv-container{
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 20px;
}
.bv-section{
	width: 100%;
	padding: 36px 0;
}
.bv-section-head{
	margin-bottom: 22px;
}
.bv-section-title{
	font-size: 26px;
	color: #fff;
	font-weight: 600;
	position: relative;
	padding-left: 16px;
	margin: 0;
}
.bv-section-title::before{
	content: "";
	position: absolute;
	left: 0;
	top: 4px;
	bottom: 4px;
	width: 4px;
	border-radius: 4px;
	background: var(--solid);
	background: var(--linear);
}
.bv-section-sub{
	color: #8FB8D8;
	font-size: 14px;
	margin: 8px 0 0 16px;
}

/* --- Header --- */
.bv-header{
	background: #0F2138;
	border-bottom: 1px solid rgba(255,255,255,0.08);
	position: relative;
	z-index: 30;
}
.bv-header-inner{
	display: flex;
	align-items: center;
	gap: 24px;
	padding-top: 14px;
	padding-bottom: 14px;
}
.bv-logo{
	flex: none;
	display: block;
	margin: 0;
	width: auto;
}
.bv-logo img{
	max-height: 40px;
	max-width: 180px;
	width: auto;
	display: block;
}
.bv-search{
	flex: 1;
	max-width: 560px;
	margin: 0 auto;
	position: relative;
}
.bv-search input{
	width: 100%;
	height: 46px;
	background: #12263F;
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 999px;
	padding: 10px 56px 10px 22px;
	font-size: 14px;
	color: #fff;
	font-family: var(--poppins);
}
.bv-search input:focus{
	outline: none;
	border-color: var(--solid);
	box-shadow: 0 0 0 3px rgba(14,165,233,0.25);
}
.bv-search button{
	position: absolute;
	right: 4px;
	top: 4px;
	width: 38px;
	height: 38px;
	background: var(--solid);
	background: var(--linear);
	border: none;
	border-radius: 50%;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}
.bv-search button .icon-search{
	font-size: 20px;
}
.bv-header-right{
	flex: none;
	display: flex;
	align-items: center;
	margin-left: auto;
}
.bv-burger{
	display: none;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #12263F;
	cursor: pointer;
}
.bv-burger .icon-burger{
	font-size: 30px;
	color: #fff;
}

/* main nav (reuses .side-menu hook for the mobile toggle in main.js) */
.bv-nav.side-menu{
	width: auto;
	float: none;
	max-height: none;
	overflow: visible;
	margin: 0;
	display: flex;
	align-items: center;
	list-style: none;
}
.bv-nav.side-menu li{
	width: auto;
	float: none;
	margin: 0;
	padding: 0;
	position: relative;
}
.bv-nav.side-menu li a{
	display: inline-block;
	padding: 10px 14px;
	height: auto;
	font-size: 14px;
	font-weight: 400;
	color: #fff;
}
.bv-nav.side-menu li a::before{
	display: none;
}
.bv-nav.side-menu li a:hover{
	color: #38BDF8;
}
.bv-nav .drop-ct{
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	z-index: 40;
	min-width: 180px;
	background: #12263F;
	border-radius: 12px;
	padding: 8px 0;
	margin: 0;
	list-style: none;
	box-shadow: 0 12px 30px rgba(0,0,0,0.45);
}
.bv-nav li.has-dropdown:hover .drop-ct{
	display: block;
}
.bv-nav .drop-ct li a{
	display: block;
	padding: 8px 18px;
}

/* --- Category pills bar --- */
.bv-catbar{
	background: #0B1B2E;
	border-bottom: 1px solid rgba(255,255,255,0.06);
}
.bv-catpills{
	display: flex;
	gap: 10px;
	overflow-x: auto;
	padding: 12px 0;
	scrollbar-width: thin;
	-webkit-overflow-scrolling: touch;
}
.bv-pill{
	flex: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	background: #12263F;
	border: 1px solid rgba(255,255,255,0.06);
	border-radius: 999px;
	color: rgba(255,255,255,0.8);
	font-size: 13px;
	transition: var(--anim);
}
.bv-pill:hover{
	color: #fff;
	border-color: var(--solid);
	transform: translateY(-1px);
}
.bv-pill.active{
	background: var(--solid);
	background: var(--linear);
	border-color: transparent;
	color: #fff;
}
.bv-pill-icon{
	width: 18px;
	height: 18px;
	display: block;
}

/* --- Hero mosaic --- */
.bv-hero{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
.bv-hero-big{
	grid-column: span 2;
	grid-row: span 2;
	position: relative;
	display: block;
	border-radius: 16px;
	overflow: hidden;
	background: #12263F;
	transition: var(--anim);
}
.bv-hero-big:hover{
	box-shadow: 0 18px 40px rgba(14,165,233,0.28);
}
.bv-hero-media{
	margin: 0;
	height: 100%;
}
.bv-hero-media img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}
.bv-hero-big:hover .bv-hero-media img{
	transform: scale(1.04);
}
.bv-hero-overlay{
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 60px 24px 22px;
	background: linear-gradient(180deg, transparent, rgba(6,17,32,0.94));
}
.bv-badge{
	display: inline-block;
	background: var(--solid);
	background: var(--linear);
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 4px 12px;
	border-radius: 999px;
	margin-bottom: 10px;
}
.bv-hero-title{
	font-size: 26px;
	color: #fff;
	margin-bottom: 8px;
}
.bv-hero-plays{
	color: #BFD9EE;
	font-size: 13px;
}
.bv-hero-plays .ico{
	margin-right: 4px;
}
.bv-hero-small{
	position: relative;
	display: block;
	border-radius: 16px;
	overflow: hidden;
	background: #12263F;
	transition: var(--anim);
}
.bv-hero-small:hover{
	transform: translateY(-4px);
	box-shadow: 0 14px 30px rgba(14,165,233,0.22);
}
.bv-hero-thumb{
	margin: 0;
	aspect-ratio: 1 / 1;
}
.bv-hero-thumb img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.bv-hero-stitle{
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 22px 10px 8px;
	font-size: 12px;
	color: #fff;
	background: linear-gradient(180deg, transparent, rgba(6,17,32,0.92));
}

/* --- Cards --- */
.bv-card{
	width: 100%;
	background: #12263F;
	border: 1px solid rgba(255,255,255,0.05);
	border-radius: 16px;
	overflow: hidden;
	height: 100%;
	transition: var(--anim);
}
.bv-card:hover{
	transform: translateY(-5px);
	box-shadow: 0 16px 36px rgba(14,165,233,0.22);
	border-color: rgba(14,165,233,0.4);
}
.bv-card-thumb{
	display: block;
}
.bv-card-thumb figure{
	overflow: hidden;
	border-radius: 0;
}
.bv-card-thumb img{
	transition: transform 0.4s ease;
}
.bv-card:hover .bv-card-thumb img{
	transform: scale(1.05);
}
.bv-card-body{
	padding: 14px 16px 16px;
}
.bv-card-title{
	font-size: 15px;
	font-weight: 500;
	margin: 0;
}
.bv-card-title a{
	color: #fff;
}
.bv-card-meta{
	display: flex;
	gap: 14px;
	margin-top: 8px;
	font-size: 13px;
	color: #8FB8D8;
}
.bv-card-meta .ico{
	margin-right: 4px;
	margin-bottom: -2px;
}
.bv-card-cta{
	margin-top: 12px;
}
.bv-card-cta .cta{
	display: block;
	min-width: 0;
	padding: 10px 16px;
}

/* --- Horizontal scroll row --- */
.bv-hscroll{
	display: flex;
	gap: 16px;
	overflow-x: auto;
	padding-bottom: 12px;
	scroll-snap-type: x proximity;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
}
.bv-hitem{
	flex: 0 0 260px;
	scroll-snap-align: start;
}

/* --- Category cards --- */
.bv-cat-grid{
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	gap: 14px;
}
.bv-cat-card{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	padding: 22px 12px;
	background: #12263F;
	border: 1px solid rgba(255,255,255,0.05);
	border-radius: 16px;
	text-align: center;
	transition: var(--anim);
}
.bv-cat-card:hover{
	transform: translateY(-4px);
	box-shadow: 0 14px 30px rgba(14,165,233,0.2);
	border-color: rgba(14,165,233,0.4);
}
.bv-cat-icon{
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #1B3352;
	display: flex;
	align-items: center;
	justify-content: center;
}
.bv-cat-icon img{
	width: 24px;
	height: 24px;
	display: block;
}
.bv-cat-name{
	color: #fff;
	font-size: 14px;
	font-weight: 500;
}

/* --- Compact row card (random / discover) --- */
.bv-row-card{
	display: flex;
	align-items: center;
	gap: 14px;
	background: #12263F;
	border: 1px solid rgba(255,255,255,0.05);
	border-radius: 16px;
	padding: 10px;
	transition: var(--anim);
}
.bv-row-card:hover{
	transform: translateY(-3px);
	box-shadow: 0 12px 28px rgba(14,165,233,0.2);
	border-color: rgba(14,165,233,0.35);
}
.bv-row-thumb{
	width: 64px;
	height: 64px;
	flex: none;
	margin: 0;
	border-radius: 12px;
	overflow: hidden;
}
.bv-row-thumb img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.bv-row-info{
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.bv-row-title{
	color: #fff;
	font-size: 15px;
	font-weight: 500;
}
.bv-row-meta{
	color: #8FB8D8;
	font-size: 12px;
}
.bv-row-play{
	width: 40px;
	height: 40px;
	flex: none;
	border-radius: 50%;
	background: var(--solid);
	background: var(--linear);
	display: flex;
	align-items: center;
	justify-content: center;
}
.bv-row-play img{
	width: 16px;
	height: 16px;
	display: block;
}

/* --- Game page --- */
.bv-breadcrumb{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: #8FB8D8;
	margin-bottom: 14px;
}
.bv-breadcrumb a{
	color: #8FB8D8;
}
.bv-breadcrumb a:hover{
	color: #38BDF8;
}
.bv-crumb-current{
	color: #fff;
}
.bv-game-head{
	margin-bottom: 18px;
}
.bv-game-title{
	font-size: 30px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 10px;
}
.bv-game-meta{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 18px;
	font-size: 14px;
	color: #8FB8D8;
}
.bv-game-meta .rating{
	width: auto;
	float: none;
	display: inline-flex;
	align-items: center;
	gap: 3px;
}
.bv-share{
	display: inline-flex;
	gap: 8px;
}
.bv-share .bt-share{
	float: none;
	margin: 0;
	width: 32px;
	height: 32px;
}
.bv-share img{
	width: 32px;
	height: 32px;
	display: block;
}
.bv-game-cols{
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 28px;
	align-items: start;
}
.bv-player{
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	background: #000;
}
.bv-player iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}
.bv-game-actions{
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 16px 0;
}
.bv-game-actions a{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	height: 44px;
	padding: 0 20px;
	background: #12263F;
	border-radius: 999px;
	color: #fff;
	font-size: 14px;
	transition: var(--anim);
}
.bv-game-actions a:hover{
	background: #1B3352;
}
.bv-game-actions a span{
	font-size: 22px;
}
.bv-panel{
	background: #12263F;
	border: 1px solid rgba(255,255,255,0.05);
	border-radius: 16px;
	padding: 24px;
}
.bv-game-desc h3{
	font-size: 17px;
	color: #fff;
	margin: 18px 0 10px;
}
.bv-game-desc h3:first-child{
	margin-top: 0;
}
.bv-game-desc p{
	line-height: 1.9;
	color: rgba(255,255,255,0.71);
}
.bv-game-desc .cat-link{
	display: inline-block;
	background: #1B3352;
	color: #BFD9EE;
	border-radius: 999px;
	padding: 6px 14px;
	margin: 0 8px 8px 0;
	font-size: 13px;
}
.bv-game-desc .cat-link:hover{
	color: #fff;
	background: var(--solid);
}
.bv-aside-title{
	font-size: 18px;
	color: #fff;
	margin: 0 0 12px;
}
.bv-rel-item{
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 8px;
	margin: 0 -8px;
	border-radius: 12px;
	transition: var(--anim);
}
.bv-rel-item:hover{
	background: #1B3352;
}
.bv-rel-thumb{
	width: 56px;
	height: 56px;
	flex: none;
	margin: 0;
	border-radius: 10px;
	overflow: hidden;
}
.bv-rel-thumb img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.bv-rel-info{
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 3px;
}
.bv-rel-title{
	color: #fff;
	font-size: 14px;
	font-weight: 500;
}
.bv-rel-plays{
	color: #8FB8D8;
	font-size: 12px;
}

/* --- Page head (archive / search / page / post) --- */
.bv-page-head{
	margin-bottom: 24px;
}
.bv-page-title{
	font-size: 26px;
	color: #fff;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0;
}
.bv-page-icon{
	width: 40px;
	height: 40px;
	flex: none;
	border-radius: 50%;
	background: #1B3352;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.bv-page-icon img{
	width: 20px;
	height: 20px;
	display: block;
}
.bv-page-sub{
	color: #8FB8D8;
	font-size: 14px;
	margin-top: 6px;
}
.bv-404-title{
	justify-content: center;
	margin-top: 20px;
}
.section-404 .cta{
	margin-top: 18px;
}

/* --- Footer --- */
.bv-footer{
	margin-top: 20px;
	background: #0F2138;
	border-top: 1px solid rgba(255,255,255,0.08);
}
.bv-footer-grid{
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.4fr;
	gap: 32px;
	padding-top: 44px;
	padding-bottom: 36px;
}
.bv-fbrand .bv-logo{
	margin-bottom: 14px;
}
.bv-fdesc{
	color: #8FB8D8;
	font-size: 13px;
	line-height: 1.8;
}
.bv-ftitle{
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	margin: 0 0 14px;
}
.bv-flinks{
	list-style: none;
	margin: 0;
	padding: 0;
}
.bv-flinks li{
	margin-bottom: 8px;
}
.bv-flinks a{
	color: #8FB8D8;
	font-size: 13px;
}
.bv-flinks a:hover{
	color: #38BDF8;
}
.bv-fwidgets .sm-widget{
	margin-bottom: 16px;
}
.bv-footer-bar{
	border-top: 1px solid rgba(255,255,255,0.08);
	padding: 18px 0;
}
.bv-footer-bar .copyright{
	float: none;
	width: 100%;
	text-align: center;
	position: relative;
	font-size: 13px;
}
.bv-footer-bar .footer-legal{
	margin-bottom: 8px;
}

/* --- Responsive --- */
@media only screen and (max-width: 1024px){
	.bv-game-cols{
		grid-template-columns: 1fr;
	}
	.bv-header-inner{
		flex-wrap: wrap;
		gap: 12px;
	}
	.bv-search{
		order: 3;
		flex-basis: 100%;
		max-width: none;
	}
	.bv-burger{
		display: flex;
	}
	.bv-nav.side-menu{
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: #0F2138;
		flex-direction: column;
		align-items: stretch;
		padding: 10px 20px 18px;
		border-bottom: 1px solid rgba(255,255,255,0.08);
	}
	.bv-nav.side-menu.show{
		display: flex;
	}
	.bv-nav.side-menu li a{
		display: block;
		padding: 10px 0;
	}
	.bv-nav .drop-ct{
		position: static;
		box-shadow: none;
		background: #12263F;
		margin: 4px 0 8px;
	}
	.bv-footer-grid{
		grid-template-columns: 1fr 1fr;
	}
}
@media only screen and (max-width: 900px){
	.bv-hero{
		grid-template-columns: 1fr 1fr;
	}
	.bv-hero-big{
		grid-column: span 2;
		grid-row: auto;
	}
	.bv-hero-big .bv-hero-media{
		aspect-ratio: 16 / 9;
	}
}
@media only screen and (max-width: 560px){
	.bv-section{
		padding: 26px 0;
	}
	.bv-section-title{
		font-size: 20px;
	}
	.bv-game-title{
		font-size: 22px;
	}
	.bv-hitem{
		flex-basis: 200px;
	}
	.bv-panel{
		padding: 16px;
	}
	.bv-hero-title{
		font-size: 19px;
	}
	.bv-hero-overlay{
		padding: 40px 16px 14px;
	}
	.bv-footer-grid{
		grid-template-columns: 1fr;
		gap: 22px;
	}
}
