* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
	min-height: 100vh;
	color: #1e293b;
}

/* Status Bar */
.status-bar {
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(12px);
	padding: 8px 16px;
	text-align: center;
	font-size: 14px;
	color: #64748b;
	border-bottom: 1px solid rgba(203, 213, 225, 0.5);
}

.status-content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.status-indicator {
	width: 8px;
	height: 8px;
	background: #f59e0b;
	border-radius: 50%;
}

/* Header */
.header {
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(12px);
	padding: 16px 24px;
	border-bottom: 1px solid rgba(203, 213, 225, 0.5);
	position: sticky;
	top: 0;
	z-index: 10;
}

.header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header-left {
	display: flex;
	align-items: center;
	gap: 12px;
}

.logo {
	width: 32px;
	height: 32px;
	background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.logo-icon {
	width: 20px;
	height: 20px;
	color: white;
}

.header-title {
	font-size: 20px;
	font-weight: 700;
	color: #1e293b;
}

.menu-button {
	background: none;
	border: none;
	padding: 8px;
	border-radius: 8px;
	cursor: pointer;
	color: #64748b;
	transition: background-color 0.2s;
}

.menu-button:hover {
	background: #e2e8f0;
}

.menu-icon {
	width: 20px;
	height: 20px;
}

/* Main Content */
.main-content {
	padding: 32px 24px;
	max-width: 672px;
	margin: 0 auto;
}

/* Verification Card */
.verification-card {
	border: none;
	border-radius: 16px;
	background: white;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	overflow: hidden;
	position: relative;
}

.verification-bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #f8fafc 0%, white 50%, #f1f5f9 100%);
}

.verification-pattern-1 {
	position: absolute;
	top: -80px;
	right: -80px;
	width: 160px;
	height: 160px;
	background: linear-gradient(225deg, rgba(251, 191, 36, 0.3) 0%, transparent 100%);
	border-radius: 50%;
}

.verification-pattern-2 {
	position: absolute;
	bottom: -64px;
	left: -64px;
	width: 128px;
	height: 128px;
	background: linear-gradient(45deg, rgba(234, 88, 12, 0.3) 0%, transparent 100%);
	border-radius: 50%;
}

.verification-content {
	padding: 32px;
	position: relative;
	z-index: 1;
}

.verification-hero {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 24px;
}

/* Certificate Logo */
.certificate-logo {
	position: relative;
}

.logo-image {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.25);
}

.logo-border {
	position: absolute;
	inset: -8px;
	border: 2px dashed rgba(251, 191, 36, 0.5);
	border-radius: 50%;
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.5;
	}
}

