
.cr-page #crash_bet:hover:not(.disabled) { background: linear-gradient(135deg, #8241e5, #ae61f7); }

.dice .box {
	background: var(--site-glass-bg);
	border-radius: 18px;
	border: 1px solid var(--site-glass-border);
	box-shadow: var(--site-glass-shadow);
	backdrop-filter: blur(16px) saturate(140%);
	-webkit-backdrop-filter: blur(16px) saturate(140%);
	float: left;
	text-align: left;
	padding: 15px;
	position: relative;
}

.dice .box h4 {
	margin: 0 0 8px;
	color: var(--site-color-main-light);
	font-family: var(--site-font-display);
	letter-spacing: 0.02em;
	float: left;
	width: 100%;
}

.dice .left.box {
	width: 28%;
	float: left;
	padding-bottom: 113px;
}

.dice .right.box {
	width: calc(72% - 30px);
	float: left;
	margin: 0 0 0 30px;
}

@media (max-width: 768px), (pointer: coarse) and (max-width: 1199px) and (max-height: 600px) and (orientation: landscape) {
	.dice .box {
		width: 100% !important;
		margin: 20px 0 0 !important;
		display: block;
	}

	.dice-game-info {
		margin: 0 !important;
	}}

.dice .box .field_container {
	width: 100%;
	display: block;
}

.dice .box .inputs .field_content,
.dice .box .inputs .field_extra {
	display: block;
	float: left;
	width: 100%;
	text-align: center;
}

.dice .box input[type="number"] {
	text-align: center;
	padding: 10px 0;
	border-radius: 10px;
	margin: 0 0 7px;
	width: 100%;
	background: rgba(12, 18, 28, 0.7);
	border: 1px solid var(--site-glass-border);
	color: var(--site-color-text);
}

.dice .box .inputs .field_extra {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 10px;
}

.dice .box .field_extra button {
	/*width: 33.33%;*/
	float: left;
	background: rgba(12, 18, 28, 0.7);
	border: 1px solid var(--site-glass-border);
	border-radius: 10px;
	color: var(--site-color-text);
	transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.dice .box .field_extra button:hover {
	transform: translateY(-2px);
	border-color: rgba(44, 212, 197, 0.45);
	box-shadow: 0 12px 26px rgba(4, 9, 16, 0.35);
}

.dice .box input.border {
	border: 1px solid #2A3547;
}

#minesweeper_cashout:hover {
	transform: translateY(-3px);
	opacity: 1;
}

.table-container.dice-table {
	margin: 40px 0 0;
	/*text-align: center;*/
}

.table-container.dice-table .table-column {
	padding-left: 40px !important;
}

.table-container.dice-table .table-row {
	border-bottom: 0;	
}

.table-container.dice-table .table-body .table-row {
	padding: 10px 0;
}

.table-container.dice-table .table-row i {
	color: #ffc34c;
	margin-left: 3px;
}

.table-container.dice-table .table-row:nth-child(even) {
	/*border-bottom: 0;*/
	background: var(--site-color-bg-dark);
}

.table-container.dice-table .table-header {
	background: var(--site-color-bg-light);
	border: 0;
	color: #596076;
}

.table-container.dice-table .table-body {
	/*x*/
}

.table-container.dice-table .avatar {
	border-width: 2px;
	margin-right: 5px;
}

/* Override style.css rule that makes #minesweeper_bet position:absolute */
.mines-game-layout #minesweeper_bet,
.mines-game-layout #minesweeper_cashout {
    position: static !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    top: auto !important;
    background-image: none !important;
    box-shadow: none !important;
    line-height: normal !important;
    height: 52px !important;
    border-radius: 6px !important;
    width: 100% !important;
    margin: 0 !important;
}

.mines-game-layout #minesweeper_bet {
    background: #8d3bde !important;
    margin-top: auto !important;
}

.mines-game-layout #minesweeper_cashout {
    background: #09b95b !important;
    margin-top: 8px !important;
}

.mines-game-layout #minesweeper_cashout.hidden { display: none !important; }

/* Override old grid styles inside new layout */
.mines-game-layout .minesweeper-grid {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    grid-template-rows: repeat(5, 1fr) !important;
    gap: 8px !important;
    width: 100%;
    max-width: 320px;
    aspect-ratio: 1 / 1;
    justify-content: unset;
}
/* Grid size variants (set via #minesweeper_bombs[data-grid]) */
.mines-game-layout .minesweeper-grid[data-grid="36"] {
    grid-template-columns: repeat(6, 1fr) !important;
    grid-template-rows: repeat(6, 1fr) !important;
}
.mines-game-layout .minesweeper-grid[data-grid="49"] {
    grid-template-columns: repeat(7, 1fr) !important;
    grid-template-rows: repeat(7, 1fr) !important;
    gap: 6px !important;
}
.mines-game-layout .minesweeper-grid[data-grid="64"] {
    grid-template-columns: repeat(8, 1fr) !important;
    grid-template-rows: repeat(8, 1fr) !important;
    gap: 5px !important;
}
/* Shrink the revealed-amount label + bomb icon as tiles get smaller */
.mines-game-layout .minesweeper-grid .bomb { font-size: 15px; font-weight: 700; }
.mines-game-layout .minesweeper-grid[data-grid="36"] .bomb { font-size: 13px; }
.mines-game-layout .minesweeper-grid[data-grid="49"] .bomb { font-size: 11px; }
.mines-game-layout .minesweeper-grid[data-grid="64"] .bomb { font-size: 9px; }
.mines-game-layout .minesweeper-grid[data-grid="49"] .bomb.danger::after { width: 22px; height: 22px; }
.mines-game-layout .minesweeper-grid[data-grid="64"] .bomb.danger::after { width: 18px; height: 18px; }

