.bkrt-dashboard {
	--bkrt-bg: #000000;
	--bkrt-card: #151516;
	--bkrt-card-alt: #1A1A1B;
	--bkrt-border: rgba(255,255,255,0.08);
	--bkrt-border-strong: rgba(255,255,255,0.12);
	--bkrt-yellow: #F5E11D;
	--bkrt-yellow-text: #3A3600;
	--bkrt-text: #ffffff;
	--bkrt-muted: #B8B8B8;
	--bkrt-faint: #8A8A8A;
	--bkrt-track-bg: #232324;

	font-family: 'Inter', sans-serif;
	color: var(--bkrt-text);
	background: var(--bkrt-bg);
	max-width: 1200px;
	margin: 0 auto;
}

.bkrt-dashboard h1, .bkrt-dashboard h2 {
	font-family: 'Clash Grotesk', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0;
}

.bkrt-dashboard a { text-decoration: none; }

.bkrt-accent-text { color: var(--bkrt-yellow); }

/* ---- Sticky donate bar ---- */
.bkrt-sticky-bar {
	position: sticky;
	top: 0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.1rem 1.75rem;
	border-bottom: 1px solid var(--bkrt-border);
	background: var(--bkrt-bg);
}

.bkrt-sticky-brand {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-family: 'Clash Grotesk', sans-serif;
	font-size: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	color: #fff;
}

.bkrt-sticky-logo {
	height: 40px;
	width: 40px;
	object-fit: cover;
	border-radius: 50%;
	border: 2px solid var(--bkrt-yellow);
}

/* ---- Buttons ---- */
.bkrt-btn {
	display: inline-block;
	border-radius: 8px;
	font-weight: 800;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	padding: 0.95rem 1.9rem;
	white-space: nowrap;
	position: relative;
	z-index: 20;
}

.bkrt-btn-sm { padding: 0.65rem 1.4rem; font-size: 0.78rem; }

.bkrt-btn-primary {
	background: #ffffff;
	color: var(--bkrt-bg);
}
.bkrt-btn-primary:hover { color: var(--bkrt-bg); opacity: 0.85; }

.bkrt-btn-white {
	background: #ffffff;
	color: var(--bkrt-bg);
}
.bkrt-btn-white:hover { color: var(--bkrt-bg); opacity: 0.85; }

.bkrt-btn-ghost {
	background: #000;
	color: #F5E11D;
	border:1.5px solid #F5E11D;
}
.bkrt-btn-ghost:hover { 
    background: #F5E11D;
	color: #000000;}

/* ---- Hero ---- */
.bkrt-hero {
	padding: clamp(2rem, 5vw, 4.5rem) clamp(1.25rem, 4vw, 4rem) clamp(2rem, 4vw, 3.5rem);
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 2.5rem;
	align-items: center;
	border-bottom: 1px solid var(--bkrt-border);
}

.bkrt-badge {
	display: inline-block;
	background: var(--bkrt-yellow);
	color: var(--bkrt-yellow-text);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	padding: 0.55rem 1.15rem;
	border-radius: 8px;
	margin-bottom: 1.4rem;
}

.bkrt-hero-title {
	font-size: clamp(2rem, 4.6vw, 3.6rem);
	line-height: 1.02;
	color: #fff;
	margin-bottom: 1.4rem;
	max-width: 34rem;
}

.bkrt-hero-text {
	font-family: 'Inter', sans-serif;
	font-size: 0.98rem;
	line-height: 1.7;
	color: var(--bkrt-muted);
	max-width: 34rem;
	margin: 0 0 0.85rem;
	text-transform: none;
}

.bkrt-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1.1rem;
	align-items: center;
	margin-top: 1.6rem;
}

.bkrt-hero-link {
	color: #fff;
	font-size: 0.85rem;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 4px;
}

.bkrt-hero-image {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 280px;
}

.bkrt-hero-photo {
	position: relative;
	width: 95%;
	max-width: 520px;
	height: auto;
	object-fit: contain;
}

.bkrt-hero-route-card {
	position: absolute;
	bottom: 4%;
	left: 0;
	background: var(--bkrt-yellow);
	padding: 0.85rem 1.2rem;
	border-radius: 10px;
}

.bkrt-hero-route-label {
	font-size: 0.65rem;
	font-weight: 800;
	color: var(--bkrt-yellow-text);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	opacity: 0.75;
}

.bkrt-hero-route-value {
	font-family: 'Clash Grotesk', sans-serif;
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--bkrt-yellow-text);
	text-transform: uppercase;
}

