:root {
	--bg: #0b0f14;
	--panel: #111824;
	--text: #e7eefc;
	--muted: #a8b4cc;
	--line: #22304a;
	--accent: #7dd3fc;
	--accent2: #8ffa8b;
	--radius: 14px;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
	background: var(--bg);
	color: var(--text);
	line-height: 1.5;
	position: relative;
	min-height: 100vh;
}

body.mobile-nav-open {
	overflow: hidden;

}

h1,
h2,
h3,
h4,
h5,
h6,
small {
	text-transform: uppercase;
	font-family: "Zalando Sans Expanded", sans-serif;
}

blockquote {
	margin: 0;
	padding-left: 16px;
	border-left: 4px solid var(--accent);
	color: var(--muted);
	font-style: italic;
}

a {
	color: var(--accent);
}

p {
	margin-top: 0;
}

.video-bg {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 200%;
	height: 200%;
	object-fit: cover;
	z-index: -1;
	opacity: 0.33;
	transform: translate(-50%, -50%);
	/* filter: blur(2px); */
}

hr {
	border: none;
	border-top: 1px solid var(--line);
	margin: 0;
	margin-block: 64px;
}

.wrap {
	max-width: 1350px;
	margin: 0 auto;
	padding: 22px 48px 50px;
	position: relative;
}

.top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
	border-radius: var(--radius);
	padding: 14px 16px;
	border: solid 1px transparent;
	position: relative;
	z-index: 9999;
}

.top.sticky {
	position: fixed;
	transition: border 0.3s, background 0.3s, box-shadow 0.3s, transform 0.6s;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
	top: 0;
	border: 1px solid var(--accent);
	background: rgba(125, 211, 252, 0.1);
	backdrop-filter: blur(5px);
	width: calc(1350px - 96px);
	max-width: calc(100vw - 112px);
}

.top.sticky.active {
	max-width: calc(100vw - 96px);
}

.row {
	display: flex;
	align-items: center;
	gap: 12px;
}

.mobile-toggle {
	display: none !important;
	cursor: pointer;
}

.mobile-toggle .bi-list {
	display: block;
}

.mobile-toggle .bi-x-lg {
	display: none;
}

.mobile-toggle.active .bi-list {
	display: none;
}

.mobile-toggle.active .bi-x-lg {
	display: block;
}

.mobile-menu {
	position: fixed;
	width: 100vw;
	padding-inline: 48px;
	padding-top: calc(100px + 24px);
	top: 0;
	left: 0;
	z-index: 999;
	background-color: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(10px);
	bottom: 0;
	display: flex;
	flex-direction: column;
	gap: 24px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.mobile-menu.active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.mobile-menu .btn {
	font-size: 24px;
}

.mobile-menu svg {
	margin-left: 4px;
	height: 23px;
	width: 24px;
	vertical-align: middle;
	transform: translateY(-2px);
}

.logo {
	display: flex;
}

.brand {
	font-weight: 900;
	letter-spacing: .2px;
	font-family: "Zalando Sans Expanded", sans-serif;
	font-variant: all-small-caps;
}

.buttons {
	gap: 4px !important
}

.buttons svg {
	margin-left: 4px;
	height: 23px;
	width: 16px;
	vertical-align: middle;
	transform: translateY(-2px);
}

.btn {
	display: inline-block;
	padding: 10px 12px;
	border-radius: 12px;
	border: 1px solid var(--accent);
	background: transparent;
	color: var(--text);
	text-decoration: none;
	transition: background 0.3s, border-color 0.3s;
	cursor: pointer;
	user-select: none;
}

#btn-checkout {
	font-size: 24px;
	padding: 16px 24px;
}

#btn-checkout:hover {
	background-color: rgba(143, 250, 139, 0.8);
}

.btn:hover {
	border-color: rgba(125, 211, 252, .45);
	background: rgba(125, 211, 252, 0.1);
}

.btn small {
	margin: 0 !important;
}

