 /* ========================================================= BMW-POWER FLASH CARD ========================================================= */
.bp-card {
	--bp-card-bg: #fff;
	--bp-ink: #0f172a;
	--bp-muted: #667085;
	--bp-line: #e5e7eb;
	--bp-accent: #0a5cff;
	--bp-danger: #b30000;
	--bp-radius: 14px;
	--bp-pad: 16px;
	--bp-shadow: 0 8px 24px rgba(2, 16, 60, .08);
	position: relative;
	display: block;
	padding: var(--bp-pad);
	margin-bottom: 15px;
	background: var(--bp-card-bg);
	color: var(--bp-ink);
	border: 1px solid var(--bp-line);
	box-shadow: var(--bp-shadow);
	overflow: hidden;
	isolation: isolate;
}

@media (prefers-color-scheme: dark) {
	.bp-card {
		--bp-card-bg: #0f141b;
		--bp-ink: #e9eef8;
		--bp-muted: #9aa4b2;
		--bp-line: #1e293b;
		--bp-shadow: 0 8px 24px rgba(0, 0, 0, .35);
	}
}

.bp-logo img {
	max-width: 120px;
	max-height: 120px;
	object-fit: contain;
	display: block;
}

.bp-info {
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-width: 0;
}

.bp-info h3 {
	margin: 0;
	font-size: 20px;
	line-height: 1.2;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: var(--bp-ink);
}

.bp-info h3 a,
.bp-info h3 a:hover,
.bp-info h3 a:focus,
.bp-info h3 a:visited,
.bp-info h3 a:active {
	color: inherit;
	text-decoration: none;
	outline: none;
}

.bp-softcode {
	margin: 0;
	font-size: 14px;
	color: var(--bp-muted);
	overflow-wrap: anywhere;
}

.bp-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 2px;
}

.bp-tag {
	display: inline-flex;
	align-items: center;
	padding: 6px 10px;
	border-radius: 999px;
	font-size: 12px;
	line-height: 1;
	background: #f3f4f6;
	color: #0f172a;
	border: 1px solid #e7e9ee;
}

.bp-stage {
	background: #d7ebff;
	color: #0a53c3;
	border-color: #c7dcf5;
}

.bp-off {
	background: #ffe8e8;
	color: var(--bp-danger);
	border-color: #ffd1d1;
}

.bp-admin {
	position: absolute;
	top: 20px;
	right: 0;
	display: flex;
	gap: 8px;
	z-index: 5;
}

.bp-adm-icon {
	font-weight: bold;
	width: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f3f4f6;
	border: 1px solid #e5e7eb;
	border-right: none;
	color: #2580d3;
	font-size: 15px;
	text-decoration: none;
	box-shadow: 0 1px 3px rgba(0, 0, 0, .05);
}

.bp-adm-icon:hover {
	background: #e8efff;
	border-color: #c7dcf5;
	color: #063dbb;
}

.bp-adm-icon i {
	pointer-events: none;
}

.bp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 30px;
	padding: 0 10px;
	border-radius: 5px;
	font-size: 13px;
	line-height: 1;
	color: #fff;
	text-decoration: none;
	white-space: nowrap;
	background: #2580d3;
	box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
	transition: background .15s ease, box-shadow .15s ease;
}

.bp-btn:hover {
	background: #004899;
	box-shadow: 0 3px 8px rgba(0, 0, 0, .2);
}

@media (min-width: 900px) {
	.bp-card {
		display: grid;
		grid-template-columns: 140px 1fr auto;
		column-gap: 18px;
		align-items: center;
	}
	.bp-logo {
		grid-column: 1;
		align-self: center;
		justify-self: center;
	}
	.bp-info {
		grid-column: 2;
	}
	.bp-btn {
		grid-column: 3;
		align-self: center;
		transform: translateY(30px);
		margin: 0;
	}
}

