:root {
	--bg-dark: #121212;
	--bg-darker: #0E0E0E;
	--text-light: #E0E0E0;
	--text-muted: #8C8C8C;
	--accent-blue: #4A90E2;
	--accent-green: #38B2AC;
	--border-color: #2C2C2C;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	background-color: var(--bg-dark);
	color: var(--text-light);
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
	line-height: 1.6;
	margin-bottom: 100px;
	background-image:
		linear-gradient(to right,
			rgba(74, 144, 226, 0.05),
			rgba(56, 178, 172, 0.05));
}

.container {
	max-width: 900px;
	margin: 0 auto;
	padding: 40px 20px;
}

.header {
	text-align: center;
	margin-bottom: 40px;
	animation: fadeInDown 0.6s ease-out;
}

.title {
	color: var(--accent-blue);
	font-size: 3em;
	font-weight: 600;
	margin-bottom: 15px;
	text-shadow: 0 4px 6px rgba(74, 144, 226, 0.2);
}

.subtitle {
	color: var(--text-muted);
	font-size: 1.1em;
	max-width: 600px;
	margin: 0 auto;
}

.section {
	background-color: rgba(30, 30, 30, 0.7);
	border-radius: 12px;
	padding: 20px;
	margin-bottom: 20px;
	box-shadow:
		0 10px 25px rgba(0, 0, 0, 0.1),
		0 6px 10px rgba(0, 0, 0, 0.08);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(74, 144, 226, 0.1);
	transition: all 0.3s ease;
}

.section:hover {
	box-shadow:
		0 15px 35px rgba(0, 0, 0, 0.15),
		0 8px 15px rgba(0, 0, 0, 0.1);
}

.section-title {
	color: var(--accent-blue);
	font-size: 1.3em;
	font-weight: 600;
	margin-bottom: 15px;
	border-bottom: 2px solid var(--accent-blue);
	padding-bottom: 10px;
}

.data-row {
	display: flex;
	justify-content: space-between;
	padding: 12px 0;
	border-bottom: 1px solid var(--border-color);
	transition: background-color 0.2s ease;
}

.data-row:last-child {
	border-bottom: none;
}

.data-row:hover {
	background-color: rgba(74, 144, 226, 0.05);
}

.data-label {
	color: var(--text-muted);
	font-weight: 500;
}

.data-value {
	color: var(--text-light);
	text-align: right;
	max-width: 60%;
	overflow: hidden;
	text-overflow: ellipsis;
	font-weight: 300;
}

.loading {
	text-align: center;
	color: var(--accent-blue);
	font-size: 1.5em;
	margin-top: 50px;
	animation: pulse 1.5s infinite;
}

.privacy-notice {
	position: fixed;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	background-color: rgba(255, 165, 0, 0.1);
	border: 1px solid rgba(255, 165, 0, 0.3);
	color: #FFA500;
	padding: 20px 20px;
	border-radius: 8px;
	text-align: center;
	max-width: 500px;
	animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes pulse {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.6;
	}
}

@media (max-width: 768px) {
	.container {
		padding: 20px 10px;
	}

	.title {
		font-size: 2em;
	}

	.section {
		padding: 15px;
	}

	.data-row {
		flex-direction: column;
		align-items: flex-start;
	}

	.data-label {
		margin-bottom: 5px;
	}

	.data-value {
		max-width: 100%;
		text-align: left;
	}
}