.buttons .btn {
	display: inline-block;
	padding: 10px 12px;
	border-radius: 12px;
	border: 1px solid var(--accent);
	background: var(--panel);
	font-size: 11px;
	color: var(--text);
	text-decoration: none;
	transition: background 0.3s, border-color 0.3s;
}

.buttons .btn:hover {
	border-color: rgba(125, 211, 252, .45);
	background: rgba(125, 211, 252, 0.1);
}

.buttons .btn.active {
	border-color: var(--accent2);
	background: rgba(143, 250, 139, 0.12);
	backdrop-filter: blur(4px);
}

.btn.add-to-cart {
	font-family: "Zalando Sans Expanded", sans-serif;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 0.3px;
	padding: 20px;
	width: 100%;
	max-width: 300px;
}

h1 {
	margin: 0 0 10px;
	font-size: 28px;
	line-height: 1.15;
	margin-bottom: 24px;
}

.large {
	font-size: 3em;
	padding-top: 48px;
	margin-top: 0;
	text-align: center;
}

.muted {
	color: var(--muted);
	margin: 0;
	margin-bottom: 8px;
}

.ip {
	margin-bottom: 8px;
	padding: 14px;
	border-radius: 12px;
	border: 1px solid rgba(125, 211, 252, .35);
	background: rgba(125, 211, 252, .06);
	backdrop-filter: blur(10px);
	position: relative;
	z-index: 1;
}

.ip small {
	display: block;
	font-weight: 700;
	margin-bottom: 6px;
}

.ip code {
	display: block;
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
	font-size: 20px;
	font-weight: 900;
	word-break: break-all;
	color: var(--accent);
}

.card code {
	display: inline-block;
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
	font-size: 20px;
	font-weight: 900;
	word-break: break-all;
	color: var(--accent);
}

section, .section {
	margin-top: 14px;
	padding: 16px;
	border: 1px solid var(--line);
	background: var(--panel);
	border-radius: var(--radius);
}

h2 {
	margin: 24px 0 12px;
	font-size: 18px;
}

ul {
	margin: 8px 0 0;
	padding-left: 18px;
}

nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 12px;
}

ul.ip {
	margin-top: 24px;
	padding-left: 28px;
}

li {
	margin: 6px 0;
}

.rules li strong {
	color: #ffd0d0;
}

.command-card {
	padding: 4px 12px;
	padding-right: 82px;
	border: 1px solid rgba(125, 211, 252, .35);
	background: rgba(125, 211, 252, 0.1);
	border-radius: var(--radius);
	margin-bottom: 8px;
	position: relative;
	min-height: 48px;
	justify-content: center;
}

.command-card button {
	text-transform: uppercase;
}

.command-card code {
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
	font-size: 20px;
	font-weight: 700;
	color: var(--accent);
}

footer {
	background-color: rgba(5, 11, 19, 0.98);
}

.footer-content {
	color: var(--muted);
	font-size: 14px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: stretch;
	gap: 24px;
	padding-block: 80px;
}

@media (max-width: 768px) {
	footer {
		flex-direction: column;
		align-items: flex-start;
	}

	footer .row {
		justify-content: center;
	}

	footer .right {
		text-align: center;
	}

	iframe.video-bg {
		width: 400% !important;
		height: 400% !important;
	}

	.wrap {
		padding-inline: 24px;
	}

	.brand {
		font-size: 11px;
	}

	#server-status .ip:has(#server-ip) {
		align-items: start;
	}

	#server-ip {
		font-size: 14px;
	}

	.buttons .btn {
		width: 100%;
		margin-bottom: 10px;
	}

	h1 {
		font-size: 20px;
	}

	.ip code {
		font-size: 18px;
	}

	.cart-item {
		grid-template-columns: 1fr;
	}

	.cart-right {
		justify-content: start;
	}
}

#basic-gameplay-loop {
	margin-top: 14px;
	padding: 16px;
	border: 1px solid var(--line);
	background: var(--panel);
	border-radius: var(--radius);
}

#basic-gameplay-loop .command-card {
	text-align: left;
	padding-right: 12px;
	display: inline-block;
}