@media (max-width: 899px) {
	.bp-card {
		display: grid;
		grid-template-columns: 90px 1fr;
		column-gap: 16px;
		row-gap: 10px;
		align-items: start;
	}
	.bp-logo {
		grid-column: 1;
		grid-row: 1;
		width: 90px;
		height: 90px;
		margin: 0 !important;
	}
	.bp-logo img {
		width: auto;
		height: 100%;
		max-width: 100%;
	}
	.bp-info {
		grid-column: 2;
		grid-row: 1;
	}
	.bp-info h3 {
		white-space: normal;
		word-break: break-word;
	}
	.bp-softcode {
		white-space: normal;
		word-break: break-word;
	}
	.bp-tag {
		padding: 3px 5px;
	}
	.bp-tags {
		row-gap: 8px;
		column-gap: 8px;
	}
	.bp-adm-icon {
		font-size: 13px;
		width: auto;
		padding: 0 10px;
	}
	.bp-btn {
		grid-column: 1 / -1;
		grid-row: 2;
		width: 100%;
		transform: none;
	}
}

@media (prefers-color-scheme: dark) {
	.bp-adm-icon {
		background: #1a2430;
		border-color: #2a3648;
		color: #4e8bff;
		box-shadow: none;
	}
	.bp-adm-icon:hover {
		background: #253448;
		border-color: #3a4b66;
	}
}

/* ========================================================= FILTER BLOCK ========================================================= */
.filter-block,
.filter-block * {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	outline: none;
}

.filter-block {
	padding: 20px;
	border: 3px solid #eee;
	background-color: #f6f6f6;
	color: #000;
	font-size: 14px;
}

.filter-block__cell--full-width {
	grid-column: 1 / -1;
}

.filter-block__cell-caption {
	margin-bottom: 3px;
	font-weight: bold;
}

.filter-block__cell-content > * {
	width: 100%;
	display: block;
}

.filter-block__cell-content--two-columns {
	display: flex;
	justify-content: space-between;
}

.filter-block__cell-content--two-columns > * {
	width: calc((100% - 10px) / 2);
}