/* Status Section */
.status-section {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

/* Status Badge */
.status-badge {
	background: linear-gradient(90deg, #10b981 0%, #059669 100%);
	color: white;
	border: none;
	padding: 6px 16px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 600;
}

.status-badge.status-success {
	background: linear-gradient(90deg, #10b981 0%, #059669 100%);
}

.status-badge.status-warning {
	background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%);
}

.status-badge.status-error {
	background: linear-gradient(90deg, #ef4444 0%, #dc2626 100%);
}

.status-title {
	font-size: 32px;
	font-weight: 700;
	color: #1e293b;
}

.status-description {
	color: #64748b;
	max-width: 384px;
	line-height: 1.5;
}

/* Verify Button */
.verify-button {
	background: linear-gradient(90deg, #f59e0b 0%, #ea580c 100%);
	color: white;
	border: none;
	padding: 12px 24px;
	border-radius: 8px;
	font-weight: 500;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 8px;
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.25);
	transition: all 0.2s;
}

.verify-button:hover {
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	transform: translateY(-1px);
}

.verify-button:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

.verify-icon {
	width: 16px;
	height: 16px;
}

.spinning {
	animation: spin 1s linear infinite;
	animation-direction: reverse;
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

/* Verification Details */
.verification-details {
	width: 100%;
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px solid #e2e8f0;
}

.verification-header {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 24px;
}

.verification-header-icon {
	width: 24px;
	height: 24px;
	background: linear-gradient(90deg, #10b981 0%, #059669 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.verification-header-icon svg {
	width: 12px;
	height: 12px;
	color: white;
}

.verification-header-title {
	font-size: 18px;
	font-weight: 700;
	color: #1e293b;
}

.verification-header-line {
	flex: 1;
	height: 1px;
	background: linear-gradient(90deg, #10b981 0%, transparent 100%);
}

.verification-checks {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.verification-check {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
}

.verification-check-bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, #ecfdf5 0%, #f0fdf4 50%, #ecfdf5 100%);
	opacity: 0;
	transition: opacity 0.3s;
}

.verification-check:hover .verification-check-bg {
	opacity: 1;
}

.verification-check-content {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px;
	background: white;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
	transition: all 0.3s;
}

.verification-check:hover .verification-check-content {
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	border-color: #10b981;
}

.verification-check-status {
	position: relative;
}

.verification-check-icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.25);
	transition: box-shadow 0.3s;
}

.verification-check:hover .verification-check-icon {
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.verification-check-icon.loading {
	background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
	border: 2px solid #fbbf24;
}

.verification-check-icon.success {
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.verification-check-icon.error {
	background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.verification-check-icon.warning {
	background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.verification-check-icon svg {
	width: 20px;
	height: 20px;
	color: white;
}

.verification-check-icon.loading svg {
	color: #f59e0b;
}

.verification-check-pulse {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: #10b981;
	animation: ping 1s infinite;
	opacity: 0.2;
}

@keyframes ping {
	75%,
	100% {
		transform: scale(2);
		opacity: 0;
	}
}

.verification-check-line {
	position: absolute;
	top: 48px;
	left: 50%;
	width: 1px;
	height: 16px;
	background: linear-gradient(180deg, #10b981 0%, #e2e8f0 100%);
	transform: translateX(-50%);
}

.verification-check-info {
	flex: 1;
}

.verification-check-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.verification-check-text {
	font-size: 14px;
	font-weight: 600;
	color: #1e293b;
	transition: color 0.2s;
}

.verification-check:hover .verification-check-text {
	color: #059669;
}

.verification-check-status-text {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	color: #059669;
	font-weight: 500;
}

.verification-check-status-text.success {
	color: #059669;
}

.verification-check-status-text.error {
	color: #dc2626;
}

.verification-check-status-text.warning {
	color: #d97706;
}

.verification-check-status-dot {
	width: 8px;
	height: 8px;
	background: #10b981;
	border-radius: 50%;
	animation: pulse 2s infinite;
}

.verification-check-status-text.success .verification-check-status-dot {
	background: #10b981;
}

.verification-check-status-text.error .verification-check-status-dot {
	background: #dc2626;
}

.verification-check-status-text.warning .verification-check-status-dot {
	background: #d97706;
}

.verification-check-progress {
	margin-top: 8px;
	width: 100%;
	background: #f1f5f9;
	border-radius: 4px;
	height: 6px;
	overflow: hidden;
}

.verification-check-progress-bar {
	height: 100%;
	background: linear-gradient(90deg, #10b981 0%, #059669 100%);
	border-radius: 4px;
	transition: width 1s ease-out;
}

/* Error state styling for verification checks */
.verification-check.error .verification-check-progress-bar {
	background: linear-gradient(90deg, #ef4444 0%, #dc2626 100%);
}

.verification-check.error:hover .verification-check-content {
	border-color: #dc2626;
}

.verification-check.error:hover .verification-check-bg {
	background: linear-gradient(90deg, #fef2f2 0%, #fee2e2 50%, #fef2f2 100%);
}

.verification-check.error:hover .verification-check-text {
	color: #dc2626;
}

/* Verification Summary */
.verification-summary {
	margin-top: 24px;
	display: flex;
	justify-content: center;
}

.summary-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	background: linear-gradient(90deg, #10b981 0%, #059669 100%);
	border-radius: 20px;
	color: white;
	font-size: 14px;
	font-weight: 600;
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.25);
}

.summary-badge.summary-success {
	background: linear-gradient(90deg, #10b981 0%, #059669 100%);
}

.summary-badge.summary-error {
	background: linear-gradient(90deg, #ef4444 0%, #dc2626 100%);
}

.summary-badge.summary-warning {
	background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%);
}

.summary-icon {
	width: 16px;
	height: 16px;
}

.summary-pulse {
	width: 8px;
	height: 8px;
	background: white;
	border-radius: 50%;
	animation: bounce 1s infinite;
}

@keyframes bounce {
	0%,
	20%,
	53%,
	80%,
	100% {
		transform: translate3d(0, 0, 0);
	}
	40%,
	43% {
		transform: translate3d(0, -8px, 0);
	}
	70% {
		transform: translate3d(0, -4px, 0);
	}
	90% {
		transform: translate3d(0, -2px, 0);
	}
}

/* Certificate Preview Card */
.certificate-preview-card {
	border: none;
	border-radius: 16px;
	background: white;
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.certificate-preview-content {
	padding: 24px;
}

.certificate-header {
	text-align: center;
	margin-bottom: 24px;
}

.certificate-award-icon {
	position: relative;
	width: 64px;
	height: 64px;
	background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.25);
}

.certificate-award-icon svg {
	width: 32px;
	height: 32px;
	color: white;
}

.award-border {
	position: absolute;
	inset: -8px;
	border: 2px dashed #f59e0b;
	border-radius: 50%;
	animation: pulse 2s infinite;
}

.certificate-type-badge {
	background: #fef3c7;
	color: #92400e;
	border: 1px solid #fbbf24;
	padding: 4px 12px;
	border-radius: 12px;
	font-size: 12px;
	font-weight: 500;
	margin-bottom: 12px;
	display: inline-block;
}

.certificate-title {
	font-size: 20px;
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 8px;
	line-height: 1.3;
}

.certificate-awarded {
	color: #64748b;
	font-size: 14px;
	margin-bottom: 4px;
}

.certificate-recipient {
	font-size: 32px;
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 8px;
}

.certificate-date {
	font-size: 14px;
	color: #64748b;
}

/* Certificate Image Display */
.certificate-image-section {
	margin: 24px 0;
	text-align: center;
	background: #f8fafc;
	border-radius: 12px;
	padding: 24px;
	border: 1px solid #e2e8f0;
}

.certificate-image {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
	border: 1px solid #e2e8f0;
}

/* Certificate Visual */
.certificate-visual {
	background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
	border-radius: 12px;
	padding: 24px;
	border: 1px solid #e2e8f0;
	margin-bottom: 24px;
}

.certificate-paper {
	aspect-ratio: 4 / 3;
	background: white;
	border-radius: 8px;
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
	padding: 16px;
	position: relative;
	overflow: hidden;
}

.paper-pattern-1 {
	position: absolute;
	top: 0;
	right: 0;
	width: 80px;
	height: 80px;
	background: linear-gradient(225deg, rgba(251, 191, 36, 0.2) 0%, transparent 100%);
	border-bottom-left-radius: 50%;
}

.paper-pattern-2 {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 64px;
	height: 64px;
	background: linear-gradient(45deg, rgba(234, 88, 12, 0.2) 0%, transparent 100%);
	border-top-right-radius: 50%;
}

.paper-content {
	position: relative;
	z-index: 1;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.paper-header {
	text-align: center;
	margin-bottom: 16px;
}

.paper-logo {
	width: 32px;
	height: 32px;
	background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 8px;
}

.paper-logo svg {
	width: 16px;
	height: 16px;
	color: white;
}

.paper-title {
	font-size: 12px;
	font-weight: 700;
	color: #1e293b;
}

.paper-body {
	text-align: center;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
}

.paper-certifies {
	font-size: 12px;
	color: #64748b;
}

.paper-name {
	font-size: 14px;
	font-weight: 700;
	color: #1e293b;
}

.paper-completed {
	font-size: 12px;
	color: #64748b;
}

.paper-course {
	font-size: 12px;
	color: #374151;
	line-height: 1.3;
}

.paper-footer {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-top: 16px;
}

.paper-signature {
	font-size: 12px;
	color: #64748b;
}

.signature-box {
	width: 24px;
	height: 24px;
	background: #f1f5f9;
	border: 1px solid #e2e8f0;
	border-radius: 2px;
}

/* Download Button */
.download-button {
	width: 100%;
	background: linear-gradient(90deg, #f59e0b 0%, #ea580c 100%);
	color: white;
	border: none;
	padding: 12px 24px;
	border-radius: 8px;
	font-weight: 500;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.25);
	transition: all 0.2s;
}

.download-button:hover {
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	transform: translateY(-1px);
}

.download-icon {
	width: 16px;
	height: 16px;
}

/* Details Card */
.details-card {
	border: none;
	border-radius: 16px;
	background: white;
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.details-content {
	padding: 24px;
}

.details-title {
	font-size: 18px;
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.details-icon {
	width: 20px;
	height: 20px;
	color: #f59e0b;
}

.details-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.detail-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 16px;
	border-radius: 8px;
	border: 1px solid #e2e8f0;
	background: #f8fafc;
}

.detail-highlight {
	background: linear-gradient(90deg, #fef3c7 0%, #fed7aa 100%);
	border-color: #fbbf24;
}

.detail-icon {
	width: 20px;
	height: 20px;
	color: #64748b;
	flex-shrink: 0;
	margin-top: 2px;
}

.detail-highlight .detail-icon {
	color: #f59e0b;
}

.detail-content {
	flex: 1;
}

.detail-label {
	font-size: 14px;
	font-weight: 600;
	color: #1e293b;
	margin-bottom: 4px;
}

.detail-value {
	font-size: 14px;
	color: #64748b;
	line-height: 1.4;
}

.detail-mono {
	font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
	font-size: 12px;
	word-break: break-all;
}

.issuer-info {
	display: flex;
	align-items: center;
	gap: 8px;
}

.verified-icon {
	width: 16px;
	height: 16px;
	color: #10b981;
	fill: currentColor;
}

.detail-with-copy {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

.copy-button {
	background: none;
	border: none;
	padding: 8px;
	border-radius: 4px;
	cursor: pointer;
	color: #f59e0b;
	transition: background-color 0.2s;
}

.copy-button:hover {
	background: #fef3c7;
}

.copy-button svg {
	width: 16px;
	height: 16px;
}

/* Share Card */
.share-card {
	border: none;
	border-radius: 16px;
	background: white;
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.share-content {
	padding: 24px;
}

.share-title {
	font-size: 18px;
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.share-icon {
	width: 20px;
	height: 20px;
	color: #f59e0b;
}

.share-buttons {
	display: flex;
	align-items: center;
	justify-content: space-around;

	gap: 12px;
}

.share-button {
	aspect-ratio: 1;
	border: none;
	border-radius: 12px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.25);
	transition: all 0.2s;
	height: 56px;
}

.share-button:hover {
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	transform: translateY(-1px);
}

.share-button.linkedin {
	background: #0077b5;
	color: white;
}

.share-button.email {
	background: #64748b;
	color: white;
}

.share-button.twitter {
	background: #0ea5e9;
	color: white;
}

.share-button.facebook {
	background: #1877f2;
	color: white;
}

.share-text {
	font-size: 18px;
}

/* Wallet Card */
.wallet-card {
	border: none;
	border-radius: 16px;
	background: white;
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.wallet-content {
	padding: 24px;
}

.wallet-title {
	font-size: 18px;
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.wallet-icon {
	width: 20px;
	height: 20px;
	color: #f59e0b;
}

.wallet-buttons {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.wallet-button {
	flex: 1;
	background: #1e293b;
	color: white;
	border: none;
	height: 56px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 0 16px;
	cursor: pointer;
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.25);
	transition: all 0.2s;
}

.wallet-button:hover {
	background: #0f172a;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	transform: translateY(-1px);
}

.wallet-logo {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.wallet-logo-img {
	width: 40px;
	height: 40px;
	border-radius: 8px;
}

.wallet-info {
	flex: 1;
	text-align: left;
}

.wallet-subtitle {
	font-size: 14px;
	opacity: 0.8;
}

.wallet-name {
	font-size: 16px;
	font-weight: 600;
}

.wallet-arrow {
	width: 16px;
	height: 16px;
	opacity: 0.6;
}

/* Navigation Indicator */
.nav-indicator {
	display: flex;
	justify-content: center;
	padding: 24px;
}

.nav-bar {
	width: 128px;
	height: 4px;
	background: #94a3b8;
	border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
	.main-content {
		padding: 24px 16px;
		gap: 24px;
	}

	.verification-content {
		padding: 24px;
	}

	.status-title {
		font-size: 24px;
	}

	.certificate-title {
		font-size: 18px;
	}

	.certificate-recipient {
		font-size: 24px;
	}
}

/* Animation Classes */
.fade-in {
	animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.slide-in {
	animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateX(-20px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* Loading State */
.loading-card {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(12px);
	border-radius: 24px;
	padding: 48px 32px;
	text-align: center;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
	border: 1px solid rgba(203, 213, 225, 0.5);
	margin: 24px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.loading-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}

.loading-spinner {
	width: 64px;
	height: 64px;
	background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	animation: pulse 2s infinite;
}

.loading-icon {
	width: 32px;
	height: 32px;
	color: white;
}

.loading-title {
	font-size: 28px;
	font-weight: 700;
	color: #1e293b;
	margin: 0;
}

.loading-description {
	font-size: 16px;
	color: #64748b;
	margin: 0;
	line-height: 1.5;
}

/* Error State */
.error-card {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(12px);
	border-radius: 24px;
	padding: 48px 32px;
	text-align: center;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
	border: 1px solid rgba(239, 68, 68, 0.3);
	margin: 24px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.error-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}

.error-icon {
	width: 64px;
	height: 64px;
	background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.error-icon svg {
	width: 32px;
	height: 32px;
	color: white;
}

.error-title {
	font-size: 28px;
	font-weight: 700;
	color: #1e293b;
	margin: 0;
}

.error-description {
	font-size: 16px;
	color: #64748b;
	margin: 0;
	line-height: 1.5;
	max-width: 400px;
}

.error-retry-button {
	background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
	color: white;
	border: none;
	padding: 12px 24px;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
	display: flex;
	align-items: center;
	gap: 8px;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.error-retry-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.error-retry-button svg {
	width: 16px;
	height: 16px;
}

/* Verification Content Wrapper */
.verification-content-wrapper {
	animation: fadeIn 0.5s ease-out;
	flex-direction: column;
	gap: 32px;
}

/* Progressive Disclosure Animations */
.certificate-preview-card,
.details-card,
.share-card,
.wallet-card {
	animation: slideInUp 0.6s ease-out;
}

.certificate-preview-card {
	animation-delay: 0.1s;
}

.details-card {
	animation-delay: 0.2s;
}

.share-card {
	animation-delay: 0.3s;
}

.wallet-card {
	animation-delay: 0.4s;
}

@keyframes slideInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
	.loading-card,
	.error-card {
		margin: 16px;
		padding: 32px 24px;
	}

	.loading-title,
	.error-title {
		font-size: 24px;
	}

	.loading-description,
	.error-description {
		font-size: 14px;
	}

	.loading-spinner,
	.error-icon {
		width: 48px;
		height: 48px;
	}

	.loading-icon,
	.error-icon svg {
		width: 24px;
		height: 24px;
	}

	.certificate-preview-card,
	.details-card,
	.share-card,
	.wallet-card {
		animation-delay: 0.05s;
	}
}

/* URL Input Form Styles */
.input-method-card {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	border-radius: 24px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	margin: 24px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	animation: slideInUp 0.6s ease-out;
}

.url-input-card {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	border-radius: 24px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	margin: 24px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	animation: slideInUp 0.6s ease-out;
}

.input-method-content {
	padding: 48px 40px;
	text-align: center;
}

.url-input-content {
	padding: 48px 40px;
	text-align: center;
}

.input-method-header {
	margin-bottom: 40px;
}

.url-input-header {
	margin-bottom: 40px;
}

/* Method Tabs */
.method-tabs {
	display: flex;
	background: rgba(241, 245, 249, 0.8);
	border-radius: 16px;
	padding: 6px;
	margin-bottom: 32px;
	gap: 4px;
}

.method-tab {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 20px;
	border: none;
	background: transparent;
	border-radius: 12px;
	font-size: 14px;
	font-weight: 500;
	color: #64748b;
	cursor: pointer;
	transition: all 0.2s ease;
}

.method-tab:hover {
	color: #334155;
	background: rgba(255, 255, 255, 0.5);
}

.method-tab.active {
	background: #ffffff;
	color: #1e293b;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tab-icon {
	width: 18px;
	height: 18px;
	stroke-width: 2;
}

.input-method-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 24px;
	background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.url-input-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 24px;
	background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.input-method-icon svg {
	width: 40px;
	height: 40px;
}

.url-input-icon svg {
	width: 40px;
	height: 40px;
}

.input-method-title {
	font-size: 32px;
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 12px;
	line-height: 1.2;
}

.url-input-title {
	font-size: 32px;
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 12px;
	line-height: 1.2;
}

.input-method-description {
	font-size: 16px;
	color: #64748b;
	line-height: 1.5;
	max-width: 480px;
	margin: 0 auto;
}

.url-input-description {
	font-size: 16px;
	color: #64748b;
	line-height: 1.5;
	max-width: 480px;
	margin: 0 auto;
}

.input-form {
	text-align: left;
}

.url-input-form {
	text-align: left;
}

.input-group {
	margin-bottom: 32px;
}

.url-input-group {
	margin-bottom: 32px;
}

.input-label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: #374151;
	margin-bottom: 8px;
}

.url-input-label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: #374151;
	margin-bottom: 8px;
}

.input-wrapper {
	position: relative;
}

.url-input-wrapper {
	position: relative;
}

.input-field {
	width: 100%;
	padding: 16px 20px;
	font-size: 16px;
	border: 2px solid #e5e7eb;
	border-radius: 12px;
	background: #ffffff;
	color: #1f2937;
	transition: all 0.3s ease;
	outline: none;
	font-family: inherit;
}

.input-field.json-textarea {
	min-height: 200px;
	resize: vertical;
	line-height: 1.5;
}

.url-input-field {
	width: 100%;
	padding: 16px 20px;
	font-size: 16px;
	border: 2px solid #e5e7eb;
	border-radius: 12px;
	background: #ffffff;
	color: #1f2937;
	transition: all 0.3s ease;
	outline: none;
}

.input-field:focus {
	border-color: #3b82f6;
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.url-input-field:focus {
	border-color: #3b82f6;
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.input-field::placeholder {
	color: #9ca3af;
}

.url-input-field::placeholder {
	color: #9ca3af;
}

.input-border {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #3b82f6, #1d4ed8);
	transition: width 0.3s ease;
}

.url-input-border {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #3b82f6, #1d4ed8);
	transition: width 0.3s ease;
}

.input-field:focus + .input-border {
	width: 100%;
}

.url-input-field:focus + .url-input-border {
	width: 100%;
}

.input-hint {
	font-size: 14px;
	color: #6b7280;
	margin-top: 8px;
}

.url-input-hint {
	font-size: 14px;
	color: #6b7280;
	margin-top: 8px;
}

.input-button {
	width: 100%;
	padding: 16px 24px;
	background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
	color: white;
	border: none;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.url-input-button {
	width: 100%;
	padding: 16px 24px;
	background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
	color: white;
	border: none;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.input-button:hover:not(:disabled) {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}

.url-input-button:hover:not(:disabled) {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}

.input-button:active:not(:disabled) {
	transform: translateY(0);
}

.url-input-button:active:not(:disabled) {
	transform: translateY(0);
}

.input-button:disabled {
	opacity: 0.7;
	cursor: not-allowed;
	transform: none;
}

.url-input-button:disabled {
	opacity: 0.7;
	cursor: not-allowed;
	transform: none;
}

/* Animations */
@keyframes slideInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

/* Mobile Responsiveness for URL Input */
@media (max-width: 768px) {
	.url-input-card {
		margin: 16px;
		border-radius: 20px;
	}

	.url-input-content {
		padding: 32px 24px;
	}

	.url-input-title {
		font-size: 28px;
	}

	.url-input-description {
		font-size: 14px;
	}

	.url-input-field {
		padding: 14px 16px;
		font-size: 16px;
	}

	.url-input-button {
		padding: 14px 20px;
		font-size: 15px;
	}
}