#basic-gameplay-loop .command-card code {
	transition-duration: 0.3s;
	font-size: 16px;
}

#basic-gameplay-loop .command-card code:hover {
	cursor: pointer;
}

#basic-gameplay-loop .row {
	justify-content: space-around;
}

.card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(calc(100% / 6 - 20px), 1fr));
	gap: 16px;
}

.card {
	background: rgba(125, 211, 252, 0.1);
	border: 1px solid rgba(125, 211, 252, 0.25);
	border-radius: var(--radius);
	padding: 16px;
	text-align: center;
	height: 100%;
}

.card h2 {
	font-size: 32px;
	margin: 0 0 8px;
}

.card img {
	max-width: 50px;
}

.package-actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
	justify-content: center;
	align-items: center;
	margin-top: 10px;
	flex-wrap: wrap;
}

.price-pill {
	display: inline-block;
	padding: 6px 10px;
	border-radius: 999px;
	border: 1px solid rgba(167, 139, 250, 0.35);
	border-color: var(--accent2);
	background: rgba(143, 250, 139, 0.12);
	color: var(--text);
	font-weight: 800;
	letter-spacing: 0.3px;
}

/* Cart */
.field-row {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	align-items: end;
	justify-content: space-between;
}

.field {
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 240px;
}

#basket-status {
	word-break: break-all;
}

.input {
	padding: 10px 12px;
	border-radius: 12px;
	border: 1px solid rgba(125, 211, 252, .35);
	background: rgba(125, 211, 252, .06);
	color: var(--text);
	outline: none;
	font-weight: 800;
}

.input::placeholder {
	color: rgba(168, 180, 204, 0.8);
	font-weight: 700;
}

.cart-list {
	margin-top: 12px;
	display: grid;
	gap: 10px;
	overflow-y: auto;
	min-height: 250px;
	max-height: 250px;
	/* Firefox */
	scrollbar-width: thin;
	scrollbar-color: var(--accent) rgba(125, 211, 252, 0.04);
}

/* WebKit (Chrome, Edge, Safari) */
.cart-list::-webkit-scrollbar {
	width: 10px;
}

.cart-list::-webkit-scrollbar-track {
	background: rgba(125, 211, 252, 0.04);
	border-radius: 12px;
}

.cart-list::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, var(--accent), var(--accent2));
	border-radius: 12px;
	border: 2px solid rgba(255, 255, 255, 0.9);
}

.cart-list::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(143, 250, 139, 0.9));
}

.cart-item {
	display: grid !important;
	grid-template-columns: 1fr auto;
	gap: 12px;
	padding: 12px;
	border-radius: 12px;
	border: 1px solid rgba(125, 211, 252, .25);
	background: rgba(125, 211, 252, 0.06);
	align-items: center;
}

.cart-item .name {
	font-weight: 900;
	letter-spacing: 0.2px;
	text-transform: uppercase;
	font-family: "Zalando Sans Expanded", sans-serif;
	font-size: 12px;
	margin-bottom: 2px;
	text-align: left;
	display: inline-block !important;
}

.cart-item .meta {
	color: var(--muted);
	font-size: 12px;
	display: inline-block !important;
	text-align: left;
}

.cart-right {
	display: flex;
	flex-direction: row !important;
	gap: 10px;
	align-items: center;
	justify-content: end;
}

.qty {
	display: inline-flex;
	flex-direction: row !important;
	align-items: center;
	gap: 6px;
	padding: 6px;
	border-radius: 12px;
	border: 1px solid rgba(125, 211, 252, .25);
	background: rgba(125, 211, 252, 0.06);
}

.qty .qty-btn {
	width: 34px;
	height: 34px;
	border-radius: 10px;
	border: 1px solid rgba(125, 211, 252, .35);
	background: rgba(125, 211, 252, .10);
	color: var(--text);
	font-weight: 900;
	cursor: pointer;
}

