/* /frontend/css/modal-crypto-pay.css */
/**
* A-FUCKING-DOCS: CRYPTO-PAYMENT TOP-DOWN SYNC.
* Redundant structural boilerplate removed to leverage the 'base.css' unified kernel.
* Silicon Valley Lingo: Anchoring the transaction chassis to the top-start vector. 
* We've standardized the content offset to 40px to eliminate vertical centering jitter.
*/
#crypto-pay-modal-overlay .pay-modal-content-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	padding: 40px 20px 20px 20px;
	box-sizing: border-box;
	flex: 1;
	justify-content: flex-start;
}
#crypto-pay-modal-overlay .guru-support-bar {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
	width: 100%;
	margin-top: 0;
	margin-bottom: 25px;
	padding: 5px 0;
	font-family: sans-serif;
	font-size: 21px;
	line-height: 1.2;
	color: #ffffff;
	cursor: default;
}
#crypto-pay-modal-overlay .guru-support-label {
	color: #ffffff;
	font-weight: bold;
	display: inline-flex;
	align-items: center;
}
#crypto-pay-modal-overlay a.guru-support-link {
	display: inline-flex;
	align-items: center;
	text-decoration: none !important;
	color: #FFFF00 !important;
	font-weight: bold;
	padding: 5px 10px;
	border-radius: 5px;
	transition: background-color 0.2s ease, transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#crypto-pay-modal-overlay a.guru-support-link:hover {
	background-color: #ffffff;
	color: #000000 !important;
	transform: scale(1.05);
}
#crypto-pay-modal-overlay .guru-support-separator {
	color: rgba(255, 255, 255, 0.3);
	font-weight: 300;
	user-select: none;
}
.crypto-pay-waiting-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	max-width: 500px;
	background-color: #2a2b2d;
	border-radius: 10px;
	padding: 25px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.3);
	margin-bottom: 25px;
}
.crypto-plan-wrapper {
	margin-bottom: 25px;
	text-align: center;
	width: 100%;
}
.crypto-plan-title {
	font-size: 22px;
	color: white;
	margin: 0;
	font-weight: 600;
}
.crypto-details-frame {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.crypto-wallet-section {
	width: 100%;
	margin-bottom: 20px;
}
.crypto-section-label {
	font-size: 22px;
	color: #ccc;
	margin-bottom: 10px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
}
.crypto-input-wrapper {
	display: flex;
	width: 100%;
	background-color: #333;
	border: 1px solid #555;
	border-radius: 5px;
	overflow: hidden;
}
.crypto-input {
	flex-grow: 1;
	background: transparent;
	border: none;
	color: #FFFF00;
	font-size: 20px;
	font-weight: bold;
	padding: 12px 15px;
	text-align: center;
	outline: none;
	font-family: monospace;
}
.crypto-copy-btn {
	background-color: #444;
	border: none;
	border-left: 1px solid #555;
	color: #ccc;
	cursor: pointer;
	padding: 0 20px;
	font-size: 20px;
	transition: background-color 0.2s ease, color 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}
.crypto-copy-btn:hover {
	background-color: #555;
	color: white;
}
.crypto-qr-wrapper {
	margin-bottom: 0;
	padding: 15px;
	background-color: white;
	border-radius: 12px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 240px;
	height: 240px;
	box-sizing: content-box;
}
#crypto-pay-qr canvas {
	display: block;
}
.crypto-info-block {
	text-align: center;
	width: 100%;
	margin-top: 15px;
}
.crypto-text-line {
	margin: 5px 0;
	font-size: 14px;
	line-height: 1.4;
}
.text-yellow { color: #FFFF00; }
.text-white { color: white; }
.text-gray { color: #999; }
@media (max-width: 600px) {
	#crypto-pay-modal-overlay .guru-support-bar { font-size: 16px; flex-direction: column; gap: 8px; }
	.crypto-plan-title { font-size: 20px; }
	.crypto-input { font-size: 18px; padding: 10px; }
	.crypto-copy-btn { padding: 0 15px; font-size: 18px; }
	.crypto-qr-wrapper { width: 200px; height: 200px; }
}