.paypal-grid-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
	padding: 2rem 1rem;
}

.paypal-grid-card {
	background: radial-gradient(circle at top, #1b1b1b, #0e0e0e 70%);
	border: 1px solid rgba(255, 140, 50, 0.15);
	border-radius: 16px;
	padding: 0.5rem 0.5rem;
	text-align: center;
	box-shadow: 0 0 12px rgba(255, 140, 50, 0.08);
	transition: all 0.25s ease-in-out;
	position: relative;
	overflow: hidden;
}

.paypal-grid-card {
	background: radial-gradient(circle at top, #1b1b1b, #0e0e0e 70%);
	border: 1px solid rgba(255, 140, 50, 0.15);
	border-radius: 16px;
	padding: 0.5rem 0.5rem;
	text-align: center;
	box-shadow: 0 0 12px rgba(255, 140, 50, 0.08);
	transition: all 0.25s ease-in-out;
	position: relative;
	overflow: hidden;
}

.paypal-grid-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('/layout/rosha_images/bg/bg.png') center/cover no-repeat;
	opacity: 1;
	transition: opacity 0.3s ease, background-image 0.3s ease;
	z-index: 0;
}

/* Po najechaniu zmieniamy pseudo-element */
.paypal-grid-card:hover::before {
	background-image: url('/layout/rosha_images/bg/download5.png');
	opacity: 1;
}

.paypal-grid-card > * {
	position: relative;
	z-index: 1; /* Żeby treść była nad obrazkiem */
}

.paypal-grid-title {
	color: #f8c574;
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	text-shadow: 0 0 4px #000;
}

.paypal-grid-sub {
	font-size: 0.85rem;
	color: #e49a43;
}

.paypal-grid-price {
	color: #ffb347;
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 0.6rem;

}

.paypal-grid-bonus {
	color: #d9b35f; /* złoto, ale bardziej "zniszczone" */
	font-size: 24px;
	letter-spacing: 0.5px;
	text-shadow: 0 0 3px #000, 0 0 5px rgba(0, 0, 0, 0.7);
	font-family: 'Cinzel', serif; /* lub inne gotyckie */
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 1rem;
}

.paypal-grid-points {
	color: #9a6aff; /* mistyczny fiolet */
	font-size: 26px;
	letter-spacing: 0.03em;
	font-family: 'UnifrakturCook', cursive;
	text-shadow:
		0 0 1px #000,
		0 0 4px #3e005f,
		0 0 6px rgba(0, 0, 0, 0.8);
	font-weight: normal;
	text-transform: none;
	margin-bottom: 1.2rem;
}

.paypal-grid-buy-btn {
	background: linear-gradient(to bottom, #e6a24b, #8a4e10);
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 0.6rem 1.5rem;
	font-weight: bold;
	font-size: 0.95rem;
	cursor: pointer;
	transition: all 0.2s ease;
	box-shadow: 0 0 10px rgba(255, 140, 50, 0.2);
	text-shadow: 0 0 2px #000;
}

.paypal-grid-buy-btn:hover {
	background: linear-gradient(to bottom, #ffb85c, #a95e18);
	box-shadow: 0 0 20px rgba(255, 180, 70, 0.4);
}

/* Paypal Logo Block */
.paypal-logo-wrapper {
	text-align: center;
	margin-top: 2rem;
	margin-bottom: 3rem;
}

.paypal-logo-wrapper img.paypal-logo {
	max-width: 240px;
	height: auto;
	filter: drop-shadow(0 0 6px #000);
}

.paypal-logo-caption {
	font-size: 0.9rem;
	color: #ffaa33;
	margin-top: 0.5rem;
}

.paypal-logo-caption a {
	color: #ffaa33;
	text-decoration: none;
	font-weight: bold;
}

.paypal-logo-caption a:hover {
	text-decoration: underline;
}


.pro-coins-amount {
	color: #f3e9c6; /* jasna kość/szarość, dobrze widoczna */
	font-size: 2rem;
	font-weight: 700;
	text-align: center;
	text-shadow: 0 0 2px #000;
	margin-bottom: -20px;
	font-family: 'Cinzel', serif;
	letter-spacing: 0.5px;
}
.pro-coins-label {
	color: #a0a0a0; /* neutralny, nieprzytłaczający */
	font-size: 0.85rem;
	font-weight: 400;
	text-align: center;
	text-shadow: 0 0 1px #000;
	margin-bottom: 10px;
	font-family: 'Inter', sans-serif;
}
.pro-coins-price {
	color: #0dfd00; /* żywa pomarańcz, przyciąga uwagę */
	font-size: 2rem;
	font-weight: 700;
	text-align: center;
	text-shadow: 0 0 2px #000, 0 0 6px rgba(255, 90, 0, 0.2);
	letter-spacing: 0.4px;
	font-family: 'Cinzel', serif;
	margin-bottom: 12px;
}