.qty .qty-input {
	width: 60px;
	height: 34px;
	border-radius: 10px;
	border: 1px solid rgba(125, 211, 252, .35);
	background: rgba(125, 211, 252, .06);
	color: var(--text);
	text-align: center;
	font-weight: 900;
	outline: none;
}

.cart-summary {
	margin-top: 12px;
	display: flex;
	justify-content: space-between;
	gap: 10px;
	align-items: center;
	flex-wrap: wrap;
	border-top: 1px solid rgba(125, 211, 252, .18);
	padding-top: 12px;
}

.cart-total {
	font-weight: 900;
	color: var(--accent);
	font-size: 18px;
}

.package-card img {
	width: 128px;
	max-width: 128px !important;
}

.product-category h3, .warn {
	margin-top: 10px;
	padding: 10px 12px;
	border-radius: 12px;
	border: 1px solid rgba(255, 214, 0, 0.25);
	background: rgba(255, 214, 0, 0.08);
	color: rgba(255, 236, 180, 0.95);
	font-size: 12px;
	font-family: "Zalando Sans Expanded", sans-serif;
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 1em;
}

#server-status > .wrap {
	height: calc(100vh - 147px);
	padding-bottom: 147px !important;
	justify-content: center;
	align-items: stretch !important;
}

#motd-title {
	font-size: 3rem;
	text-align: center;
	margin-bottom: 48px;
	letter-spacing: 1.6;
	opacity: 0.95;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

#status-title {
	text-align: center;
	margin-bottom: 16px;
	filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4));
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
}

.sonar-ping {
	position: relative;
	overflow: visible;
	font-size: 0;
	width: 12px;
	height: 12px;
	background-color: var(--accent2);
	border-radius: 50px;
}

.sonar-ping::after {
	content: '';
	position: absolute;
	top: calc(50%);
	left: 50%;
	width: 16px;
	height: 16px;
	background: rgba(0, 255, 21, 0.781);
	border: solid 1px rgba(0, 255, 21, 1);
	border-radius: 50px;
	transform: translate(-50%, -50%) scale(0);
	animation: sonar 1.5s infinite;
	z-index: -1;
}

@keyframes sonar {
	0% {
		transform: translate(-50%, -50%) scale(0);
		opacity: 1;
	}
	50% {
		transform: translate(-50%, -50%) scale(1);
		opacity: 0.33;
	}
	100% {
		transform: translate(-50%, -50%) scale(2);
		opacity: 0;
	}
}

/* --- inline style block #2 --- */
.copy-button {
	position: absolute;
	right: 14px;
	top: 50%;
	transform: translateY(-50%);
	padding: 6px 12px;
	background: rgba(125, 211, 252, 0.15);
	border: 1px solid rgba(125, 211, 252, 0.3);
	border-radius: 8px;
	color: var(--accent);
	cursor: pointer;
	font-size: 12px;
	font-weight: 700;
	transition: all 0.2s ease;
}

.copy-button:hover {
	background: rgba(125, 211, 252, 0.25) !important;
	border-color: rgba(125, 211, 252, 0.5) !important;
	transform: translateY(-50%) scale(1.05) !important;
}

button.copy-button:hover {
	background: rgba(125, 211, 252, 0.25) !important;
	border-color: rgba(125, 211, 252, 0.5) !important;
	transform: translateY(-50%) scale(1.05) !important;
}

/* --- inline style block #3 --- */
.scroll-prompt {
	color: #fff !important;
	display: flex;
	flex-direction: column;
	text-decoration: none !important;
	align-items: center;
	justify-content: center;
	position: absolute;
	bottom: 73px; /* Adjust as needed */
	left: 50%;
	transform: translateX(-50%);
	animation: bob 2s ease-in-out infinite;
}

@keyframes bob {
	0%,
	100% {
		transform: translate(-50%, 0);
	}
	50% {
		transform: translate(-50%, 10px); /* Adjust bobbing height */
	}
}

