/* Base reset */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
	margin: 0;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
	background: radial-gradient(1200px 700px at 10% -20%, #0b1b33 0%, transparent 60%),
		radial-gradient(1200px 700px at 110% 120%, #0a1a2b 0%, transparent 60%),
		linear-gradient(180deg, #0b1220 0%, #0a0f1a 100%);
	color: #e5e7eb;
}

.wrapper {
	min-height: 100%;
	display: grid;
	place-items: center;
	padding: 24px;
}

.card {
	width: 100%;
	max-width: 560px;
	background: rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(6px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 32px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.logo {
	font-size: 48px;
	margin-bottom: 8px;
}

h1 {
	margin: 0 0 8px;
	font-size: 28px;
	line-height: 1.2;
}

h1, .logo { color: #f1f5f9; }

p {
	margin: 0 0 20px;
	font-size: 16px;
	color: #cbd5e1;
}

.actions { display: flex; gap: 12px; justify-content: center; }

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 18px;
	border-radius: 10px;
	text-decoration: none;
	font-weight: 600;
	transition: transform 0.12s ease, box-shadow 0.12s ease, background-color 0.12s ease;
}

.btn.primary {
	background-color: #0284c7;
	color: white;
	box-shadow: 0 6px 14px rgba(2, 132, 199, 0.35);
}
.btn.primary:hover { transform: translateY(-1px); box-shadow: 0 10px 22px rgba(2, 132, 199, 0.35); }
.btn.primary:active { transform: translateY(0); box-shadow: 0 4px 10px rgba(2, 132, 199, 0.3); }

.footer {
	margin-top: 24px;
	text-align: center;
	font-size: 12px;
	color: #94a3b8;
}

/* Специфичные стили для сайта-визитки */
.profession {
	font-size: 18px;
	color: #60a5fa !important;
	margin-bottom: 16px !important;
	font-weight: 600;
}

.description {
	font-size: 16px !important;
	line-height: 1.6 !important;
	margin-bottom: 32px !important;
}

.skills {
	margin: 32px 0;
}

.skills h2 {
	font-size: 20px;
	margin-bottom: 16px;
	color: #f1f5f9;
}

.skill-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
}

.skill-tag {
	background: rgba(96, 165, 250, 0.2);
	color: #93c5fd;
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 14px;
	border: 1px solid rgba(96, 165, 250, 0.3);
}

.btn.secondary {
	background-color: transparent;
	color: #cbd5e1;
	border: 1px solid rgba(203, 213, 225, 0.3);
}
.btn.secondary:hover { 
	transform: translateY(-1px); 
	background-color: rgba(203, 213, 225, 0.1);
}

.contact-info {
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info h2 {
	font-size: 20px;
	margin-bottom: 16px;
	color: #f1f5f9;
}

.contact-item {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-bottom: 8px;
}

.contact-icon {
	font-size: 16px;
}

.contact-item a {
	color: #93c5fd;
	text-decoration: none;
	transition: color 0.2s ease;
}

.contact-item a:hover {
	color: #60a5fa;
}

@media (max-width: 420px) {
	.card { padding: 24px; border-radius: 12px; }
	h1 { font-size: 22px; }
	.logo { font-size: 40px; }
	
	.skill-tags {
		justify-content: center;
	}
	
	.actions {
		flex-direction: column;
		align-items: center;
	}
	
	.actions .btn {
		width: 100%;
		max-width: 200px;
	}
}