/* ---- Stats strip ---- */
.bkrt-stats-strip {
	margin: clamp(2rem, 4vw, 4rem) clamp(1.25rem, 4vw, 4rem) 1.5rem;
	background: var(--bkrt-yellow);
	border-radius: 20px;
	padding: 2.2rem clamp(1.25rem, 3vw, 2.5rem);
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

.bkrt-stat-value {
	font-family: 'Clash Grotesk', sans-serif;
	font-size: clamp(1.5rem, 2.8vw, 2.1rem);
	font-weight: 700;
	color: var(--bkrt-bg);
}

.bkrt-stat-label {
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--bkrt-yellow-text);
	text-transform: uppercase;
	letter-spacing: 0.4px;
	margin-top: 0.4rem;
}

/* ---- Gap card ---- */
.bkrt-gap-card {
	margin: 0 clamp(1.25rem, 4vw, 4rem) clamp(2rem, 4vw, 1.5rem);
	background: var(--bkrt-card);
	border: 2px solid var(--bkrt-yellow);
	border-radius: 20px;
	padding: clamp(1.5rem, 3vw, 2.2rem) clamp(1.5rem, 3vw, 3rem);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.75rem;
}

.bkrt-gap-left {
	display: flex;
	align-items: center;
	gap: 1.4rem;
}

.bkrt-gap-icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: var(--bkrt-yellow);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.bkrt-gap-label {
	font-size: 0.78rem;
	font-weight: 800;
	color: var(--bkrt-yellow);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 0.4rem;
}

.bkrt-gap-value {
	font-family: 'Clash Grotesk', sans-serif;
	font-size: clamp(1.8rem, 3.4vw, 2.6rem);
	font-weight: 700;
	color: #fff;
	line-height: 1;
}

.bkrt-gap-note {
	max-width: 320px;
	font-size: 0.88rem;
	line-height: 1.6;
	color: var(--bkrt-muted);
}

.bkrt-gap-cta { flex-shrink: 0; }

.bkrt-sponsor {
	margin: 0 clamp(1.25rem, 4vw, 4rem) clamp(2rem, 4vw, 3.5rem);
	background: #FFF;
	border-radius: 20px;
	padding: clamp(1.5rem, 3vw, 2.2rem) clamp(1.5rem, 3vw, 3rem);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.75rem;
}

.bkrt-sponsor-left {
	display: flex;
	align-items: center;
	gap: 1.4rem;
}

.bkrt-sponsor-label {
	font-size: 0.78rem;
	font-weight: 800;
	color: #000;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 0.4rem;
}

.bkrt-sponsor-name {
	font-family: 'Clash Grotesk', sans-serif;
	font-size: clamp(1.2rem, 3.4vw, 2rem);
	font-weight: 700;
	color: #000;
	line-height: 1;
}
.bktr-sponsor-left p {
	max-width: 320px;
	font-size: 0.88rem;
	line-height: 1.6;
	color: #666;
	margin:.5rem 0 0;
}
.sponsor-logo {
    max-width:280px;
    width: 100%;
}

/* ---- Section titles ---- */
.bkrt-section-title {
	font-size: clamp(1.3rem, 2.4vw, 1.85rem);
	color: #fff;
	margin-bottom: 0.3rem;
}

.bkrt-section-subtitle {
	font-size: 0.88rem;
	color: var(--bkrt-faint);
	margin: 0 0 1.6rem;
}

.bkrt-section-heading-row {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	align-items: baseline;
	justify-content: space-between;
	margin-bottom: 1.3rem;
}

/* ---- Impact ---- */
.bkrt-impact {
	padding: 0 clamp(1.25rem, 4vw, 4rem) clamp(2rem, 4vw, 3.5rem);
}

.bkrt-impact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 1rem;
}

.bkrt-impact-card {
	background: var(--bkrt-card);
	border-radius: 16px;
	padding: 1.7rem 1rem;
	text-align: center;
	border: 1px solid var(--bkrt-border);
}

.bkrt-impact-emoji {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--bkrt-yellow);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 0.9rem;
	font-size: 1.5rem;
}

.bkrt-impact-label {
	font-size: 0.85rem;
	font-weight: 700;
	color: #fff;
	line-height: 1.4;
}

/* ---- Live map ---- */
.bkrt-map-section {
	padding: 0 clamp(1.25rem, 4vw, 4rem) clamp(2rem, 4vw, 3.5rem);
}

.bkrt-live-pill {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--bkrt-card);
	border: 1px solid var(--bkrt-border);
	padding: 0.55rem 1.1rem;
	border-radius: 8px;
	font-size: 0.8rem;
	font-weight: 700;
	color: #fff;
}

