:root{
	--u88-bg:#030303;
	--u88-panel:#090909;
	--u88-panel-soft:#0d0a08;
	--u88-orange:#ff6900;
	--u88-orange-2:#ff8a00;
	--u88-red:#b90404;
	--u88-red-dark:#750000;
	--u88-gold:#f4a11b;
	--u88-line:#8a4c08;
	--u88-line-soft:#3c2816;
	--u88-text:#f6f6f6;
	--u88-muted:#aaa39d;
	--u88-mobile-width:430px;
	--u88-radius:10px;
	--u88-gap:7px;
}

*{
	box-sizing:border-box;
}

html{
	scroll-behavior:smooth;
	background:#000;
}

body{
	margin:0;
	min-width:280px;
	background:#000;
	color:var(--u88-text);
	font-family:Arial,Helvetica,sans-serif;
	font-size:14px;
	line-height:1.5;
	-webkit-text-size-adjust:100%;
}

body.admin-bar .u88-page-shell{
	padding-top:0;
}

a{
	color:inherit;
	text-decoration:none;
}

button,
input,
textarea,
select{
	font:inherit;
}

img,
video,
iframe,
object,
embed{
	display:block;
	max-width:100% !important;
	height:auto;
}

figure{
	max-width:100% !important;
	margin-left:0;
	margin-right:0;
}

.wp-caption,
.wp-block-image,
.wp-block-gallery,
.alignwide,
.alignfull,
.alignleft,
.alignright,
.aligncenter{
	width:auto !important;
	max-width:100% !important;
	float:none !important;
	margin-left:auto !important;
	margin-right:auto !important;
}

table,
pre{
	display:block;
	width:100%;
	max-width:100%;
	overflow-x:auto;
}