/* Base tile — no !important so danger/success !important from others.css still win */
.mines-game-layout .minesweeper-grid .bomb {
    background: #4c2b6c;
    border-radius: 8px;
    border: none;
    box-shadow: none;
    cursor: pointer;
    transition: background 0.15s, transform 0.1s;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Disable the shine overlay pseudo-element on new design */
.mines-game-layout .minesweeper-grid .bomb::before {
    display: none;
}

.mines-game-layout .minesweeper-grid .bomb:hover:not(.disabled) {
    background: #5d3580;
    transform: scale(1.03);
    border-color: transparent;
    box-shadow: none;
}

.mines-game-layout .minesweeper-grid .bomb.disabled:not(.success):not(.danger) {
    cursor: default;
}

.mines-game-layout .minesweeper-grid .bomb.disabled:not(.success):not(.danger):hover {
    background: #4c2b6c;
    transform: none;
}

@media (max-width: 768px), (pointer: coarse) and (max-width: 1199px) and (max-height: 600px) and (orientation: landscape) {
    .mines-game-layout .minesweeper-grid {
        max-width: 340px;
    }}
.dice-game-layout #dice_bet.disabled { opacity: 0.55; cursor: not-allowed; }
.limbo-btn-place.disabled { opacity: 0.55; cursor: not-allowed; }
.limbo-game-layout #limbo_bet.disabled { opacity: 0.55; cursor: not-allowed; }
.wheel-risk-btn.active { background: #8d3bde; border-color: #8d3bde; color: #fff; }
.wheel-btn-place.disabled { opacity: 0.55; cursor: not-allowed; }
.wheel-game-layout #wheel_bet.disabled { opacity: 0.55; cursor: not-allowed; }
.hilo-btn-place.disabled,
.hilo-btn-cashout.disabled { opacity: 0.55; cursor: not-allowed; }
.hilo-btn-place.hidden,
.hilo-btn-cashout.hidden { display: none; }
.hilo-guess.disabled { opacity: 0.45; cursor: not-allowed; pointer-events: auto; }
.hilo-guess.disabled:hover { background: rgba(255,255,255,0.05); }
.bj-btn-place.disabled { opacity: 0.55; cursor: not-allowed; }
.bj-btn-place.hidden { display: none; }
.bj-actions.hidden { display: none; }
.bj-btn-action.disabled { opacity: 0.45; cursor: not-allowed; }
.bcr-side.active { border-color: #8d3bde; background: rgba(141,59,222,0.18); }
.bcr-btn-place.disabled { opacity: 0.55; cursor: not-allowed; }
.dt-page #dt_side_dragon:hover,.dt-page #dt_side_dragon.active { border-color: rgba(255,107,107,.5); background: linear-gradient(145deg,rgba(210,58,58,.24),rgba(75,20,20,.24)); }
.dt-page #dt_side_tie:hover,.dt-page #dt_side_tie.active { border-color: rgba(244,201,93,.5); background: linear-gradient(145deg,rgba(173,126,30,.22),rgba(71,51,15,.24)); }
.dt-page #dt_side_tiger:hover,.dt-page #dt_side_tiger.active { border-color: rgba(244,150,60,.5); background: linear-gradient(145deg,rgba(186,109,45,.22),rgba(74,42,18,.24)); }
.dt-page #dt_side_dragon.active .dt-side-pays { color: #ff8f8f; }
.dt-page #dt_side_tie.active .dt-side-pays { color: #f4c95d; }
.dt-page #dt_side_tiger.active .dt-side-pays { color: #ffb066; }
.dt-page .dt-btn-place:hover:not(.disabled) { background: linear-gradient(135deg,#8241e5,#ae61f7); }
.dt-page .dt-btn-place.disabled { opacity: .55; cursor: not-allowed; }
.dt-page .dt-history .table-tabs { padding: 8px 12px; background: rgba(5,3,10,.18); }
.dt-page .dt-history .table-header { background: rgba(255,255,255,.025); }
.kn-btn-place.disabled { opacity: 0.55; cursor: not-allowed; }
.ck-btn-place.disabled { opacity: 0.55; cursor: not-allowed; }
.ck-btn-place.hidden { display: none; }
.ck-actions.hidden { display: none; }
.ck-btn-pump.disabled,
.ck-btn-cashout.disabled { opacity: 0.45; cursor: not-allowed; }
.cf-btn-place.disabled { opacity: 0.55; cursor: not-allowed; }
.cf-btn-place.hidden { display: none; }
.cf-actions.hidden { display: none; }
.cf-btn-guess.disabled { opacity: 0.45; cursor: not-allowed; }
.cf-btn-cashout.disabled { opacity: 0.45; cursor: not-allowed; }
.av-btn-place.disabled { opacity: 0.55; cursor: not-allowed; }
.av-btn-place.hidden { display: none; }
.av-speed-btn.active {
    background: rgba(242,181,60,0.16);
    border-color: rgba(242,181,60,0.5);
    color: #f2b53c;
}
.av-splash.hidden { display: none; }
.av-celebration.hidden { display: none; }
.av-stall-warning.hidden { display: none; }
.pk-page .hidden { display: none !important; }
.rl-bet-btn.disabled { opacity: 0.5; cursor: not-allowed; filter: none; }
.rl-history.hidden { display: none !important; }
.cr-btn-place.disabled { opacity: 0.5; cursor: not-allowed; }
.cr-btn-cashout.hidden { display: none !important; }
.cr-btn-next:hover:not(.disabled) { border-color:rgba(180,130,255,.65); background:rgba(137,76,224,.22); color:#fff; }
.cr-btn-next.disabled { opacity:.55; cursor:not-allowed; }
.cr-btn-next.hidden { display:none !important; }
.tw-btn-place.disabled { opacity: 0.5; cursor: not-allowed; }
.tw-btn-cashout.hidden { display: none !important; }
.tw-btn-cashout.disabled { opacity: 0.5; cursor: not-allowed; pointer-events: none; }
.pk-risk-btn.active { background: #8d3bde; color: #fff; }
.sl-btn-place.disabled { opacity: 0.5; cursor: default; pointer-events: none; }
.sl-demo-banner.hidden { display: none; }

/* Compact (tablet + mobile) layout. The sidebar collapses to a drawer at
   1024px, so the responsive tables switch to the compact grid here too. */
@media (max-width: 1024px) {

    .dice-history .table-row {
        grid-template-columns: minmax(0, 1.35fr) minmax(68px, 0.75fr) minmax(54px, 0.6fr) minmax(76px, 0.85fr);
    }

    .dice-history .table-row > .table-column:nth-child(4),
    .dice-history .table-row > .table-column:nth-child(5) {
        display: none;
    }}
.hilo-page .hilo-btn-place:hover:not(.disabled) { background: linear-gradient(135deg,#8241e5,#ae61f7); }
.hilo-page .hilo-guess:hover:not(.disabled) { transform: translateY(-3px); background: rgba(255,255,255,.055); }
.hilo-page .hilo-guess-hi:hover:not(.disabled) { border-color: rgba(67,216,141,.55); box-shadow: 0 14px 28px rgba(30,171,105,.12); }
.hilo-page .hilo-guess-lo:hover:not(.disabled) { border-color: rgba(255,102,122,.55); box-shadow: 0 14px 28px rgba(207,50,77,.12); }
.hilo-page .hilo-guess.disabled { opacity: .34; filter: grayscale(.25); }
.hilo-page .hilo-history .table-tabs { padding: 8px 12px; background: rgba(5,3,10,.18); }
.hilo-page .hilo-history .table-header { background: rgba(255,255,255,.025); }
.rl-page .rl-bet-btn:hover:not(.disabled) { transform: none; filter: none; }
.rl-page .rl-bet-btn:hover:not(.disabled)::after { box-shadow: inset 0 0 0 100vmax rgba(0,0,0,.2); }
.dice-page .dice-game-layout #dice_bet:hover:not(.disabled) { background: linear-gradient(135deg,#8241e5,#ae61f7) !important; }
.dice-page .dice-history .table-tabs { padding: 8px 12px; background: rgba(5,3,10,.18); }
.dice-page .dice-history .table-header { background: rgba(255,255,255,.025); }
.limbo-page .limbo-game-layout #limbo_bet:hover:not(.disabled) { background: linear-gradient(135deg,#8241e5,#ae61f7) !important; }
.limbo-page .limbo-history .table-tabs { padding: 8px 12px; background: rgba(5,3,10,.18); }
.limbo-page .limbo-history .table-header { background: rgba(255,255,255,.025); }
.wheel-page .wheel-game-layout #wheel_bet:hover:not(.disabled) { background: linear-gradient(135deg,#8241e5,#ae61f7) !important; }
.wheel-page .wheel-history .table-tabs { padding: 8px 12px; background: rgba(5,3,10,.18); }
.wheel-page .wheel-history .table-header { background: rgba(255,255,255,.025); }.rps-page .rps-move:hover:before,.rps-page .rps-move.active:before{opacity:.5;transform:scale(1.4)}.rps-page #rps_move_rock.active{border-color:rgba(168,115,239,.62)!important;box-shadow:inset 0 0 22px rgba(139,77,218,.16),0 8px 20px rgba(50,24,84,.2)}.rps-page #rps_move_rock.active i{color:#b989f5}.rps-page #rps_move_paper.active{border-color:rgba(95,209,207,.55)!important;box-shadow:inset 0 0 22px rgba(63,181,179,.13),0 8px 20px rgba(22,77,76,.18)}.rps-page #rps_move_paper.active i{color:#69d9d5}.rps-page #rps_move_scissors.active{border-color:rgba(244,201,93,.55)!important;box-shadow:inset 0 0 22px rgba(214,166,56,.13),0 8px 20px rgba(85,61,18,.18)}.rps-page #rps_move_scissors.active i{color:#f4d171}.rps-page .rps-btn-place:hover:not(.disabled){background:linear-gradient(135deg,#8142ce,#b66af4)!important}
.bj-page .bj-btn-place:hover:not(.disabled) { background: linear-gradient(135deg,#8241e5,#ae61f7); }
.bj-page .bj-btn-action:hover:not(.disabled) { transform: translateY(-1px); filter: brightness(1.07); }
.bj-page .bj-history .table-tabs { padding: 8px 12px; background: rgba(5,3,10,.18); }
.bj-page .bj-history .table-header { background: rgba(255,255,255,.025); }
.bcr-page #bcr_side_player:hover,.bcr-page #bcr_side_player.active { border-color: rgba(106,148,255,.5); background: linear-gradient(145deg,rgba(50,93,202,.24),rgba(21,36,81,.24)); }
.bcr-page #bcr_side_tie:hover,.bcr-page #bcr_side_tie.active { border-color: rgba(244,201,93,.5); background: linear-gradient(145deg,rgba(173,126,30,.22),rgba(71,51,15,.24)); }
.bcr-page #bcr_side_banker:hover,.bcr-page #bcr_side_banker.active { border-color: rgba(244,92,122,.5); background: linear-gradient(145deg,rgba(186,45,78,.22),rgba(74,18,36,.24)); }
.bcr-page #bcr_side_player.active .bcr-side-pays { color: #82a6ff; }
.bcr-page #bcr_side_tie.active .bcr-side-pays { color: #f4c95d; }
.bcr-page #bcr_side_banker.active .bcr-side-pays { color: #ff7892; }
.bcr-page .bcr-btn-place:hover:not(.disabled) { background: linear-gradient(135deg,#8241e5,#ae61f7); }
.bcr-page .bcr-history .table-tabs { padding: 8px 12px; background: rgba(5,3,10,.18); }
.bcr-page .bcr-history .table-header { background: rgba(255,255,255,.025); }
.rps-page .rps-move.active { border-color: rgba(40,199,160,.55); background: linear-gradient(145deg,rgba(24,164,131,.24),rgba(12,68,55,.24)); }
.rps-page .rps-move.active i { color: #28C7A0; }
.rps-page .rps-btn-place:hover:not(.disabled) { background: linear-gradient(135deg,#1cb18e,#33dbb0); }
.rps-page .rps-btn-place.disabled { opacity: .55; cursor: not-allowed; }
.rps-page .rps-history .table-tabs { padding: 8px 12px; background: rgba(5,3,10,.18); }
.rps-page .rps-history .table-header { background: rgba(255,255,255,.025); }
.kn-page .kn-btn-place:hover:not(.disabled) { background: linear-gradient(135deg,#8241e5,#ae61f7); }
.kn-page .kn-history .table-tabs { padding: 8px 12px; background: rgba(5,3,10,.18); }
.kn-page .kn-history .table-header { background: rgba(255,255,255,.025); }
.ck-page .ck-btn-place:hover:not(.disabled) { background: linear-gradient(135deg,#8241e5,#ae61f7); }
.ck-page .ck-btn-pump:hover:not(.disabled),.ck-page .ck-btn-cashout:hover:not(.disabled) { filter: brightness(1.08); transform: translateY(-1px); }
.ck-page .ck-history .table-tabs { padding: 8px 12px; background: rgba(5,3,10,.18); }
.ck-page .ck-history .table-header { background: rgba(255,255,255,.025); }
.cf-page .cf-btn-place:hover:not(.disabled) { background: linear-gradient(135deg,#8241e5,#ae61f7); }
.cf-page .cf-btn-guess:hover:not(.disabled) { filter: brightness(1.08); transform: translateY(-1px); }
.cf-page .cf-history .table-tabs { padding: 8px 12px; background: rgba(5,3,10,.18); }
.cf-page .cf-history .table-header { background: rgba(255,255,255,.025); }

/* =========================================
   MINES 2026 UI REFRESH
   ========================================= */
.minesweeper-page { max-width: 1240px; margin: 0 auto; padding: 24px 22px 42px; box-sizing: border-box; text-align: left; }
.minesweeper-page .mines-game-layout { min-height: 620px; margin-bottom: 18px; overflow: hidden; border: 1px solid rgba(255,255,255,.075); border-radius: 20px; background: #110d1c; box-shadow: 0 24px 65px rgba(5,2,14,.34),inset 0 1px rgba(255,255,255,.035); }
.minesweeper-page .mines-controls { width: clamp(290px,26vw,330px); min-width: 290px; gap: 17px; padding: 22px; border-right: 1px solid rgba(255,255,255,.07); background: radial-gradient(circle at 20% 0,rgba(132,70,224,.15),transparent 34%),linear-gradient(165deg,#21172f,#16101f 72%); box-sizing: border-box; }
.minesweeper-page .mines-label { color: #a79ead; font-size: 11px; font-weight: 700; }
.minesweeper-page .mines-grid-tabs { gap: 5px; padding: 5px; border: 1px solid rgba(255,255,255,.065); border-radius: 11px; background: rgba(6,4,12,.34); }
.minesweeper-page .mines-grid-btn { min-height: 35px; padding: 0 4px; border-radius: 7px; color: #887e91; font-size: 11px; font-weight: 800; }
.minesweeper-page .mines-grid-btn.active { background: linear-gradient(135deg,#7134c9,#9a55e5); color: #fff; box-shadow: 0 6px 13px rgba(91,40,167,.22),inset 0 1px rgba(255,255,255,.14); }
.minesweeper-page .mines-input-row { min-height: 58px; padding: 8px 10px 8px 14px; border-color: rgba(171,122,255,.24); border-radius: 12px; background: rgba(6,4,12,.43); transition: border-color .2s,box-shadow .2s; }
.minesweeper-page .mines-input-row:focus-within,.minesweeper-page .mines-counter-row:focus-within { border-color: #8952e2; box-shadow: 0 0 0 3px rgba(132,72,226,.12); }
.minesweeper-page .mines-input { font-size: 18px; font-weight: 750; }
.minesweeper-page .mines-chips { gap: 5px; }
.minesweeper-page .mines-chip { min-width: 34px; height: 31px; padding: 0 7px; border: 1px solid rgba(255,255,255,.075); border-radius: 8px; background: rgba(255,255,255,.045); color: #958b9e; font-size: 10px; }
.minesweeper-page .mines-chip:hover { border-color: rgba(159,104,248,.38); background: rgba(130,69,226,.14); color: #fff; }
.minesweeper-page .mines-counter-row { min-height: 55px; overflow: hidden; border: 1px solid rgba(171,122,255,.18); border-radius: 11px; background: rgba(6,4,12,.38); transition: border-color .2s,box-shadow .2s; }
.minesweeper-page .mines-counter-input { border: 0; border-radius: 0; background: transparent; }
.minesweeper-page .mines-counter-btns { width: 42px; border-left: 1px solid rgba(255,255,255,.065); }
.minesweeper-page .mines-counter-btn { background: rgba(132,71,219,.17); color: #b890ec; }
.minesweeper-page .mines-counter-btn:first-child { border-bottom-color: rgba(255,255,255,.065); }
.minesweeper-page .mines-counter-btn:hover { background: rgba(132,71,219,.3); color: #fff; }
.minesweeper-page .mines-game-layout #minesweeper_bet,.minesweeper-page .mines-game-layout #minesweeper_cashout { min-height: 52px !important; height: 52px !important; border-radius: 12px !important; font-size: 14px; font-weight: 800; box-shadow: inset 0 1px rgba(255,255,255,.16),0 14px 28px rgba(3,1,8,.2) !important; }
.minesweeper-page .mines-game-layout #minesweeper_bet { background: linear-gradient(135deg,#7635db,#a254ef) !important; }
.minesweeper-page .mines-game-layout #minesweeper_cashout { margin-top: 0 !important; background: linear-gradient(135deg,#15945d,#45d993) !important; }
.minesweeper-page .mines-game-layout #minesweeper_bet:hover { filter: brightness(1.07); }
.minesweeper-page .mines-game-layout #minesweeper_cashout:hover { filter: brightness(1.07); transform: translateY(-1px); }
.minesweeper-page .mines-stage { background: radial-gradient(circle at 53% 43%,rgba(83,48,142,.24),transparent 44%),linear-gradient(145deg,#100b1b,#09060f); }
.minesweeper-page .mines-stage::before { content: ''; position: absolute; inset: 57px 0 0; pointer-events: none; opacity: .42; background-image: linear-gradient(rgba(255,255,255,.018) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.018) 1px,transparent 1px); background-size: 38px 38px; }
.minesweeper-page .mines-header { position: relative; z-index: 3; min-height: 57px; padding: 0 20px; border-bottom-color: rgba(255,255,255,.06); background: rgba(25,18,36,.84); }
.minesweeper-page .mines-header-icon { color: #ba8bef; font-size: 17px; }
.minesweeper-page .mines-header-title { font-size: 14px; }
.minesweeper-page .mines-info-icon { display: none; }
.minesweeper-page .mines-board-wrap { position: relative; z-index: 1; align-items: center; padding: 25px 30px 18px; }
.minesweeper-page .mines-game-layout .minesweeper-grid { max-width: 410px; gap: 8px !important; margin: 0 auto; }
.minesweeper-page .mines-game-layout .minesweeper-grid[data-grid="49"] { gap: 6px !important; }
.minesweeper-page .mines-game-layout .minesweeper-grid[data-grid="64"] { gap: 5px !important; }
.minesweeper-page .mines-game-layout .minesweeper-grid .bomb { border: 1px solid rgba(255,255,255,.075); border-radius: 10px; background: linear-gradient(145deg,rgba(104,61,151,.58),rgba(48,25,76,.68)); color: #fff; box-shadow: inset 0 1px rgba(255,255,255,.055),0 6px 13px rgba(3,1,8,.18); transition: transform .15s,border-color .15s,background .15s,box-shadow .15s; }
.minesweeper-page .mines-game-layout .minesweeper-grid .bomb::before { display: block; content: ''; position: absolute; inset: 24%; border: 1px solid rgba(214,177,255,.08); border-radius: 4px; transform: rotate(45deg); }
.minesweeper-page .mines-game-layout .minesweeper-grid .bomb:hover:not(.disabled) { border-color: rgba(191,139,255,.5); background: linear-gradient(145deg,rgba(135,75,205,.78),rgba(67,33,105,.82)); box-shadow: 0 9px 18px rgba(70,30,123,.25),inset 0 1px rgba(255,255,255,.1); transform: translateY(-2px) scale(1.02); }
.minesweeper-page .mines-game-layout .minesweeper-grid .bomb.disabled:not(.success):not(.danger) { opacity: .58; background: linear-gradient(145deg,rgba(81,49,116,.52),rgba(40,24,61,.6)); }
.minesweeper-page .mines-game-layout .minesweeper-grid .bomb.success { border-color: rgba(77,229,155,.65) !important; background: linear-gradient(145deg,#33d58a,#167a50) !important; color: #fff !important; box-shadow: 0 8px 20px rgba(30,183,111,.25),inset 0 1px rgba(255,255,255,.18) !important; animation: mines-gem-reveal .34s ease; }
.minesweeper-page .mines-game-layout .minesweeper-grid .bomb.success::before { inset: 28%; border: 2px solid rgba(224,255,240,.82); border-radius: 3px; background: rgba(255,255,255,.12); box-shadow: 0 0 12px rgba(214,255,235,.42); }
.minesweeper-page .mines-game-layout .minesweeper-grid .bomb.danger { border-color: rgba(255,105,124,.7) !important; background: linear-gradient(145deg,#ef5a6e,#8c1d35) !important; box-shadow: 0 8px 22px rgba(214,41,72,.3),0 0 18px rgba(255,80,106,.13) !important; animation: mines-bomb-reveal .38s ease; }
.minesweeper-page .mines-game-layout .minesweeper-grid .bomb.danger::before { display: none; }
.minesweeper-page .mines-game-layout .minesweeper-grid .bomb.danger::after { top: 50%; left: 50%; width: 30px; height: 30px; transform: translate(-50%,-50%); }
.minesweeper-page .mines-game-layout .minesweeper-grid[data-grid="49"] .bomb.danger::after { width: 22px; height: 22px; }
.minesweeper-page .mines-game-layout .minesweeper-grid[data-grid="64"] .bomb.danger::after { width: 18px; height: 18px; }
.minesweeper-page .mines-stage .stats-mines { position: relative; z-index: 2; gap: 0; padding: 0 24px 22px; border: 0; background: transparent; }
.minesweeper-page .stats-mines .box { flex: 1; min-height: 66px; justify-content: center; padding: 10px 15px; border: 1px solid rgba(255,255,255,.06); background: rgba(5,3,10,.34); }
.minesweeper-page .stats-mines .box:first-child { border-radius: 11px 0 0 11px; }
.minesweeper-page .stats-mines .box + .box { border-left: 0; }
.minesweeper-page .stats-mines .box:last-child { border-radius: 0 11px 11px 0; }
.minesweeper-page .stats-mines .box p { color: #746b7d; font-size: 8px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.minesweeper-page .stats-mines .box div { color: #c49aff; font-size: 15px; font-weight: 800; }
.minesweeper-page .stats-mines .box:nth-child(2) div { color: #f4c95d; }
.minesweeper-page .stats-mines .box:last-child div { color: #55dca0; }
.minesweeper-page .minesweeper-history { overflow: hidden; border: 1px solid rgba(255,255,255,.07); border-radius: 16px; background: linear-gradient(145deg,rgba(29,21,40,.9),rgba(16,12,24,.94)); box-shadow: 0 15px 35px rgba(5,2,12,.2); }
.minesweeper-page .minesweeper-history .table-tabs { padding: 8px 12px; background: rgba(5,3,10,.18); }
.minesweeper-page .minesweeper-history .table-header { background: rgba(255,255,255,.025); }
@media (max-width: 900px) {
    .minesweeper-page .mines-controls { width: 280px; min-width: 250px; padding: 18px; }
    .minesweeper-page .mines-game-layout .minesweeper-grid { max-width: 360px; }}
@media (max-width: 768px), (pointer: coarse) and (max-width: 1199px) and (max-height: 600px) and (orientation: landscape) {
    .minesweeper-page { padding: 16px 12px 34px; }
    .minesweeper-page .mines-game-layout { flex-direction: column; min-height: 0; border-radius: 16px; }
    .minesweeper-page .mines-stage { order: 1; }
    .minesweeper-page .mines-controls { order: 2; width: 100%; min-width: 0; border-top: 1px solid rgba(255,255,255,.07); border-right: 0; }
    .minesweeper-page .mines-board-wrap { padding: 20px 18px 14px; }}
@media (max-width: 480px) {
    .minesweeper-page .mines-board-wrap { padding: 14px 7px 11px; }
    .minesweeper-page .mines-game-layout .minesweeper-grid { gap: 5px !important; }
    .minesweeper-page .mines-game-layout .minesweeper-grid[data-grid="49"],.minesweeper-page .mines-game-layout .minesweeper-grid[data-grid="64"] { gap: 3px !important; }
    .minesweeper-page .mines-game-layout .minesweeper-grid .bomb { border-radius: 6px; }
    .minesweeper-page .mines-stage .stats-mines { padding: 0 7px 14px; }
    .minesweeper-page .stats-mines .box { min-width: 0; padding: 8px 4px; }
    .minesweeper-page .stats-mines .box div { font-size: 12px; }
    .minesweeper-page .mines-input-row { flex-wrap: wrap; }
    .minesweeper-page .mines-chips { width: 100%; }
    .minesweeper-page .mines-chip { flex: 1; }}
@media (prefers-reduced-motion: reduce) {
    .minesweeper-page .bomb.success,.minesweeper-page .bomb.danger { animation: none !important; }}
.tw-page .tw-btn-place:hover:not(.disabled) { filter: brightness(1.07); }
.tw-page .tw-btn-cashout:hover:not(.disabled) { filter: brightness(1.07); transform: translateY(-1px); }
.tw-page .tower-grid .tile.disabled:not(.success):not(.danger):not(.checked) { opacity: .45; cursor: default; }
.tw-page .tower-grid .tile:not(.disabled):hover { border-color: rgba(193,139,255,.6); background: linear-gradient(145deg,rgba(137,78,203,.78),rgba(65,33,101,.86)); color: #fff; box-shadow: 0 10px 20px rgba(72,31,124,.28),inset 0 1px rgba(255,255,255,.11); transform: translateY(-2px) scale(1.015); }
.tw-page .tw-history .table-tabs { padding: 8px 12px; background: rgba(5,3,10,.18); }
.tw-page .tw-history .table-header { background: rgba(255,255,255,.025); }
.poker-page .pk-away-badge.hidden { display:none!important; }
.pk-share-sheet.hidden { display:none!important; }
.plinko-page .pk-risk-btn[data-color="green"].active { border-color: rgba(69,213,151,.45) !important; background: linear-gradient(145deg,rgba(36,171,111,.32),rgba(25,105,75,.18)); color: #63e1a6; box-shadow: inset 0 0 16px rgba(35,199,126,.08); }
.plinko-page .pk-risk-btn[data-color="orange"].active { border-color: rgba(239,177,75,.45) !important; background: linear-gradient(145deg,rgba(210,133,42,.32),rgba(118,69,23,.18)); color: #ffc66d; box-shadow: inset 0 0 16px rgba(232,154,46,.08); }
.plinko-page .pk-risk-btn[data-color="red"].active { border-color: rgba(237,86,96,.45) !important; background: linear-gradient(145deg,rgba(197,52,64,.34),rgba(110,28,37,.18)); color: #ff7b85; box-shadow: inset 0 0 16px rgba(226,67,79,.08); }
.plinko-page .pk-btn-place.disabled { opacity: .5; cursor: not-allowed; transform: none; }
.plinko-page .pk-history .table-tabs { padding: 10px 12px; border-bottom: 1px solid rgba(255,255,255,.055); background: rgba(255,255,255,.018); }
.plinko-page .pk-history .table-tab-btn { border-radius: 8px; }
.plinko-page .pk-history .table-header { background: rgba(255,255,255,.025); }
.plinko-page .pk-history .table-body .table-row { border-color: rgba(255,255,255,.045); }
.av-page .av-speed-btn.active { border-color:rgba(168,113,255,.45);background:linear-gradient(145deg,rgba(126,61,211,.32),rgba(69,31,118,.24));color:#c99fff;box-shadow:inset 0 0 16px rgba(155,91,235,.08); }
.av-page .av-btn-place:hover:not(.disabled) { background:linear-gradient(135deg,#8241e5,#ae61f7); }
.av-page .av-history .table-tabs { padding:8px 12px;background:rgba(5,3,10,.18); }
.av-page .av-history .table-header { background:rgba(255,255,255,.025); }
.poker-page .pk-preactions,.poker-page .pk-preactions.hidden { min-width:278px;display:flex!important;align-items:center;justify-content:flex-end;gap:6px;flex-wrap:nowrap; }
.poker-page .pk-preaction-btn.hidden { display:inline-flex!important;align-items:center;justify-content:center; }
.poker-page .pk-preaction-btn.active { border-color:#b47aff;background:linear-gradient(135deg,rgba(133,75,219,.7),rgba(82,43,145,.72));color:#fff;box-shadow:0 0 14px rgba(166,105,255,.22); }
.poker-page .pk-run-it-modal.hidden { display:none; }
.dt-page--duel .dt-side.active::after { opacity:.75; }
#dt_side_dragon.active .dt-side-emblem { border-color:rgba(244,178,74,.38); color:#f4ba58; box-shadow:0 0 18px rgba(229,153,48,.15); }
#dt_side_tie.active .dt-side-emblem { border-color:rgba(244,201,93,.35); color:#f4d273; }
#dt_side_tiger.active .dt-side-emblem { border-color:rgba(174,112,255,.42); color:#c99dff; box-shadow:0 0 18px rgba(147,77,235,.17); }
.dt-page--duel #dt_side_dragon:hover,.dt-page--duel #dt_side_dragon.active { border-color:rgba(237,174,65,.48); background:linear-gradient(145deg,rgba(142,87,23,.3),rgba(59,32,11,.28)); }
.dt-page--duel #dt_side_tiger:hover,.dt-page--duel #dt_side_tiger.active { border-color:rgba(164,97,250,.52); background:linear-gradient(145deg,rgba(103,48,174,.3),rgba(43,20,74,.3)); }
.dt-page--duel #dt_side_dragon.active .dt-side-pays { color:#f4c45d; }
.dt-page--duel #dt_side_tiger.active .dt-side-pays { color:#c99dff; }
.cb-page .hidden { display: none !important; }
.ft-page .hidden { display: none !important; }
.ft-public-title-icon > .fa { display: block; width: 1em; height: 1em; margin-top: 12px; font-size: 16px; line-height: 1; text-align: center; }

/* Mines mobile game scene ------------------------------------------------ */
@media (max-width:768px) and (orientation:portrait) {
    body.is-game-page .minesweeper-page .mines-game-layout {
        grid-template-rows:minmax(0,1fr) 182px!important;gap:6px!important;
    }
    body.is-game-page .minesweeper-page .mines-stage {
        grid-row:1!important;order:1!important;padding:0!important;display:grid!important;
        grid-template-rows:minmax(0,1fr) 50px!important;overflow:hidden!important;
    }
    body.is-game-page .minesweeper-page .mines-header { display:none!important; }
    body.is-game-page .minesweeper-page .mines-board-wrap {
        min-height:0!important;padding:5px!important;display:flex!important;align-items:center!important;justify-content:center!important;overflow:hidden!important;
    }
    body.is-game-page .minesweeper-page .mines-board-shell {
        width:100%!important;height:100%!important;min-height:0!important;padding:4px!important;display:flex!important;
        align-items:center!important;justify-content:center!important;border:0!important;border-radius:12px!important;background:transparent!important;box-shadow:none!important;
    }
    body.is-game-page .minesweeper-page .mines-board-head { display:none!important; }
    body.is-game-page .minesweeper-page .mines-game-layout .minesweeper-grid {
        width:auto!important;height:100%!important;max-width:100%!important;max-height:100%!important;aspect-ratio:1!important;
        margin:auto!important;gap:5px!important;flex:0 1 auto!important;
    }
    body.is-game-page .minesweeper-page .mines-game-layout .minesweeper-grid[data-grid="49"],
    body.is-game-page .minesweeper-page .mines-game-layout .minesweeper-grid[data-grid="64"] { gap:3px!important; }
    body.is-game-page .minesweeper-page .mines-stage .stats-mines {
        height:50px!important;min-height:50px!important;padding:0 5px 5px!important;display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:4px!important;
    }
    body.is-game-page .minesweeper-page .stats-mines .box {
        min-width:0!important;min-height:45px!important;height:45px!important;padding:4px!important;display:flex!important;flex-direction:column!important;
        align-items:center!important;justify-content:center!important;overflow:visible!important;border:1px solid rgba(255,255,255,.06)!important;border-radius:9px!important;
    }
    body.is-game-page .minesweeper-page .stats-mines .box p { width:100%;margin:0 0 2px!important;font-size:7px!important;line-height:1.15!important;white-space:nowrap;text-align:center; }
    body.is-game-page .minesweeper-page .stats-mines .box div { max-width:100%;font-size:11px!important;line-height:1.15!important;white-space:nowrap; }

    body.is-game-page .minesweeper-page .mines-controls {
        grid-row:2!important;order:2!important;padding:7px!important;display:grid!important;
        grid-template-columns:minmax(0,1fr) 108px!important;grid-template-rows:56px 42px 66px!important;
        gap:5px 7px!important;overflow:hidden!important;
    }
    body.is-game-page .minesweeper-page .mines-controls .mines-grid-size-segment {
        grid-column:1/-1!important;grid-row:2!important;
    }
    body.is-game-page .minesweeper-page .mines-controls .mines-bet-segment {
        grid-column:1!important;grid-row:3!important;min-width:0!important;
    }
    body.is-game-page .minesweeper-page .mines-controls .mines-count-segment {
        grid-column:2!important;grid-row:3!important;min-width:0!important;
    }
    body.is-game-page .minesweeper-page .mines-controls #minesweeper_bet,
    body.is-game-page .minesweeper-page .mines-controls #minesweeper_cashout {
        grid-column:1/-1!important;grid-row:1!important;order:0!important;height:56px!important;min-height:56px!important;margin:0!important;flex:none!important;
    }
    body.is-game-page .minesweeper-page .mines-segment { margin:0!important;gap:3px!important;overflow:hidden!important; }
    body.is-game-page .minesweeper-page .mines-label { margin:0!important;font-size:8px!important;line-height:1!important; }
    body.is-game-page .minesweeper-page .mines-grid-tabs { height:31px!important;min-height:31px!important;padding:3px!important;gap:3px!important; }
    body.is-game-page .minesweeper-page .mines-grid-btn { min-height:25px!important;height:25px!important;padding:0!important;font-size:10px!important; }
    body.is-game-page .minesweeper-page .mines-input-row {
        height:51px!important;min-height:51px!important;padding:5px 6px!important;flex-wrap:nowrap!important;gap:4px!important;overflow:hidden!important;
    }
    body.is-game-page .minesweeper-page .mines-input-icon { width:15px!important;font-size:12px!important; }
    body.is-game-page .minesweeper-page .mines-input { min-width:40px!important;font-size:15px!important; }
    body.is-game-page .minesweeper-page .mines-chips { width:auto!important;margin:0!important;display:flex!important;flex:0 0 auto!important;gap:3px!important; }
    body.is-game-page .minesweeper-page .mines-chip { width:34px!important;min-width:34px!important;height:38px!important;padding:0 3px!important;flex:0 0 34px!important;font-size:9px!important;border-radius:9px!important; }
    body.is-game-page .minesweeper-page .mines-counter-row { height:51px!important;min-height:51px!important; }
    body.is-game-page .minesweeper-page .mines-counter-input { padding:5px 4px!important;gap:2px!important; }
    body.is-game-page .minesweeper-page .mines-counter-btns { width:34px!important; }}

@media (max-width:360px) and (orientation:portrait) {
    body.is-game-page .minesweeper-page .mines-controls { grid-template-columns:minmax(0,1fr) 96px!important; }
    body.is-game-page .minesweeper-page .mines-chip { width:31px!important;min-width:31px!important;flex-basis:31px!important; }}

@media (max-width:768px) and (orientation:landscape), (pointer:coarse) and (max-width:1199px) and (max-height:600px) and (orientation:landscape) {
    body.is-game-page .minesweeper-page .mines-controls { grid-column:1!important;grid-row:1!important;order:1!important; }
    body.is-game-page .minesweeper-page .mines-stage {
        grid-column:2!important;grid-row:1!important;order:2!important;padding:0!important;display:grid!important;
        grid-template-rows:minmax(0,1fr) 42px!important;overflow:hidden!important;
    }
    body.is-game-page .minesweeper-page .mines-header,
    body.is-game-page .minesweeper-page .mines-board-head { display:none!important; }
    body.is-game-page .minesweeper-page .mines-board-wrap { min-height:0!important;padding:4px!important;overflow:hidden!important; }
    body.is-game-page .minesweeper-page .mines-board-shell {
        width:100%!important;height:100%!important;padding:3px!important;display:flex!important;align-items:center!important;justify-content:center!important;
        border:0!important;background:transparent!important;box-shadow:none!important;
    }
    body.is-game-page .minesweeper-page .mines-game-layout .minesweeper-grid {
        width:auto!important;height:100%!important;max-width:100%!important;max-height:100%!important;margin:auto!important;aspect-ratio:1!important;
    }
    body.is-game-page .minesweeper-page .mines-stage .stats-mines {
        height:42px!important;min-height:42px!important;padding:0 4px 4px!important;display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:3px!important;
    }
    body.is-game-page .minesweeper-page .stats-mines .box { min-width:0!important;min-height:38px!important;height:38px!important;padding:3px!important;display:flex!important;flex-direction:column!important;align-items:center!important;justify-content:center!important;overflow:visible!important;border-radius:8px!important; }
    body.is-game-page .minesweeper-page .stats-mines .box p { width:100%;margin:0 0 1px!important;font-size:6px!important;line-height:1.1!important;white-space:nowrap;text-align:center; }
    body.is-game-page .minesweeper-page .stats-mines .box div { max-width:100%;font-size:9px!important;line-height:1.1!important;white-space:nowrap; }}

/* Coin Flip mobile game scene ------------------------------------------- */
@media (max-width:768px) and (orientation:portrait) {
    body.is-game-page .cf-page .cf-actions.hidden { display:none!important; }}

/* Chicken mobile game scene --------------------------------------------- */
@media (max-width:768px) and (orientation:portrait) {
    body.is-game-page .ck-page .ck-actions.hidden { display:none!important; }}

/* Blackjack mobile game scene ------------------------------------------- */
@media (max-width:768px) and (orientation:portrait) {
    body.is-game-page .bj-page .bj-actions.hidden { display:none!important; }}

/* Poker mobile table ---------------------------------------------------- */
@media (max-width:768px), (pointer:coarse) and (max-width:1199px) and (max-height:600px) and (orientation:landscape) {
    body.is-game-page .poker-page .pk-lobby.hidden { display:none!important; }
	body.is-game-page .poker-page .pk-runout-toggle button.active { border-color:rgba(193,137,250,.65)!important;background:linear-gradient(145deg,rgba(144,74,211,.45),rgba(87,42,139,.46))!important;color:#fff!important;box-shadow:0 0 0 1px rgba(193,137,250,.1),0 5px 12px rgba(72,29,111,.22)!important; }
    body.is-game-page .poker-page .pk-bottombar.hidden { display:none!important; }
    body.is-game-page .poker-page .pk-actions.hidden { display:none!important; }}

/* Case Battles mobile app ---------------------------------------------- */
@media (max-width:768px), (pointer:coarse) and (max-width:1199px) and (max-height:600px) and (orientation:landscape) {
    body.is-game-page .cb-page .cb-lobby.hidden { display:none!important; }
    body.is-game-page .cb-page .cb-room.hidden { display:none!important; }
    body.is-game-page .cb-page .cb-invite-join.hidden { display:none!important; }}

/* Aviamasters mobile flight scene -------------------------------------- */
@media (max-width:768px) and (orientation:portrait) {

    body.is-game-page .av-page .av-autobet-segment:has(.av-autobet-panel:not(.hidden)) {
        position:fixed!important;z-index:9500!important;right:max(8px,var(--mobile-safe-right,0px))!important;bottom:calc(var(--mobile-tabs-h,64px) + var(--mobile-safe-bottom,0px) + 8px)!important;
        left:max(8px,var(--mobile-safe-left,0px))!important;width:auto!important;height:auto!important;max-height:min(64dvh,470px)!important;padding:10px!important;
        display:flex!important;flex-direction:column!important;gap:8px!important;overflow-y:auto!important;border-color:rgba(178,112,235,.3)!important;border-radius:17px!important;
        background:linear-gradient(155deg,#21172e,#100d18 76%)!important;box-shadow:0 24px 70px rgba(0,0,0,.65)!important;
    }}

@media (max-width:768px) and (orientation:landscape), (pointer:coarse) and (max-width:1199px) and (max-height:600px) and (orientation:landscape) {
    body.is-game-page .av-page .av-autobet-segment:has(.av-autobet-panel:not(.hidden)) {
        position:fixed!important;z-index:9500!important;inset:8px!important;width:auto!important;height:auto!important;max-height:calc(100dvh - 16px)!important;padding:9px!important;
        display:flex!important;flex-direction:column!important;gap:6px!important;overflow-y:auto!important;border-radius:15px!important;background:linear-gradient(155deg,#21172e,#100d18 76%)!important;box-shadow:0 24px 70px rgba(0,0,0,.65)!important;
    }}
.bnz-btn-place.disabled { opacity: .5; cursor: default; pointer-events: none; }
.bnz-history .table-container { background: #2b2333; }
.bnz-btn-place.disabled,.bnz-btn-place:disabled {
    opacity:.48;
    cursor:not-allowed;
    pointer-events:none;
    transform:none;
    filter:saturate(.7);
    box-shadow:inset 0 1px rgba(255,255,255,.1);
}
.bnz-free-banner:not(.hidden) { animation:bnz-free-aura 1.65s ease-in-out infinite; }

/* Desktop: keep every primary game surface on the left and its controls on
   the right. Mobile layouts continue to stack the surface above the controls
   and retain their route-specific sizing. */
@media (min-width:769px) {
    .minesweeper-page .mines-game-layout { flex-direction:row-reverse; }}
.sc-page .sc-btn-place:hover:not(.disabled) { background: linear-gradient(135deg,#8241e5,#ae61f7); }
.sc-page .sc-btn-place.disabled { opacity: .55; cursor: not-allowed; }

/* Selected bet, the total that came up, and the settled outcome. `won`/`lost`
   come straight from the server's multiplier -- the paytable is never
   re-derived here. */
.sc-page .sc-bet.active { border-color: rgba(163,108,255,.62); background: linear-gradient(145deg,rgba(132,71,234,.3),rgba(43,22,76,.4)); box-shadow: 0 0 0 3px rgba(132,72,226,.12),inset 0 1px rgba(255,255,255,.06); }
.sc-page .sc-bet.active .sc-bet-name,.sc-page .sc-bet.active .sc-bet-pays { color: #fff; }
.sc-page .sc-history .table-tabs { padding: 8px 12px; background: rgba(5,3,10,.18); }
.sc-page .sc-history .table-header { background: rgba(255,255,255,.025); }
.er-btn-place:hover:not(.disabled) { background: linear-gradient(135deg,#8241e5,#ae61f7); }
.er-btn-place.disabled { opacity: .55; cursor: not-allowed; }
.er-history .table-tabs { padding: 8px 12px; background: rgba(5,3,10,.18); }
.er-history .table-header { background: rgba(255,255,255,.025); }
.co-page .co-btn-place:hover:not(.disabled) { background: linear-gradient(135deg,#8241e5,#ae61f7); }
.co-page .co-btn-place.disabled { opacity: .55; cursor: not-allowed; }
.hw-btn-place.disabled { opacity:.5;cursor:default;pointer-events:none; }
.mw-btn-place.disabled { opacity:.5;cursor:default;pointer-events:none; }
.bk-btn-place.disabled { opacity:.5;cursor:default;pointer-events:none; }
.nv-page .hidden { display: none !important; }
.nv-public-title-icon > .fa { display: block; width: 1em; height: 1em; margin-top: 12px; font-size: 16px; line-height: 1; text-align: center; }
.rv-page .hidden { display: none !important; }
.rv-public-title-icon > .fa { display: block; width: 1em; height: 1em; margin-top: 12px; font-size: 16px; line-height: 1; text-align: center; }
.bd-page .hidden { display: none !important; }
.bd-public-title-icon > .fa { display: block; width: 1em; height: 1em; margin-top: 12px; font-size: 16px; line-height: 1; text-align: center; }