.filter-block__cell-content--three-columns {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.filter-block__cell-content--three-columns > * {
	width: calc((100% - 20px) / 3);
}

.filter-block__cell-content select,
.filter-block__cell-content input[type="text"] {
	height: 40px;
	line-height: 40px;
	background: #fff;
	color: #000;
	border: 1px solid #e3e3e3;
	border-radius: 0;
	box-shadow: none;
	font-size: 14px;
	font-family: 'Roboto' !important;
	padding: 0 10px;
}

.filter-block__cell-content select {
	padding: 0 8px;
}

.filter-block__cell-content input[type="text"]::placeholder {
	opacity: 1;
	color: #a9a9a9;
	font-size: 14px;
}

.filter-block__cell-content input[type="text"]:focus::placeholder {
	opacity: 0;
}

.filter-block__cell-content label {
	position: relative;
	padding-left: 50px;
	cursor: pointer;
	height: 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	font-weight: normal;
}

.filter-block__cell-content label input {
	display: inline-block;
	appearance: none;
	-webkit-appearance: none;
	height: 20px;
	width: 40px;
	border-radius: 10px;
	background-color: #eee;
	cursor: pointer;
	transition: all .2s linear;
	box-shadow: inset 0 2px 5px rgba(0, 0, 0, .1);
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -10px;
}

.filter-block__cell-content label input::before {
	content: '';
	width: 18px;
	height: 18px;
	border-radius: 10px;
	position: absolute;
	left: 1px;
	top: 1px;
	background-color: #fff;
	transition: all .2s linear;
}

.filter-block__cell-content label input:checked {
	background-color: #6ab04c;
}

.filter-block__cell-content label input:checked::before {
	left: 21px;
}

.filter-block__cell-content input[type="button"],
.filter-block__cell-content button {
	cursor: pointer;
	height: 40px;
	display: inline-flex;
	justify-content: center;
	padding: 0 10px;
	box-shadow: none;
	border-radius: 0;
	font-size: 12px;
	text-transform: uppercase;
	font-weight: 700;
	background: #6ab04c;
	color: #fff;
}

.filter-block__cell-content input[type="button"][data-dlefilter="reset"] {
	background: #535c68;
}

.full-filter {
	text-align: right;
	font-size: 12px;
	color: #2580d3;
	margin: -15px 0 10px 0;
	cursor: pointer;
}

.show_filter {
	margin-bottom: 15px;
}

.filter-options {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
	gap: 10px;
	margin-bottom: 20px;
}

.filter-options label {
	flex: 1 1 calc(16.66% - 10px);
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 6px;
	border: 1px solid #ddd;
	border-radius: 6px;
	background: #fff;
	padding: 5px 0;
	cursor: pointer;
	transition: all .2s ease-in-out;
	font-size: 14px;
	color: #222;
}

.filter-options label:hover {
	background: #eef6ee;
	border-color: #6ab04c;
}

.filter-options input[type="checkbox"] {
	width: 16px;
	height: 16px;
	accent-color: #6ab04c;
	cursor: pointer;
}

.filter-options input[type="checkbox"]:checked + span,
.filter-options label:has(input:checked) {
	background: #6ab04c;
	border-color: #6ab04c;
	color: #fff;
}

.filter-options label:has(input:checked):hover {
	background: #6ab04c;
}

.filter-options label[style*="#f7dbdb"]:has(input:checked) {
	background: #e74c3c !important;
	border-color: #c0392b !important;
	color: #fff !important;
}

.filter-options label[style*="#f7dbdb"] input[type="checkbox"] {
	accent-color: #f8b8b8;
}

.filter-options label[style*="#f7dbdb"]:has(input:checked) input[type="checkbox"] {
	accent-color: #fff;
}

@media (max-width: 900px) {
	.filter-options label {
		flex: 1 1 calc(33.33% - 10px);
	}
	
}

@media (max-width: 600px) {
	.filter-block__cell-content--three-columns > * {
		width: 100%;
		margin-bottom: 10px;
	}
	.filter-options label {
		flex: 1 1 calc(50% - 10px);
	}
	

	
}

@media (max-width: 699px) {
		.left-tun-files {
		display: none;
	}	
	
	
	
}

/* ========================================================= TILE & FLASH FILTER ========================================================= */
.tile.full {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border: 1px solid #ccdbed;
	position: relative;
	overflow: visible;
	background: #e9f3ff;
	padding: 12px 8px;
	text-decoration: none;
	text-align: center;
	color: var(--text);
	box-shadow: 0 2px 6px rgba(0, 0, 0, .04);
	margin-bottom: 25px;
}

.addtuneico i {
	font-size: 25px;
}

.left-sidebar {
	box-sizing: border-box;
}

.flash-filter {
	background: #fff;
	border: 1px solid #e5e7eb;
	box-shadow: 0 10px 30px rgba(2, 6, 23, .08);
	padding: 15px;
	overflow: hidden;
	margin-bottom: 15px;
}

.flash-filter__title {
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 14px;
}

.flash-filter__block-title {
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: .03em;
	color: #8a8f9a;
	margin-bottom: 6px;
}

.flash-filter__group {
	margin-bottom: 14px;
}

.flash-filter__label {
	display: block;
	font-size: 12px;
	color: #6b707b;
	margin-bottom: 0;
}

.flash-filter__control {
	width: 100%;
	padding: 2px 10px;
	border-radius: 5px;
	border: 1px solid #dde1e7;
	font-size: 13px;
	background: #f9fafc;
	outline: none;
	transition: background .2s, border-color .2s, box-shadow .2s;
}

select.flash-filter__control {
	padding: 5px 10px;
}

.flash-filter__control:focus {
	background: #fff;
	border-color: #4caf50;
	box-shadow: 0 0 0 2px rgba(76, 175, 80, .15);
}

.flash-filter__control::placeholder {
	color: #b0b5bf;
}

.flash-filter__actions {
	display: flex;
	gap: 8px;
	padding-top: 15px;
}

.flash-filter__btn {
	flex: 1;
	border: none;
	border-radius: 10px;
	padding: 3px 0;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: transform .08s ease, box-shadow .08s ease, background .2s;
	white-space: nowrap;
}

.flash-filter__btn--primary {
	background: #4caf50;
	color: #fff;
	box-shadow: 0 4px 10px rgba(76, 175, 80, .35);
}

.flash-filter__btn--primary:hover {
	background: #45a049;
}

.flash-filter__btn--primary:active {
	transform: translateY(1px);
	box-shadow: 0 2px 6px rgba(76, 175, 80, .4);
}

.flash-filter__btn--ghost {
	background: #4b5463;
	color: #fff;
	box-shadow: 0 4px 10px rgba(0, 0, 0, .18);
}

.flash-filter__btn--ghost:hover {
	background: #424a57;
}

.flash-filter__btn--ghost:active {
	transform: translateY(1px);
	box-shadow: 0 2px 6px rgba(0, 0, 0, .25);
}

.filter-options_full {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 8px;
}

.filter-options_full label {
	position: relative;
	padding: 2px 6px;
	background: #eef2ff;
	border: 1.5px solid #ddd;
	border-radius: 5px;
	cursor: pointer;
	transition: .2s;
	font-size: 13px;
	font-weight: bold;
	text-align: center;
}

.filter-options_full label:hover {
	border-color: #4a90e2;
	background: #f0f7ff;
}

.filter-options_full label input[type="checkbox"] {
	display: none;
}

.filter-options_full label::before {
	content: '✓';
	display: inline-block;
	width: 14px;
	height: 14px;
	margin-right: 6px;
	border: 1.5px solid #ccc;
	border-radius: 3px;
	text-align: center;
	line-height: 12px;
	font-size: 10px;
	color: transparent;
	transition: .2s;
	vertical-align: middle;
}

.filter-options_full label:has(input:checked) {
	background: #4a90e2;
	border-color: #4a90e2;
	color: #fff;
}

.filter-options_full label:has(input:checked)::before {
	background: #fff;
	border-color: #fff;
	color: #4a90e2;
}

.filter-options_full label[style*="background: #f7dbdb"] {
	background: #f7dbdb !important;
	border-color: #f8b8b8 !important;
	color: #c0392b;
}

.filter-options_full label[style*="background: #f7dbdb"]:has(input:checked) {
	background: #e74c3c !important;
	border-color: #e74c3c !important;
	color: #fff;
}
    
    
    
    
    
    
    /* =============================================
BMW‑Power • Firmware UI (SCOPED)
ВАЖЛИВО: все стилі ізольовані префіксом .bp-fw
Щоб підключити — просто огорни розмітку у <div class="bp-fw"> ...
і залиш свої HTML‑класи як у прикладі (fw-card, fw-head, тощо)
Нічого не зіллється з іншими стилями на сайті.
============================================= */


/* ========================================================= BMW-POWER FIRMWARE UI ========================================================= */
.bp-fw {
	--bp-fw-bg: #ffffff;
	--bp-fw-ink: #0f172a;
	--bp-fw-muted: #6b7280;
	--bp-fw-line: #e5e7eb;
	--bp-fw-soft: #f5f7fb;
	--bp-fw-accent: #0a5cff;
	--bp-fw-accent-ink: #ffffff;
	--bp-fw-ok: #16a34a;
	--bp-fw-warn: #f59e0b;
	--bp-fw-bad: #ef4444;
	--bp-fw-chip: #eef2ff;
	--bp-fw-chip-ink: #334155;
	--bp-fw-radius: 16px;
	--bp-fw-shadow: 0 10px 30px rgba(2, 6, 23, .08);
	box-sizing: border-box;
	color: var(--bp-fw-ink);
}

.bp-fw,
.bp-fw * {
	box-sizing: border-box;
}

.bp-fw a {
	text-decoration: none;
	color: inherit;
}

.bp-fw-2 {
	margin-top: 20px;
}

.fw-card2 {
	padding: 18px;
}


@media (prefers-color-scheme: dark) {
	.bp-fw {
		--bp-fw-bg: #0f141b;
		--bp-fw-ink: #e5e7eb;
		--bp-fw-muted: #9aa4b2;
		--bp-fw-line: #1f2734;
		--bp-fw-soft: #0b1016;
		--bp-fw-accent: #3b82f6;
		--bp-fw-accent-ink: #0b1220;
		--bp-fw-chip: #0f1a2a;
		--bp-fw-chip-ink: #c8d2e0;
		--bp-fw-shadow: 0 10px 30px rgba(0, 0, 0, .35);
	}
}


.bp-fw .fw-card {
	background: var(--bp-fw-bg);
	border: 1px solid var(--bp-fw-line);
	box-shadow: var(--bp-fw-shadow);
	overflow: hidden;
}

.bp-fw .fw-head {
	display: grid;
	grid-template-columns: 160px 1fr;
	gap: 18px;
	padding: 18px;
	border-bottom: 1px solid var(--bp-fw-line);
	align-items: center;
}

.bp-fw .fw-thumb {
	width: 100%;
	aspect-ratio: 4/3;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.bp-fw .fw-thumb img {
	object-fit: cover;
}

.bp-fw .fw-title {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.bp-fw .fw-pre {
	font-size: 13px;
	color: var(--bp-fw-muted);
}

.bp-fw .fw-h1 {
	font-size: 22px;
	font-weight: 700;
	letter-spacing: .2px;
}

.bp-fw .fw-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 6px;
}

.bp-fw .chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 0 7px;
	border-radius: 5px;
	background: var(--bp-fw-chip);
	color: var(--bp-fw-chip-ink);
	font-weight: 600;
	font-size: 12px;
	border: 1px solid var(--bp-fw-line);
}

.bp-fw .dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
}