.bkrt-live-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--bkrt-yellow);
}

.bkrt-map {
	width: 100%;
	height: 380px;
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid var(--bkrt-border);
	background: var(--bkrt-card);
}

/* ---- Progress + ETA ---- */
.bkrt-progress-row {
	padding: 0 clamp(1.25rem, 4vw, 4rem) clamp(2rem, 4vw, 3.5rem);
	display: grid;
	grid-template-columns: 1.4fr 0.9fr;
	gap: 1.5rem;
	scroll-margin-top: 1rem;
}

.bkrt-card {
	background: var(--bkrt-card);
	border-radius: 20px;
	padding: clamp(1.5rem, 3vw, 2.2rem);
	border: 1px solid var(--bkrt-border);
}

.bkrt-card-title {
	font-size: 1.25rem;
	margin-bottom: 1.5rem;
	color: #fff;
}

.bkrt-progress-block { margin-bottom: 1.3rem; }
.bkrt-progress-block:last-child { margin-bottom: 0; }

.bkrt-progress-labels {
	display: flex;
	justify-content: space-between;
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--bkrt-muted);
	margin-bottom: 0.5rem;
}

.bkrt-progress-total .bkrt-progress-labels {
	font-weight: 800;
	color: #fff;
}

.bkrt-progress-track {
	height: 12px;
	background: var(--bkrt-track-bg);
	border-radius: 20px;
	overflow: hidden;
}

.bkrt-progress-total .bkrt-progress-track { height: 14px; }

.bkrt-progress-fill {
	height: 100%;
	width: 0%;
	border-radius: 20px;
	transition: width 0.6s ease;
}

