:root{
	--color-primary: #0ea5e9;
	--color-primary-hover: #0284c7;
	--color-bg: #f8fafc;
	--color-card-glass: rgba(255, 255, 255, 0.7);
	--color-card-glass-hover: rgba(255, 255, 255, 0.85);
	--color-text: #0f172a;
	--color-muted: #64748b;
	--color-border: rgba(226, 232, 240, 0.8);
	--color-border-hover: rgba(14, 165, 233, 0.3);
	--glass-blur: 20px;
	--glass-border: 1px solid rgba(255, 255, 255, 0.18);
	--shadow-glass: 0 8px 32px 0 rgba(15, 23, 42, 0.08);
	--shadow-flat: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
	font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, 'Apple Color Emoji', 'Segoe UI Emoji';
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
	background-attachment: fixed;
	color: var(--color-text);
	min-height:100vh;
	min-height:100dvh;
	display:flex;flex-direction:column;
	position: relative;
}

body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: 
		radial-gradient(circle at 20% 50%, rgba(14, 165, 233, 0.08) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(99, 102, 241, 0.06) 0%, transparent 50%),
		radial-gradient(circle at 40% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
	pointer-events: none;
	z-index: 0;
}

body > * {
	position: relative;
	z-index: 1;
}

.container{width:100%;max-width:960px;margin:0 auto;padding:16px}
header h1{margin:0 0 4px 0;font-weight:600;color:var(--color-text);letter-spacing:-0.02em}
.muted{color:var(--color-muted)}
.small{font-size:.9rem}

.card{
	background: var(--color-card-glass);
	backdrop-filter: blur(var(--glass-blur));
	-webkit-backdrop-filter: blur(var(--glass-blur));
	border: var(--glass-border);
	border-radius: 24px;
	padding: 24px;
	box-shadow: var(--shadow-flat);
}

.list{list-style:none;padding:0;margin:12px 0}
.list li{
	display:flex;
	justify-content:space-between;
	gap:16px;
	padding:12px 0;
	border-bottom:1px solid rgba(226, 232, 240, 0.5);
}
.list li:last-child{border-bottom:none}
.ok{color:#10b981;font-weight:500}
.warn{color:#f59e0b;font-weight:500}

.actions{margin-top:16px}
.button{
	display:inline-block;
	background: var(--color-primary);
	color: #ffffff;
	text-decoration: none;
	padding: 12px 24px;
	border-radius: 12px;
	font-weight: 600;
	font-size: 15px;
	letter-spacing: -0.01em;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border: none;
	cursor: pointer;
	box-shadow: var(--shadow-flat);
	position: relative;
	overflow: hidden;
}

.button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s;
}

.button:hover::before {
	left: 100%;
}

.button:hover {
	background: var(--color-primary-hover);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(14, 165, 233, 0.25);
}

.button:active {
	transform: translateY(0);
	box-shadow: var(--shadow-flat);
}

.back-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--color-primary);
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	transition: color 0.2s ease;
	white-space: nowrap;
}

.back-link::before {
	content: '←';
	font-size: 16px;
	line-height: 1;
}

.back-link:hover {
	color: var(--color-primary-hover);
}

.footer{margin-top:auto;opacity:.9}

@media (min-width:768px){
	.container{padding:24px}
}