.bp-fw .dot.ok {
	background: var(--bp-fw-ok);
}

.bp-fw .dot.off {
	background: var(--bp-fw-bad);
}

.bp-fw .dot.neutral {
	background: var(--bp-fw-warn);
}

.bp-fw .fw-body {
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: 18px;
	padding: 18px;
}

.bp-fw .fw-panel {
	padding: 14px;
}

.bp-fw .fw-panel h3,
.fw-card2 h3 {
	margin: 0 0 10px;
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: .12em;
	color: var(--bp-fw-muted);
}

.fw-panel-file {
	background: #eef2ff;
	border-radius: 10px;
}


.bp-fw .spec {
	width: 100%;
	border-collapse: collapse;
}

.bp-fw .spec tr + tr td {
	border-top: 1px dashed var(--bp-fw-line);
}

.bp-fw .spec td {
	padding: 5px;
	vertical-align: top;
}

.bp-fw .spec td:first-child {
	color: var(--bp-fw-muted);
	width: 44%;
}

.bp-fw .spec tr:last-child td {
	border-top: none;
	border-bottom: none;
}

.bp-fw .flag-ok {
	color: var(--bp-fw-ok);
	font-weight: 700;
}

.bp-fw .flag-off {
	color: var(--bp-fw-bad);
	font-weight: 700;
}