/* --- inline style block #4 --- */
#server-status {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: calc(100vh - 111px); /* Adjust for any margins */
	padding: 20px 0px;
	background: rgba(255, 255, 255, 0.0);
	border-radius: 8px;
	border: none;
	position: relative;
}

#server-status div:not(.row) {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}

.centered {
	text-align: center;
}

.font-light {
  font-weight: 300;
}

.font-regular {
  font-weight: 400;
}

.font-heavy {
  font-weight: 700;
}

/* POSITIONING */

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}

.justify {
  text-align: justify;
}

.stretch {
	align-items: stretch;	
}

.between {
	justify-content: space-between;
}

/* ==== GRID SYSTEM ==== */

.container {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
  width: 96%;
}

.col-1-sm {
  width: calc(100% / 12 * 1) !important;
}

.col-2-sm {
  width: calc(100% / 12 * 2) !important;
}

.col-3-sm {
  width: calc(100% / 12 * 3) !important;
}

.col-4-sm {
  width: calc(100% / 12 * 4) !important;
}

.col-5-sm {
  width: calc(100% / 12 * 5) !important;
}

.col-6-sm {
  width: calc(100% / 12 * 6) !important;
}

.col-7-sm {
  width: calc(100% / 12 * 7) !important;
}

.col-8-sm {
  width: calc(100% / 12 * 8) !important;
}

.col-9-sm {
  width: calc(100% / 12 * 9) !important;
}

.col-10-sm {
  width: calc(100% / 12 * 10) !important;
}

.col-11-sm {
  width: calc(100% / 12 * 11) !important;
}

.col-12-sm {
  width: calc(100%) !important;
}

.hidden-sm {
  display: none;
}

@media only screen and (min-width: 33.75em) {  /* 540px */
  .container {
    width: 80%;
  }
}

@media only screen and (min-width: 45em) {  /* 720px */
  .col-1 {
    width: calc(100% / 12 * 1) !important;
  }

  .col-2 {
    width: calc(100% / 12 * 2) !important;
  }

  .col-3 {
    width: calc(100% / 12 * 3) !important;
  }

  .col-4 {
    width: calc(100% / 12 * 4) !important;
		grid-column: span 1;
  }

  .col-5 {
    width: calc(100% / 12 * 5) !important;
  }

  .col-6 {
    width: calc(100% / 12 * 6) !important;
  }

  .col-7 {
    width: calc(100% / 12 * 7) !important;
  }

  .col-8 {
    width: calc(100% / 12 * 8) !important;
		grid-column: span 2;
  }

  .col-9 {
    width: calc(100% / 12 * 9) !important;
  }

  .col-10 {
    width: calc(100% / 12 * 10) !important;
  }

  .col-11 {
    width: calc(100% / 12 * 11) !important;
  }

  .col-12 {
    width: calc(100%) !important;
		grid-column: span 3;
  }

  .hidden-sm {
    display: block;
  }
}

@media screen and (max-width: 1100px) {
	.row {
		flex-wrap: wrap;
	}

	.buttons {
		display: none;
	}

	.mobile-toggle {
		display: block !important;
	}

	.scroll-prompt {
		display: none !important;
	}

	#server-status {
		height: auto !important;
	}

	#server-status .wrap {
		height: auto !important;
		padding-bottom: 0px !important;
	}

	.col-1-sm,
	.col-2-sm,
	.col-3-sm,
	.col-4-sm,
	.col-5-sm,
	.col-6-sm,
	.col-7-sm,
	.col-8-sm,
	.col-9-sm,
	.col-10-sm,
	.col-11-sm,
	.col-12-sm {
	  width: 100% !important;
	}

	.col-1,
	.col-2,
	.col-3,
	.col-4,
	.col-5,
	.col-6,
	.col-7,
	.col-8,
	.col-9,
	.col-10,
	.col-11,
	.col-12 {
		width: 100% !important;
	}

	.span-1,
	.span-2,
	.span-3,
	.span-4,
	.span-5,
	.span-6 {
	  grid-column: span 6 !important;
	  width: 100% !important;
	}

	.span-1-sm {
	  grid-column: span 1 !important;
	  width: 100% !important;
	}

	.span-2-sm {
	  grid-column: span 2 !important;
	  width: 100% !important;
	}

	.span-3-sm {
	  grid-column: span 3 !important;
	  width: 100% !important;
	}

	.span-3-sm {
	  grid-column: span 3 !important;
	  width: 100% !important;
	}

	.span-4-sm {
	  grid-column: span 4 !important;
	  width: 100% !important;
	}

	.span-5-sm {
	  grid-column: span 5 !important;
	  width: 100% !important;
	}

	.span-6-sm {
	  grid-column: span 6 !important;
	  width: 100% !important;
	}

	.video-bg {
		width: 400% !important;
		height: 400% !important;
	}

	.cart-summary .row {
		flex-wrap: nowrap;
		flex-direction: row;
		max-width: 75%;
	}
}