.u88-page-shell{
	width:100%;
	max-width:var(--u88-mobile-width);
	min-height:100vh;
	margin:0 auto;
	background:
		radial-gradient(circle at 50% 0,rgba(104,26,0,.12),transparent 230px),
		linear-gradient(180deg,#050505,#020202);
	overflow:hidden;
}

/* Header */
.u88-header{
	position:relative;
	z-index:20;
	background:#030303;
	border-bottom:1px solid var(--u88-line);
}

.u88-header-top{
	height:64px;
	display:grid;
	grid-template-columns:54px minmax(0,1fr) 54px;
	align-items:center;
	border-bottom:1px solid #4b2c0c;
}

.u88-menu-toggle{
	width:54px;
	height:64px;
	padding:0;
	border:0;
	background:none;
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
	gap:5px;
	cursor:pointer;
}

.u88-menu-toggle span{
	display:block;
	width:25px;
	height:2px;
	border-radius:10px;
	background:#fff;
}

.u88-logo{
	min-width:0;
	display:flex;
	align-items:center;
	justify-content:center;
}

.u88-logo img,
.u88-logo .custom-logo{
	width:auto;
	max-width:136px;
	max-height:54px;
	object-fit:contain;
}

.u88-logo .custom-logo-link{
	display:flex;
	align-items:center;
	justify-content:center;
}

.u88-app-menu{
	width:54px;
	height:64px;
	padding:17px;
	border:0;
	background:none;
	display:grid;
	grid-template-columns:repeat(2,7px);
	grid-auto-rows:7px;
	gap:4px;
	align-content:center;
	justify-content:center;
	cursor:pointer;
}

.u88-app-menu i{
	display:block;
	width:7px;
	height:7px;
	border:1.5px solid #fff;
	border-radius:1px;
}

.u88-quick-nav{
	height:74px;
	display:grid;
	grid-template-columns:repeat(5,minmax(0,1fr));
	border-bottom:1px solid #5d360a;
}

.u88-quick-nav a{
	position:relative;
	min-width:0;
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
	gap:3px;
	border-right:1px solid #29211b;
	color:#eee;
	font-size:10px;
	text-align:center;
}

.u88-quick-nav a:last-child{
	border-right:0;
}

.u88-quick-nav a.is-active{
	color:#ff8a00;
}

.u88-quick-nav a.is-active:after{
	content:"";
	position:absolute;
	left:20%;
	right:20%;
	bottom:0;
	height:2px;
	border-radius:10px;
	background:#ff7300;
	box-shadow:0 0 10px #ff7300;
}

.u88-nav-icon{
	min-height:27px;
	display:flex;
	align-items:center;
	justify-content:center;
	color:#fff;
	font-size:21px;
	line-height:1;
}

.u88-quick-nav .is-active .u88-nav-icon{
	color:#ff7a00;
}

.u88-nav-slot{
	font-size:12px;
	font-weight:900;
}

.u88-drawer{
	position:absolute;
	z-index:50;
	top:63px;
	left:8px;
	right:8px;
	padding:8px 12px;
	border:1px solid var(--u88-line);
	border-radius:8px;
	background:rgba(8,8,8,.98);
	box-shadow:0 16px 50px rgba(0,0,0,.55);
}

.u88-drawer ul{
	list-style:none;
	margin:0;
	padding:0;
}

.u88-drawer a{
	display:block;
	padding:10px 4px;
	border-bottom:1px solid #2c2118;
}

.u88-drawer li:last-child a{
	border-bottom:0;
}

/* Shared */
.u88-main{
	width:100%;
	padding:7px;
}

.u88-panel{
	border:1px solid var(--u88-line);
	border-radius:var(--u88-radius);
	background:
		radial-gradient(circle at 20% 0,rgba(128,28,0,.08),transparent 110px),
		linear-gradient(180deg,#0b0b0b,#060606);
}

.u88-btn{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	min-height:38px;
	padding:8px 15px;
	border-radius:6px;
	border:0;
	font-weight:800;
	text-align:center;
}

.u88-btn-primary{
	color:#fff;
	border:1px solid #ff6d00;
	background:linear-gradient(180deg,#ee2d0c,#a40101);
	box-shadow:inset 0 0 12px rgba(255,170,0,.14);
}

.u88-breadcrumb{
	display:flex;
	flex-wrap:wrap;
	gap:5px;
	align-items:center;
	padding:8px 1px 10px;
	color:#998e85;
	font-size:10px;
}

.u88-breadcrumb a{
	color:#ff7a00;
}

/* Homepage Hero */
.u88-hero{
	position:relative;
	width:100%;
	border:1px solid var(--u88-line);
	border-radius:10px;
	overflow:hidden;
	background:#100300;
}
.u88-hero-image-link{
	display:block;
	width:100%;
}
.u88-hero-bg{
	display:block;
	width:100%;
	height:auto;
	max-width:100% !important;
}

/* Main CTAs */
.u88-action-grid{
	display:grid;
	grid-template-columns:1fr 1fr;
	gap:7px;
	margin-top:7px;
}

.u88-action{
	min-width:0;
	min-height:53px;
	display:flex;
	align-items:center;
	justify-content:center;
	gap:8px;
	border:1px solid #ff6a00;
	border-radius:7px;
	color:#fff;
	font-size:15px;
	font-weight:900;
	letter-spacing:.2px;
	overflow:hidden;
}

.u88-action-register{
	background:linear-gradient(180deg,#df1c16,#8d0000);
}

.u88-action-login{
	background:linear-gradient(180deg,#ff7900,#c43800);
}

.u88-action-icon{
	font-size:19px;
	font-weight:400;
}

.u88-app-grid{
	display:grid;
	grid-template-columns:1fr 1fr;
	gap:7px;
	margin-top:7px;
}

.u88-app-button{
	min-width:0;
	min-height:67px;
	display:flex;
	align-items:center;
	justify-content:center;
	gap:11px;
	border:1px solid #5b4636;
	border-radius:7px;
	background:linear-gradient(180deg,#151515,#080808);
}

.u88-os-icon{
	display:flex;
	align-items:center;
	justify-content:center;
	width:40px;
	font-size:34px;
	line-height:1;
	color:#fff;
}

.u88-app-button small,
.u88-app-button strong{
	display:block;
}

.u88-app-button small{
	color:#fff;
	font-size:10px;
	line-height:1.1;
}

.u88-app-button strong{
	margin-top:2px;
	font-size:16px;
	line-height:1;
}

/* Brand intro */
.u88-brand-intro{
	margin-top:7px;
	padding:12px 10px 11px;
	text-align:center;
}

.u88-brand-intro h2{
	margin:0 0 6px;
	color:#ff6500;
	font-size:16px;
	line-height:1.2;
}

.u88-brand-intro p{
	margin:0 auto 11px;
	color:#d3d0cc;
	font-size:11px;
	line-height:1.42;
	text-align: justify !important;
}

.u88-trust-points{
	display:grid;
	grid-template-columns:repeat(4,minmax(0,1fr));
	gap:3px;
}

.u88-trust-points>div{
	min-width:0;
	display:flex;
	align-items:center;
	justify-content:center;
	gap:4px;
}

.u88-round-icon{
	flex:0 0 31px;
	width:31px;
	height:31px;
	display:grid;
	place-items:center;
	border:1px solid #bc4b09;
	border-radius:50%;
	background:radial-gradient(circle,#6c1600,#210800);
	color:#fff;
	font-size:17px;
	box-shadow:0 0 8px rgba(255,80,0,.15);
}

.u88-trust-points b{
	color:#f3f3f3;
	font-size:8px;
	line-height:1.15;
	text-align:left;
}

/* Features */
.u88-feature-list{
	margin-top:7px;
	overflow:hidden;
}

.u88-feature-list>a{
	min-height:53px;
	display:grid;
	grid-template-columns:42px minmax(0,1fr) 15px;
	align-items:center;
	gap:8px;
	padding:7px 9px;
	border-bottom:1px solid #32261d;
}

.u88-feature-list>a:last-child{
	border-bottom:0;
}

.u88-feature-icon{
	width:35px;
	height:35px;
	display:grid;
	place-items:center;
	border:1px solid #b64607;
	border-radius:50%;
	background:radial-gradient(circle,#6d1904,#23100a);
	color:#fff;
	font-size:19px;
}

.u88-feature-list strong{
	display:block;
	font-size:12px;
	line-height:1.15;
}

.u88-feature-list small{
	display:block;
	margin-top:2px;
	color:#aaa39d;
	font-size:8px;
	line-height:1.25;
}

.u88-feature-list i{
	font-size:22px;
	font-style:normal;
	font-weight:300;
}

/* Product grid */
.u88-products{
	margin-top:7px;
	padding:8px 9px 10px;
}

.u88-products h2,
.u88-faq h2,
.u88-partners h2,
.u88-payment h2{
	position:relative;
	margin:0 0 7px;
	color:#ff6900;
	font-size:15px;
	line-height:1.2;
	text-align:center;
}

.u88-product-grid{
	display:grid;
	grid-template-columns:repeat(5,minmax(0,1fr));
	gap:5px;
}

.u88-product-grid a{
	min-width:0;
	padding:7px 3px 6px;
	display:flex;
	flex-direction:column;
	align-items:center;
	gap:4px;
	border:1px solid #745038;
	border-radius:6px;
	background:linear-gradient(180deg,#171717,#090909);
}

.u88-product-grid img{
	width:37px;
	height:37px;
	object-fit:contain;
}

.u88-product-grid strong{
	max-width:100%;
	font-size:8px;
	line-height:1.1;
	white-space:nowrap;
}

/* FAQ */
.u88-faq{
	margin-top:7px;
	padding:8px;
}

.u88-faq details{
	margin-top:4px;
	border:1px solid #53351f;
	border-radius:6px;
	background:#090909;
	overflow:hidden;
}

.u88-faq summary{
	list-style:none;
	min-height:29px;
	padding:5px 9px;
	display:flex;
	align-items:center;
	gap:7px;
	cursor:pointer;
	font-size:10px;
}

.u88-faq summary::-webkit-details-marker{
	display:none;
}

.u88-faq summary:after{
	content:"⌄";
	margin-left:auto;
	color:#fff;
	font-size:15px;
}

.u88-faq details[open] summary:after{
	content:"⌃";
}

.u88-faq summary span{
	width:16px;
	height:16px;
	display:grid;
	place-items:center;
	border:1px solid #6c471f;
	border-radius:50%;
	color:#f0a12c;
	font-size:9px;
}

.u88-faq details>div{
	padding:0 10px 9px 32px;
	color:#bcb5af;
	font-size:9px;
}

/* Footer */
.u88-footer{
	width:calc(100% - 14px);
	margin:0 7px 7px;
	border:1px solid var(--u88-line);
	border-radius:9px;
	background:linear-gradient(180deg,#090909,#040404);
	overflow:hidden;
}

.u88-footer-brand{
	display:grid;
	grid-template-columns:115px minmax(0,1fr);
	align-items:center;
	gap:8px;
	padding:9px 10px 5px;
}

.u88-footer-brand img{
	width:110px;
	height:auto;
}

.u88-footer-brand strong{
	display:block;
	font-size:11px;
	line-height:1.2;
}

.u88-footer-brand p{
	margin:3px 0 0;
	color:#aaa39d;
	font-size:8px;
	line-height:1.3;
}

.u88-footer-links{
	margin:0 10px;
	padding:7px 0;
	display:grid;
	grid-template-columns:repeat(4,minmax(0,1fr));
	gap:2px;
	border-top:1px solid #332317;
	border-bottom:1px solid #332317;
}

.u88-footer-links a{
	min-width:0;
	font-size:7px;
	text-align:center;
	white-space:nowrap;
}

.u88-partners,
.u88-payment{
	padding:6px 8px;
}

.u88-partners>div{
	display:grid;
	grid-template-columns:repeat(4,minmax(0,1fr));
	gap:4px;
}

.u88-payment>div{
	display:grid;
	grid-template-columns:repeat(7,minmax(0,1fr));
	gap:3px;
}

.u88-partners span,
.u88-payment span{
	min-width:0;
	min-height:27px;
	padding:2px;
	display:grid;
	place-items:center;
	border:1px solid #4f453d;
	border-radius:4px;
	background:linear-gradient(180deg,#151515,#080808);
	color:#ddd;
	font-size:7px;
	font-weight:700;
	text-align:center;
	overflow:hidden;
}

.u88-payment{
	border-top:1px solid #2a211b;
}

.u88-social{
	padding:1px 10px 5px;
	display:flex;
	gap:5px;
	justify-content:center;
}

.u88-social a{
	width:23px;
	height:23px;
	display:grid;
	place-items:center;
	border-radius:50%;
	background:#1b1b1b;
	font-size:10px;
}

.u88-copy{
	padding:5px 8px 7px;
	border-top:1px solid #2a211b;
	color:#96918d;
	font-size:8px;
	text-align:center;
}

/* Category */
.u88-category-page{
	padding-top:0;
}

.u88-category-banner{
	position:relative;
	min-height:120px;
	border:1px solid var(--u88-line);
	border-radius:9px;
	overflow:hidden;
	background:#130500;
}

.u88-category-banner img{
	position:absolute;
	inset:0;
	width:100%;
	height:100%;
	max-width:none !important;
	object-fit:cover;
	object-position:65% center;
}

.u88-category-banner:after{
	content:"";
	position:absolute;
	inset:0;
	background:linear-gradient(90deg,rgba(5,0,0,.9),rgba(5,0,0,.3) 56%,transparent);
}

.u88-category-banner-copy{
	position:relative;
	z-index:2;
	padding:26px 14px;
}

.u88-category-banner-copy span{
	color:#ff6900;
	font-size:10px;
	font-weight:900;
}

.u88-category-banner h1{
	margin:2px 0 0;
	font-size:27px;
	line-height:1;
	text-transform:uppercase;
}

.u88-category-intro{
	padding:9px 2px 7px;
}

.u88-category-intro h2{
	margin:0;
	font-size:18px;
	line-height:1.2;
}

.u88-category-intro p{
	margin:4px 0 0;
	color:#aaa39d;
	font-size:10px;
	line-height:1.4;
}

.u88-toolbar{
	display:flex;
	align-items:center;
	gap:5px;
	padding-bottom:7px;
	overflow-x:auto;
	scrollbar-width:none;
}

.u88-toolbar::-webkit-scrollbar{
	display:none;
}

.u88-toolbar a,
.u88-toolbar button{
	flex:0 0 auto;
	min-height:30px;
	padding:5px 9px;
	border:1px solid #49301d;
	border-radius:5px;
	background:#0c0c0c;
	color:#ddd;
	font-size:9px;
}

.u88-toolbar a.active{
	border-color:#ff6900;
	background:linear-gradient(180deg,#a82209,#5e0800);
	color:#fff;
}

.u88-filter-button{
	margin-left:auto;
}

.u88-post-list{
	display:flex;
	flex-direction:column;
	gap:5px;
}

.u88-post-card{
	min-width:0;
	min-height:91px;
	padding:5px;
	display:grid;
	grid-template-columns:38% minmax(0,1fr) 16px;
	align-items:center;
	gap:7px;
	border:1px solid #2f241d;
	border-radius:7px;
	background:linear-gradient(180deg,#0c0c0c,#070707);
	overflow:hidden;
}

.u88-post-thumb{
	align-self:stretch;
	min-height:79px;
	border-radius:5px;
	overflow:hidden;
	background:#180600;
}

.u88-post-thumb img{
	width:100%;
	height:100%;
	max-width:none !important;
	object-fit:cover;
}

.u88-post-info{
	min-width:0;
}

.u88-post-cat{
	display:inline-block;
	margin-bottom:3px;
	color:#ff6d00;
	font-size:7px;
	font-weight:900;
	text-transform:uppercase;
}

.u88-post-info h2{
	margin:0;
	display:-webkit-box;
	-webkit-box-orient:vertical;
	-webkit-line-clamp:3;
	overflow:hidden;
	font-size:11px;
	line-height:1.25;
}

.u88-post-meta{
	margin-top:6px;
	display:flex;
	flex-wrap:wrap;
	gap:3px;
	color:#77716d;
	font-size:7px;
}

.u88-post-arrow{
	font-size:19px;
	color:#fff;
	text-align:center;
}

.u88-pagination{
	padding:10px 0 6px;
	display:flex;
	justify-content:center;
	align-items:center;
	gap:6px;
}

.u88-pagination .nav-links{
	display:flex;
	gap:4px;
	align-items:center;
}

.u88-pagination a,
.u88-pagination span{
	min-width:30px;
	height:30px;
	padding:0 7px;
	display:flex;
	align-items:center;
	justify-content:center;

	border:1px solid #3f2d21;
	border-radius:4px;

	background:#090909;
	color:#fff;

	font-size:12px;
	line-height:1;
	text-decoration:none;
}

.u88-pagination .current{
	border-color:#ff6900;
	background:#8f1704;
	color:#fff;
}

.u88-pagination a:hover{
	border-color:#ff6900;
	color:#ff7900;
}

.u88-category-seo{
	margin-top:5px;
	padding:12px;
	color:#c7c2be;
	font-size:11px;
}

.u88-category-seo h2{
	color:#ff6900;
	font-size:17px;
}

.u88-category-seo h3{
	color:#f2f2f2;
	font-size:14px;
}

/* Single */
.u88-single-page{
	padding-top:0;
}

.u88-article{
	min-width:0;
}

.u88-article-header{
	padding:1px 1px 8px;
}

.u88-article-header h1{
	margin:3px 0 7px;
	font-size:22px;
	line-height:1.18;
}

.u88-article-meta{
	display:flex;
	flex-wrap:wrap;
	gap:4px;
	color:#807a75;
	font-size:8px;
}

.u88-featured{
	margin:0 0 8px;
	border:1px solid #56331a;
	border-radius:8px;
	overflow:hidden;
}

.u88-featured img{
	width:100%;
	height:auto;
}

.u88-easy-toc,
.u88-toc-widget,
#ez-toc-container,
.ez-toc-container{
	width:100% !important;
	max-width:100% !important;
	margin:0 0 10px !important;
	padding:9px !important;
	border:1px solid #683b1f !important;
	border-radius:6px !important;
	background:#090909 !important;
	box-shadow:none !important;
	color:#ddd !important;
}

.u88-easy-toc a,
#ez-toc-container a,
.ez-toc-container a{
	color:#e6ddd7 !important;
}

.u88-entry-content{
	min-width:0;
	max-width:100%;
	color:#d6d1cd;
	font-size:13px;
	line-height:1.65;
	overflow-wrap:anywhere;
}

.u88-entry-content>p:first-child{
	margin-top:0;
}

.u88-entry-content h2{
	margin:18px 0 7px;
	color:#ff6900;
	font-size:18px;
	line-height:1.25;
}

.u88-entry-content h3{
	margin:15px 0 6px;
	color:#fff;
	font-size:15px;
	line-height:1.25;
}

.u88-entry-content a{
	color:#ff8500;
	text-decoration:underline;
	text-underline-offset:2px;
}

.u88-entry-content blockquote{
	margin:12px 0;
	padding:9px 11px;
	border-left:3px solid #ff6900;
	background:#0b0b0b;
	color:#bbb;
}

.u88-entry-content table{
	border-collapse:collapse;
}

.u88-entry-content th,
.u88-entry-content td{
	padding:7px;
	border:1px solid #403025;
}

.u88-tags-share{
	margin-top:14px;
	padding-top:10px;
	border-top:1px solid #33251c;
}

.u88-tags{
	display:flex;
	flex-wrap:wrap;
	gap:4px;
	font-size:8px;
}

.u88-tags>span{
	color:#ff6900;
	font-weight:900;
}

.u88-tags a{
	padding:3px 6px;
	border:1px solid #423124;
	border-radius:4px;
	background:#090909;
}

.u88-share{
	margin-top:10px;
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:7px;
}

.u88-share>span{
	font-size:9px;
	font-weight:900;
}

.u88-share>div{
	display:flex;
	gap:5px;
}

.u88-share a,
.u88-share button{
	width:29px;
	height:29px;
	padding:0;
	display:grid;
	place-items:center;
	border:0;
	border-radius:50%;
	background:linear-gradient(180deg,#c4200c,#620600);
	color:#fff;
	font-size:12px;
	cursor:pointer;
}

.u88-post-nav{
	margin-top:10px;
	display:grid;
	grid-template-columns:1fr;
	gap:5px;
}

.u88-post-nav-item{
	min-height:51px;
	padding:8px;
	border:1px solid #33261d;
	border-radius:6px;
	background:#090909;
}

.u88-post-nav-item small{
	display:block;
	margin-bottom:3px;
	color:#ff6900;
	font-size:7px;
	font-weight:900;
}

.u88-post-nav-item a{
	display:block;
	font-size:10px;
	line-height:1.25;
}

.u88-related{
	margin-top:12px;
}

.u88-related h2{
	margin:0 0 7px;
	color:#ff6900;
	font-size:14px;
}

.u88-related-grid{
	display:grid;
	grid-template-columns:repeat(3,minmax(0,1fr));
	gap:5px;
}

.u88-related article{
	min-width:0;
	border:1px solid #35261c;
	border-radius:6px;
	background:#080808;
	overflow:hidden;
}

.u88-related img{
	width:100%;
	aspect-ratio:1.5/1;
	object-fit:cover;
}

.u88-related strong,
.u88-related small{
	display:block;
}

.u88-related strong{
	padding:5px 5px 2px;
	font-size:8px;
	line-height:1.25;
}

.u88-related small{
	padding:0 5px 5px;
	color:#77716d;
	font-size:7px;
}

.u88-single-cta{
	margin-top:9px;
	padding:10px;
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:8px;
	border:1px solid var(--u88-line);
	border-radius:7px;
	background:
		radial-gradient(circle at 20% 50%,rgba(180,35,0,.18),transparent 100px),
		#090909;
}

.u88-single-cta strong{
	font-size:9px;
	line-height:1.2;
}

/* Generic pages/search/archive */
.u88-generic{
	padding-top:9px;
}

.u88-generic>.u88-panel{
	padding:12px;
}

.u88-generic h1{
	margin-top:0;
	color:#ff6900;
	font-size:22px;
}

.u88-information-main,
.u88-information-faq{
	margin-top:7px;
}

.u88-accordion{
	margin:5px 0;
	border:1px solid #4a2d19;
	border-radius:6px;
	background:#090909;
	overflow:hidden;
}

.u88-accordion summary{
	padding:8px 10px;
	cursor:pointer;
	font-weight:700;
}

.u88-accordion-body{
	padding:0 10px 10px;
	color:#bbb;
	font-size:11px;
}

/* v1.1.1 — exact mockup image assets */
.u88-menu-toggle img,
.u88-app-menu img{
	width:31px;
	height:31px;
	object-fit:contain;
}

.u88-menu-toggle,
.u88-app-menu{
	display:flex;
	align-items:center;
	justify-content:center;
	padding:0;
}

.u88-nav-icon img{
	width:26px;
	height:26px;
	object-fit:contain;
}

.u88-action-icon{
	width:23px !important;
	height:23px !important;
	object-fit:contain;
	flex:0 0 23px;
}

.u88-os-icon{
	width:42px !important;
	height:42px !important;
	object-fit:contain;
	flex:0 0 42px;
}

.u88-trust-points img{
	width:31px;
	height:31px;
	object-fit:contain;
	flex:0 0 31px;
}

.u88-feature-icon{
	width:35px !important;
	height:35px !important;
	object-fit:contain;
	border:0 !important;
	border-radius:0 !important;
	background:transparent !important;
	box-shadow:none !important;
}

.u88-product-grid img{
	width:49px;
	height:43px;
	object-fit:contain;
}

.u88-footer-links a{
	display:flex;
	align-items:center;
	justify-content:center;
	gap:3px;
}
.u88-footer-links img{
	width:11px;
	height:11px;
	object-fit:contain;
}

.u88-partners>div img,
.u88-payment>div img{
	width:100%;
	height:27px;
	padding:2px;
	object-fit:contain;
	border:1px solid #4f453d;
	border-radius:4px;
	background:linear-gradient(180deg,#151515,#080808);
}

.u88-partners>div span,
.u88-payment>div span{
	display:none;
}

/* ==========================================================================
   v1.2.0 — Editor + Shortcode architecture
   ========================================================================== */

.u88-brand-intro-editor-content{
	color:#d3d0cc;
	font-size:11px;
	line-height:1.42;
}
.u88-brand-intro-editor-content p{
	margin:0 0 7px;
}
.u88-brand-intro-editor-content p:last-child{
	margin-bottom:11px;
}
.u88-brand-intro-editor-content a{
	color:#ff7b00;
	text-decoration:underline;
	text-underline-offset:2px;
}
.u88-brand-intro-editor-content ul,
.u88-brand-intro-editor-content ol{
	margin:7px 0 11px;
	padding-left:18px;
	text-align:left;
}

.u88-seo-content{
	margin-top:7px;
	padding:8px;
}
.u88-seo-content>h2{
	margin:0 0 7px;
	color:#ff6900;
	font-size:15px;
	line-height:1.2;
	text-align:center;
}
.u88-seo-content .u88-accordion{
	margin-top:4px;
}
.u88-seo-content .u88-accordion summary{
	color:#eee;
	font-size:10px;
}
.u88-seo-content .u88-accordion-body{
	color:#c8c1bc;
	font-size:10px;
	line-height:1.55;
}
.u88-seo-content .u88-accordion-body h2{
	font-size:14px;
	color:#ff6900;
}
.u88-seo-content .u88-accordion-body h3{
	font-size:12px;
	color:#fff;
}
.u88-seo-content .u88-accordion-body img{
	max-width:100% !important;
	height:auto;
}

.u88-faq-shortcode{
	margin-top:7px;
}
.u88-faq-shortcode .u88-faq-item summary{
	padding:5px 9px;
}
.u88-faq-shortcode .u88-faq-item .u88-accordion-body{
	padding:0 10px 9px 32px;
	color:#bcb5af;
	font-size:9px;
	line-height:1.5;
}

.u88-hero-image-link{
	position:relative;
}
.u88-hero-custom-copy{
	position:absolute;
	left:8%;
	top:50%;
	width:45%;
	transform:translateY(-50%);
	display:flex;
	flex-direction:column;
	align-items:flex-start;
	color:#fff;
	text-align:left;
	text-shadow:0 2px 7px rgba(0,0,0,.85);
	pointer-events:none;
}
.u88-hero-custom-copy small,
.u88-hero-custom-copy b,
.u88-hero-custom-copy strong,
.u88-hero-custom-copy em,
.u88-hero-custom-copy i{
	display:block;
	font-style:normal;
	line-height:1.05;
}
.u88-hero-custom-copy small{
	font-size:9px;
	font-weight:800;
}
.u88-hero-custom-copy strong{
	margin-top:2px;
	font-size:31px;
	font-weight:900;
}
.u88-hero-custom-copy b{
	margin-top:4px;
	font-size:10px;
}
.u88-hero-custom-copy em{
	margin-top:1px;
	color:#ff8a00;
	font-size:31px;
	font-weight:900;
}
.u88-hero-custom-copy i{
	margin-top:5px;
	padding:4px 10px;
	border:1px solid #ff7100;
	border-radius:4px;
	background:linear-gradient(180deg,#d51d0b,#800000);
	font-size:8px;
	font-weight:900;
}

.u88-partners>div a{
	display:block;
	min-width:0;
}

/* ==========================================================================
   v1.2.1 — Footer 4 blocks / 2 per row / NO FOOTER BORDERS
   ========================================================================== */

.u88-footer{
	width:calc(100% - 14px);
	margin:0 7px 7px;
	border:0 !important;
	border-radius:0 !important;
	background:linear-gradient(180deg,#090909,#040404);
	overflow:visible;
}

.u88-footer-brand{
	display:grid;
	grid-template-columns:105px minmax(0,1fr) auto;
	align-items:center;
	gap:8px;
	padding:11px 7px 9px;
	border:0 !important;
	border-radius:0 !important;
}

.u88-footer-brand>img{
	width:100px;
	height:auto;
}

.u88-footer-brand-copy{
	min-width:0;
}

.u88-footer-brand-copy strong{
	display:block;
	font-size:10px;
	line-height:1.25;
}

.u88-footer-brand-copy p{
	margin:3px 0 0;
	color:#aaa39d;
	font-size:8px;
	line-height:1.35;
}

.u88-footer .u88-social{
	padding:0;
	display:flex;
	gap:4px;
	justify-content:flex-end;
	align-items:center;
}

.u88-footer .u88-social a{
	width:25px;
	height:25px;
	flex:0 0 25px;
	display:grid;
	place-items:center;
	border:0;
	border-radius:50%;
	background:#222;
	color:#fff;
	font-size:10px;
}

.u88-footer-columns{
	display:grid;
	grid-template-columns:repeat(2,minmax(0,1fr));
	gap:0;
	padding:3px 7px 8px;
	border:0 !important;
}

.u88-footer-column{
	min-width:0;
	padding:10px 9px 11px;
	border:0 !important;
	border-radius:0 !important;
	background:transparent !important;
}

.u88-footer-column h2{
	margin:0 0 7px;
	color:#ff6900;
	font-size:11px;
	line-height:1.15;
	text-align:left;
}

.u88-footer-column ul{
	list-style:none;
	margin:0;
	padding:0;
}

.u88-footer-column li{
	margin:0 0 5px;
	padding:0;
	color:#d6d1cd;
	font-size:8px;
	line-height:1.3;
}

.u88-footer-column li:last-child{
	margin-bottom:0;
}

.u88-footer-column a{
	color:#d6d1cd;
}

.u88-footer-column a:hover{
	color:#ff7900;
}

.u88-footer-contact-list li{
	display:grid;
	grid-template-columns:14px minmax(0,1fr);
	align-items:start;
	gap:4px;
}

.u88-footer-contact-list li>span{
	color:#fff;
	font-size:9px;
	line-height:1.25;
}

.u88-footer-contact-list li>div{
	min-width:0;
	color:#c7c0ba;
	font-size:7px;
	line-height:1.3;
}

.u88-footer-contact-list strong{
	display:inline;
	color:#eee;
	font-size:7px;
	font-weight:500;
	overflow-wrap:anywhere;
}

.u88-partners,
.u88-payment{
	padding:7px;
	border:0 !important;
	border-radius:0 !important;
	background:transparent !important;
}

.u88-partners h2,
.u88-payment h2{
	margin:0 0 6px;
	color:#ff6900;
	font-size:10px;
	line-height:1.1;
	text-align:center;
}

.u88-partners>div{
	display:grid;
	grid-template-columns:repeat(4,minmax(0,1fr));
	gap:4px;
}

.u88-payment>div{
	display:grid;
	grid-template-columns:repeat(7,minmax(0,1fr));
	gap:3px;
}

.u88-partners>div img,
.u88-payment>div img{
	width:100%;
	height:26px;
	padding:1px;
	object-fit:contain;
	border:0 !important;
	border-radius:0 !important;
	background:transparent !important;
}

.u88-copy{
	padding:7px 8px 9px;
	border:0 !important;
	color:#96918d;
	font-size:8px;
	text-align:center;
}

/* Remove old footer-link row if present in legacy CSS. */
.u88-footer-links{
	display:none !important;
}