.bkrt-fill-orange { background: var(--bkrt-yellow); }
.bkrt-fill-amber { background: var(--bkrt-yellow); opacity: 0.6; }
.bkrt-fill-dark { background: #fff; }

.bkrt-eta-card {
	background: var(--bkrt-yellow);
	border: none;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.bkrt-eta-label {
	font-size: 0.78rem;
	font-weight: 800;
	color: var(--bkrt-yellow-text);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 0.7rem;
}

.bkrt-eta-value {
	font-family: 'Clash Grotesk', sans-serif;
	font-size: clamp(1.8rem, 3vw, 2.4rem);
	font-weight: 700;
	color: var(--bkrt-bg);
	margin-bottom: 0.9rem;
}

.bkrt-eta-note {
	font-size: 0.83rem;
	color: var(--bkrt-yellow-text);
	line-height: 1.6;
}

/* ---- Photos gallery ---- */
.bkrt-photos-section {
	padding: 0 clamp(1.25rem, 4vw, 4rem) clamp(2rem, 4vw, 3.5rem);
}

.bkrt-photo-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
	gap: 0.9rem;
}

.bkrt-photo-item {
	position: relative;
	display: block;
	aspect-ratio: 1;
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid var(--bkrt-border);
}

.bkrt-photo-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.bkrt-photo-item:hover img { transform: scale(1.06); }

.bkrt-photo-time {
	position: absolute;
	left: 0.5rem;
	bottom: 0.5rem;
	background: rgba(11,11,12,0.8);
	color: var(--bkrt-yellow);
	font-size: 0.7rem;
	font-weight: 700;
	padding: 0.2rem 0.5rem;
	border-radius: 20px;
}

.bkrt-photo-empty {
	color: var(--bkrt-faint);
	font-size: 0.88rem;
}

.bkrt-photo-grid:not(:empty) + .bkrt-photo-empty { display: none; }

/* ---- Latest update ---- */
.bkrt-update-section {
	padding: 0 clamp(1.25rem, 4vw, 4rem) clamp(2rem, 4vw, 3.5rem);
}

.bkrt-latest-message {
	font-size: 0.93rem;
	line-height: 1.7;
	color: var(--bkrt-muted);
	margin: 0;
}

/* ---- Timeline ---- */
.bkrt-timeline-section {
	padding: 0 clamp(1.25rem, 4vw, 4rem) clamp(2rem, 4vw, 3.5rem);
}

.bkrt-timeline {
	list-style: none;
	margin: 1.6rem 0 0;
	padding: 0 0 0 1.75rem;
	border-left: 2px dashed rgba(245,225,29,0.4);
}

.bkrt-timeline-item {
	position: relative;
	padding-bottom: 1.2rem;
	display: flex;
	gap: 0.9rem;
}

.bkrt-timeline-item::before {
	content: '';
	position: absolute;
	left: -2.25rem;
	top: 0.15rem;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: var(--bkrt-yellow);
	border: 3px solid var(--bkrt-bg);
	box-shadow: 0 0 0 2px var(--bkrt-yellow);
}

.bkrt-timeline-time {
	font-weight: 800;
	color: var(--bkrt-yellow);
	flex: 0 0 auto;
}

.bkrt-timeline-summary { color: var(--bkrt-muted); font-size: 0.9rem; }

.bkrt-timeline-empty {
	color: var(--bkrt-muted);
	font-size: 0.9rem;
}

/* ---- Donate banner ---- */
.bkrt-donate-banner {
	margin: 0 clamp(1.25rem, 4vw, 4rem) clamp(2rem, 4vw, 3.5rem);
	background: var(--bkrt-yellow);
	border-radius: 24px;
	padding: clamp(2rem, 4vw, 3.4rem);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	position: relative;
	overflow: hidden;
}

.bkrt-donate-banner-copy { max-width: 34rem; position: relative; }

.bkrt-donate-banner-copy h2 {
	font-size: clamp(1.3rem, 2.6vw, 1.85rem);
	color: var(--bkrt-bg);
	margin-bottom: 0.6rem;
}

.bkrt-donate-banner-copy p {
	font-size: 0.92rem;
	line-height: 1.6;
	color: var(--bkrt-yellow-text);
	margin: 0;
}

/* ---- Footer ---- */
.bkrt-footer {
	padding: 2rem clamp(1.25rem, 4vw, 4rem);
	border-top: 1px solid var(--bkrt-border);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.bkrt-footer a {
    color: var(--bkrt-yellow);
}

.bkrt-footer-brand {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.82rem;
	color: var(--bkrt-faint);
}

.bkrt-footer-logo {
	height: 32px;
	width: 32px;
	object-fit: cover;
	border-radius: 50%;
}

.bkrt-footer-note {
	font-size: 0.82rem;
	color: var(--bkrt-faint);
}
.bkrt-gap-card,
.bkrt-donate-banner,
.bkrt-eta-card {
    position: relative;
    overflow: hidden;
}
.bg-text {
    position: absolute;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: rgba(0, 0, 0, 0.07);
    transform: rotate(-8deg);
    white-space: normal;
    font-family: 'Clash Grotesk';
    z-index: 0;
    pointer-events: none;
    line-break: anywhere;
}
.bg-text--donate {
    top: -70px;
    right: -150px;
    width: 64%;
}
.bg-text--eta {
    top: -150px;
    right: -70px;
    width: 130%;
}
.bg-text--gap {
    color: rgba(245, 225, 29, 0.07);
    top: -70px;
    right: -70px;
    width: 130%;
}
   
.bkrt-gap-left,
.bkrt-gap-note,
.bkrt-gap-cta,
.bkrt-donate-banner-copy,
.bkrt-donate-banner > .bkrt-btn,
.bkrt-eta-label,
.bkrt-eta-value,
.bkrt-map,
.bkrt-eta-note {
    position: relative;
    z-index: 1;
}

.bkrt-impact-card a {
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    justify-content: flex-start;
}

img.social-img {
    width: 60px;
    height: 60px;
    border-radius: 100px;
    border: none;
    margin-right: 20px;
}

/* ---- Inline stat (used outside the dashboard, e.g. in page copy) ---- */
.bkrt-inline-stat {
	font-weight: 700;
	color: var(--bkrt-yellow);
}

/* Only applies on the plugin's own blank-canvas page template */
body.bkrt-fullwidth-page {
	margin: 0;
	background: #000000;
}


/* ---- Responsive ---- */
@media (max-width: 880px) {
	.bkrt-hero { grid-template-columns: 1fr; }
	.bkrt-hero-image { order: 0; min-height: 220px; }
	.bkrt-stats-strip { grid-template-columns: 1fr; }
	.bkrt-progress-row { grid-template-columns: 1fr; }
	.bkrt-gap-card { flex-direction: column; align-items: flex-start; }
	.bkrt-gap-cta { width: 100%; text-align: center; }
	.bg-text--eta {top: -140px;right: -430px;width: 180%;}
	.bg-text--donate {top: 120px;right: -190px;width: 130%;}
}

@media (max-width: 520px) {
	.bkrt-sticky-brand span { display: none; }
	.bg-text--eta {top: -100px;right: -300px;width: 210%;}
	.bg-text--donate {top: 170px;right: -120px;width: 160%;}
	.bkrt-footer-brand {flex-direction: row;flex-wrap: wrap;}
	.bkrt-btn {padding: .5rem .8rem;}
}
