/**
 * Manual VIP Crypto Upgrade - frontend styles.
 */

.mvcu-wrap {
	max-width: 820px;
	margin: 0 auto;
	padding: 24px 16px 40px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
	color: #1a1a2e;
}

.mvcu-header {
	text-align: center;
	margin-bottom: 32px;
}

.mvcu-title {
	font-size: 2rem;
	font-weight: 700;
	margin: 0 0 8px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.mvcu-subtitle {
	margin: 0;
	color: #64748b;
	font-size: 1rem;
	line-height: 1.6;
}

.mvcu-notice {
	padding: 14px 18px;
	border-radius: 10px;
	margin-bottom: 24px;
	font-size: 0.95rem;
}

.mvcu-notice--success {
	background: #ecfdf5;
	border: 1px solid #6ee7b7;
	color: #065f46;
}

.mvcu-notice--error {
	background: #fef2f2;
	border: 1px solid #fca5a5;
	color: #991b1b;
}

.mvcu-notice--warning {
	background: #fffbeb;
	border: 1px solid #fcd34d;
	color: #92400e;
}

.mvcu-notice--info {
	background: #eff6ff;
	border: 1px solid #93c5fd;
	color: #1e40af;
}

.mvcu-section {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 24px;
	margin-bottom: 20px;
	box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}

.mvcu-section-title {
	margin: 0 0 8px;
	font-size: 1.1rem;
	font-weight: 700;
	color: #0f172a;
}

.mvcu-section-desc {
	margin: 0 0 16px;
	color: #64748b;
	font-size: 0.92rem;
}

.mvcu-plans {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
}

@media (max-width: 640px) {
	.mvcu-plans {
		grid-template-columns: 1fr;
	}
}

.mvcu-plan {
	cursor: pointer;
}

.mvcu-plan input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.mvcu-plan__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 24px 16px;
	border: 2px solid #e2e8f0;
	border-radius: 14px;
	background: #f8fafc;
	transition: all 0.2s ease;
	position: relative;
	min-height: 120px;
}

.mvcu-plan:hover .mvcu-plan__inner {
	border-color: #a5b4fc;
	transform: translateY(-2px);
}

.mvcu-plan input:checked + .mvcu-plan__inner {
	border-color: #667eea;
	background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
	box-shadow: 0 8px 24px rgba(102, 126, 234, 0.2);
}

.mvcu-plan--popular .mvcu-plan__inner {
	border-color: #c4b5fd;
}

.mvcu-plan__badge {
	position: absolute;
	top: -10px;
	background: linear-gradient(135deg, #667eea, #764ba2);
	color: #fff;
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: 999px;
	letter-spacing: 0.04em;
}

.mvcu-plan__name {
	font-size: 1.05rem;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 6px;
}

.mvcu-plan__price {
	font-size: 1.6rem;
	font-weight: 800;
	color: #667eea;
}

.mvcu-plan__price small {
	font-size: 0.75rem;
	font-weight: 600;
	color: #64748b;
}

.mvcu-wallets {
	display: grid;
	gap: 14px;
}

.mvcu-wallet {
	background: #0f172a;
	border-radius: 12px;
	padding: 16px 18px;
}

.mvcu-wallet__label {
	color: #94a3b8;
	font-size: 0.78rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 10px;
}

.mvcu-wallet__row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}

.mvcu-wallet__address {
	flex: 1;
	min-width: 200px;
	background: #1e293b;
	color: #e2e8f0;
	padding: 10px 14px;
	border-radius: 8px;
	font-size: 0.82rem;
	word-break: break-all;
}

.mvcu-field {
	margin-bottom: 18px;
}

.mvcu-field label {
	display: block;
	font-weight: 600;
	margin-bottom: 8px;
	color: #0f172a;
}

.mvcu-field .required {
	color: #ef4444;
}

.mvcu-input {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #cbd5e1;
	border-radius: 10px;
	font-size: 0.95rem;
	box-sizing: border-box;
	color: #333333 !important;
	background-color: #ffffff !important;
}

.mvcu-input::placeholder {
	color: #64748b !important;
	opacity: 1;
}

.mvcu-form input[type="text"],
.mvcu-form input[type="email"],
.mvcu-form input[type="number"],
.mvcu-form input[type="file"],
.mvcu-form textarea,
.mvcu-form select {
	color: #333333 !important;
	background-color: #ffffff !important;
}

.mvcu-input:focus {
	outline: none;
	border-color: #667eea;
	box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
}

.mvcu-field input[type="file"] {
	width: 100%;
	padding: 10px;
	border: 2px dashed #cbd5e1;
	border-radius: 10px;
	background: #f8fafc;
}

.mvcu-field-help {
	margin: 6px 0 0;
	font-size: 0.82rem;
	color: #64748b;
}

.mvcu-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 18px;
	border: none;
	border-radius: 8px;
	font-size: 0.88rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
	text-decoration: none;
}

.mvcu-btn--copy {
	background: #667eea;
	color: #fff;
	white-space: nowrap;
}

.mvcu-btn--copy:hover {
	background: #5a67d8;
}

.mvcu-btn--copy.is-copied {
	background: #10b981;
}

.mvcu-btn--primary {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: #fff;
	padding: 14px 32px;
	font-size: 1rem;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(102, 126, 234, 0.35);
}

.mvcu-btn--primary:hover {
	transform: translateY(-1px);
	box-shadow: 0 12px 28px rgba(102, 126, 234, 0.45);
}

.mvcu-actions {
	text-align: center;
	margin-top: 8px;
}
