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

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	min-height: 100vh;
	background: linear-gradient(180deg, #e91e63 0%, #9c27b0 50%, #673ab7 100%);
	position: relative;
	overflow-x: hidden;
}

body::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: 
		radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
	animation: shimmer 6s ease-in-out infinite;
}

@keyframes shimmer {
	0%, 100% { opacity: 0.6; }
	50% { opacity: 1; }
}

.header {
	padding: 16px 20px;
	display: flex;
	align-items: center;
	gap: 12px;
	position: relative;
	z-index: 10;
}

.back-button {
	background: rgba(255, 255, 255, 0.2);
	border: none;
	color: #ffffff;
	font-size: 24px;
	cursor: pointer;
	padding: 8px 12px;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.back-button:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: translateX(-4px);
}

.container {
	padding: 20px;
	max-width: 900px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
	padding-bottom: 80px;
}

.hero-card {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	border: 3px solid rgba(255, 255, 255, 0.3);
	border-radius: 24px;
	padding: 40px 32px;
	margin-bottom: 24px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	text-align: center;
}

.hero-icon {
	font-size: 60px;
	margin-bottom: 16px;
}

.hero-title {
	font-size: 36px;
	font-weight: 900;
	color: #000000;
	margin-bottom: 12px;
}

.hero-subtitle {
	font-size: 16px;
	color: #6b7280;
	line-height: 1.6;
}

.last-updated {
	font-size: 14px;
	color: #9ca3af;
	margin-top: 12px;
	font-weight: 600;
}

.content-card {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	border: 3px solid rgba(255, 255, 255, 0.3);
	border-radius: 24px;
	padding: 32px 28px;
	margin-bottom: 24px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.section-title {
	font-size: 24px;
	font-weight: 900;
	color: #000000;
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.section-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background: linear-gradient(135deg, #8b5cf6, #7c3aed);
	color: #ffffff;
	border-radius: 50%;
	font-size: 18px;
	font-weight: 900;
	flex-shrink: 0;
}

.section-content {
	color: #374151;
	line-height: 1.8;
	font-size: 15px;
}

.section-content p {
	margin-bottom: 16px;
}

.section-content p:last-child {
	margin-bottom: 0;
}

.subsection {
	margin-top: 20px;
	padding-left: 20px;
}

.subsection-title {
	font-weight: 800;
	color: #000000;
	margin-bottom: 12px;
	font-size: 18px;
}

.terms-list {
	list-style: none;
	padding: 0;
	margin-top: 12px;
}

.terms-list li {
	padding: 12px 16px;
	margin-bottom: 8px;
	background: rgba(139, 92, 246, 0.05);
	border-radius: 8px;
	border-left: 3px solid #8b5cf6;
	line-height: 1.6;
}

.highlight-box {
	background: rgba(251, 191, 36, 0.1);
	border: 2px solid #fbbf24;
	border-radius: 12px;
	padding: 16px 20px;
	margin: 16px 0;
}

.highlight-title {
	font-weight: 800;
	color: #92400e;
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.highlight-text {
	color: #78350f;
	line-height: 1.6;
	font-size: 14px;
}

.important-notice {
	background: rgba(239, 68, 68, 0.1);
	border: 2px solid #ef4444;
	border-radius: 12px;
	padding: 16px 20px;
	margin: 16px 0;
}

.important-notice-title {
	font-weight: 800;
	color: #991b1b;
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.important-notice-text {
	color: #7f1d1d;
	line-height: 1.6;
	font-size: 14px;
}

.contact-card {
	background: linear-gradient(135deg, #8b5cf6, #7c3aed);
	border-radius: 24px;
	padding: 32px;
	text-align: center;
	box-shadow: 0 20px 60px rgba(139, 92, 246, 0.4);
	color: #ffffff;
}

.contact-title {
	font-size: 24px;
	font-weight: 900;
	margin-bottom: 12px;
}

.contact-text {
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 20px;
	opacity: 0.9;
}

.contact-email {
	display: inline-block;
	background: rgba(255, 255, 255, 0.2);
	padding: 12px 24px;
	border-radius: 12px;
	color: #ffffff;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.3s ease;
}

.contact-email:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: translateY(-2px);
}

@media (max-width: 600px) {
	.hero-card {
		padding: 32px 24px;
	}

	.content-card {
		padding: 24px 20px;
	}

	.hero-title {
		font-size: 28px;
	}

	.section-title {
		font-size: 20px;
	}
}