.bp-fw .todo li {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 8px 10px;
	border: 1px dashed var(--bp-fw-line);
	background: rgba(2, 14, 44, .02);
	margin-bottom: 10px;
}

.bp-fw .check {
	flex: 0 0 18px;
	height: 18px;
	border-radius: 5px;
	border: 2px solid var(--bp-fw-ok);
	display: grid;
	place-items: center;
}

.bp-fw .check svg {
	width: 14px;
	height: 14px;
	stroke: var(--bp-fw-ok);
}

.bp-fw .cta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	margin-top: 8px;
}

.bp-fw .price {
	margin-right: auto;
	font-size: 20px;
	font-weight: 800;
}

.bp-fw .btn {
	display: inline-flex;
	gap: 8px;
	align-items: center;
	padding: 10px 14px;
	border-radius: 12px;
	border: 1px solid var(--bp-fw-line);
	background: var(--bp-fw-bg);
}

.bp-fw .btn.primary {
	background: var(--bp-fw-accent);
	color: var(--bp-fw-accent-ink);
	border-color: transparent;
}

.bp-fw .btn:active {
	transform: translateY(1px);
}

.bp-fw .note {
	font-size: 13px;
	color: var(--bp-fw-muted);
	margin-top: 8px;
}

.bp-fw .dl-list {
	display: grid;
	gap: 12px;
}