@media screen and (max-width: 768px) {
	.top.sticky {
		max-width: calc(100vw - 48px);
	}

	.top.sticky.active {
		max-width: calc(100vw - 48px);
	}

	.mobile-menu {
		padding-inline: 24px;
	}

	#motd-title,
	.large {
		font-size: 2rem;
	}

	.span-1-xs {
	  grid-column: span 1 !important;
	  width: 100% !important;
	}

	.span-2-xs {
	  grid-column: span 2 !important;
	  width: 100% !important;
	}

	.span-3-xs {
	  grid-column: span 3 !important;
	  width: 100% !important;
	}

	.span-4-xs {
	  grid-column: span 4 !important;
	  width: 100% !important;
	}

	.span-5-xs {
	  grid-column: span 5 !important;
	  width: 100% !important;
	}

	.span-6-xs {
	  grid-column: span 6 !important;
	  width: 100% !important;
	}

	.cart-item {
		display: flex !important;
	}

	.cart-right {
		flex-direction: column;
		flex-wrap: wrap;
	}

	.cart-right .price-pill,
	.cart-right .qty {
		width: calc(50% - 5px) !important;
	}

	.cart-right .btn {
		width: 100% !important;
	}

	.cart-summary .row {
		flex-wrap: nowrap;
		max-width: 100%;
	}

	#cart-hint {
		display: none !important;
	}
}

.componentMeta {
	visibility: hidden;
	height: 0;
	position: absolute;
	overflow: hidden;
	width: 0;
	opacity: 0;
	pointer-events: none;
}

#above-the-fold {
	background: #0B0F14;
	background: linear-gradient(0deg, rgba(5, 11, 19, 0.98) 0%, rgba(5, 11, 19, 0.9) 60%, rgba(5, 11, 19, 0.7) 80%, rgba(5, 11, 19, 0) 100%);
}

.output {
	background-color: rgba(5, 11, 19, 0.98);
}

.flex-wrap {
	flex-wrap: wrap;
}

.span-1 {
	grid-column: span 1;
	width: 100% !important;
}

.span-2 {
	grid-column: span 2;
	width: 100% !important;
}

.span-3 {
	grid-column: span 3;
	width: 100% !important;
}

.span-4 {
	grid-column: span 4;
	width: 100% !important;
}

.span-5 {
	grid-column: span 5;
	width: 100% !important;
}

.span-6 {
	grid-column: span 6;
	width: 100% !important;
}

/* Force the Ko-fi floating container to have a transparent background */
.floatingchat-container-wrap, 
.floatingchat-container-wrap-mobi,
iframe[id^="kofi-widget"] {
    background-color: transparent !important;
    background: none !important;
    border: none !important;
    color-scheme: light !important; /* Prevents dark-mode browser forced backgrounds */
}

/* Sets the width of the Ko-fi floating chat button container */
.floatingchat-container-wrap, 
.floatingchat-container-wrap-mobi {
    width: 300px !important;
    max-width: 300px !important;
}

/* Ensures the actual iframe inside expands to the new width */
.floating-chat-kofi-popup-iframe,
iframe[id^="kofi-widget"] {
    width: 300px !important;
}