.bp-fw .attachment {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) max-content;
	align-items: center;
	gap: 14px;
	padding: 14px 16px;
	border: 1px solid var(--bp-fw-line, #e5e7eb);
	background: var(--bp-fw-bg, #fff);
	border-radius: 16px;
	margin-bottom: 15px;
	box-shadow: 0 8px 24px rgba(2, 6, 23, .06);
	transition: box-shadow .2s, transform .08s;
}

.bp-fw .attachment:hover {
	box-shadow: 0 12px 30px rgba(2, 6, 23, .10);
}

.bp-fw .attachment:active {
	transform: translateY(1px);
}

.bp-fw .attachment[data-label]::before {
	content: attr(data-label);
	position: absolute;
	top: -20px;
	left: 14px;
	padding: 1px 10px;
	font-size: 11px;
	letter-spacing: .08em;
	text-transform: uppercase;
	font-weight: bold;
	border-radius: 5px;
	background: var(--bp-fw-chip, #eef2ff);
	color: var(--bp-fw-chip-ink, #334155);
	border: 1px solid var(--bp-fw-line, #e5e7eb);
}

.bp-fw .dl-name {
	min-width: 0;
	line-height: 1.35;
}

.bp-fw .dl-name a {
	display: -webkit-box;
	-webkit-line-clamp: 1;
	line-clamp: 1;
	-webkit-box-orient: vertical;
	padding-top: 10px;
	overflow: hidden;
	text-overflow: ellipsis;
	word-break: break-word;
	font-weight: 600;
}

.bp-fw .dl-right {
	display: flex;
	align-items: center;
	gap: 10px;
}

.bp-fw .dl-size {
	font-size: 12px;
	padding: 0 10px;
	border-radius: 5px;
	background: var(--bp-fw-chip, #eef2ff);
	color: var(--bp-fw-chip-ink, #334155);
	border: 1px solid var(--bp-fw-line, #e5e7eb);
}

.bp-fw .dl-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	border-radius: 10px;
	background: #2580d3;
	color: var(--bp-fw-accent-ink, #fff);
	text-decoration: none;
	font-size: 13px;
}

.bp-fw .dl-btn svg {
	width: 16px;
	height: 16px;
}

.bp-fw .dl-ico {
	display: none !important;
}

.dl-list-main {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
}

@media (max-width: 880px) {
	.bp-fw .fw-head {
		grid-template-columns: 1fr;
	}
	.bp-fw .fw-body {
		grid-template-columns: 1fr;
	}
	.bp-fw .fw-h1 {
		font-size: 20px;
	}
	.bp-fw .price {
		width: 100%;
		margin: 4px 0;
	}
	
	.bp-fw .fw-thumb {
	aspect-ratio: auto;
	}
	
}
    
    

    
    
    

 
    
    
    
    
    
    
    
/* ========================================================= ACCESS CENTER ========================================================= */
.access-center {
	text-align: center;
	font: 14px/1.45 system-ui, Segoe UI, Roboto, Arial;
	color: #111827;
	background: none;
	padding: 16px 0;
}

.access-icon {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 70px;
	height: 70px;
	margin: 0 auto 10px;
	color: #2580d3;
	background: #f3f4f6;
	border-radius: 50%;
}

.access-title {
	margin: 6px 0 4px;
	font-size: 22px;
	font-weight: 700;
	color: #2580d3;
}

.access-desc {
	margin: 0 0 14px;
	color: #6b7280;
	font-size: 15px;
}

.access-desc b {
	color: #111827;
	font-weight: 700;
}

.access-btn {
	display: inline-block;
	width: 100%;
	text-align: center;
	background: #f9fafb;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	padding: 12px 14px;
	font-weight: 600;
	color: #111827;
	text-decoration: none;
	transition: all .15s ease;
}

.access-btn:hover {
	background: #f3f4f6;
	transform: translateY(-1px);
	box-shadow: 0 2px 6px rgba(0, 0, 0, .06);
}

@media (prefers-color-scheme: dark) {
	.access-center {
		color: #e5e7eb;
	}
	.access-icon {
		background: #1f2735;
		color: #a1aecb;
	}
	.access-title {
		color: #e5e7eb;
	}
	.access-desc {
		color: #9aa3b4;
	}
	.access-btn {
		background: #141b24;
		border-color: #1f2735;
		color: #e5e7eb;
	}
	.access-btn:hover {
		background: #1b2431;
		box-shadow: none;
	}
}    
    
    