:root {
	--main-color: #0066cc;
	--secondary-text-color: #666;
	--header-font: 'Arial', sans-serif;
}

/* Privacy Policy Styles */
.privacy-main {
	margin-top: 80px;
	padding: 40px 0;
	background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	min-height: 100vh;
}

.privacy-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.privacy-header {
	text-align: center;
	margin-bottom: 60px;
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 0.8s ease forwards;
}

.privacy-title {
	font-size: 3.5rem;
	color: var(--main-color);
	margin-bottom: 20px;
	font-weight: bold;
	position: relative;
}

.privacy-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 4px;
	background: linear-gradient(45deg, #0066cc, #94ff00);
	border-radius: 2px;
}

.privacy-meta {
	font-size: 1.1rem;
	color: var(--secondary-text-color);
	margin-bottom: 10px;
}

.privacy-version {
	font-size: 1rem;
	color: #888;
	font-style: italic;
}

.privacy-content {
	background: rgba(255, 255, 255, 0.9);
	border-radius: 20px;
	padding: 40px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(10px);
	position: relative;
	overflow: hidden;
}

.privacy-content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: linear-gradient(45deg, #0066cc, #94ff00, #ff6b6b);
	background-size: 200% 200%;
	animation: gradientMove 3s ease infinite;
}

.privacy-section {
	margin-bottom: 50px;
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.6s ease;
}

.privacy-section.visible {
	opacity: 1;
	transform: translateY(0);
}

.section-title {
	font-size: 2.2rem;
	color: var(--main-color);
	margin-bottom: 20px;
	font-weight: bold;
	position: relative;
	padding-left: 30px;
}

.section-title::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	background: linear-gradient(45deg, #0066cc, #94ff00);
	border-radius: 50%;
}

.section-content {
	font-size: 1.1rem;
	line-height: 1.8;
	color: #333;
	margin-bottom: 20px;
}

.section-list {
	list-style: none;
	padding: 0;
}

.section-list li {
	margin-bottom: 12px;
	padding-left: 30px;
	position: relative;
	font-size: 1.1rem;
	line-height: 1.6;
	color: #444;
}

.section-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	top: 0;
	color: #0066cc;
	font-weight: bold;
	font-size: 1.2rem;
}

.highlight-box {
	background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
	border-left: 5px solid var(--main-color);
	padding: 20px;
	margin: 20px 0;
	border-radius: 10px;
	position: relative;
	overflow: hidden;
}

.highlight-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		45deg,
		transparent,
		rgba(255, 255, 255, 0.3),
		transparent
	);
	transform: translateX(-100%);
	animation: shimmer 2s infinite;
}

.update-info {
	background: linear-gradient(135deg, #fff3e0 0%, #ffcc80 100%);
	border-radius: 15px;
	padding: 25px;
	margin-bottom: 40px;
	border: 2px solid #ff9800;
	position: relative;
}

.update-title {
	font-size: 1.5rem;
	font-weight: bold;
	color: #e65100;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.update-title i {
	font-size: 1.8rem;
}

/* Animations */
@keyframes fadeInUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes gradientMove {
	0%,
	100% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
}

@keyframes shimmer {
	0% {
		transform: translateX(-100%);
	}
	100% {
		transform: translateX(100%);
	}
}

/* Responsive Design */
@media (max-width: 1400px) {
	.privacy-container {
		max-width: 1100px;
		padding: 0 30px;
	}

	.privacy-title {
		font-size: 3.2rem;
	}

	.section-title {
		font-size: 2rem;
	}

	.privacy-content {
		padding: 35px;
	}

	.section-content,
	.section-list li {
		font-size: 1.05rem;
	}
}

@media (max-width: 1200px) {
	.privacy-container {
		max-width: 950px;
		padding: 0 25px;
	}

	.privacy-title {
		font-size: 3rem;
	}

	.section-title {
		font-size: 1.9rem;
		padding-left: 28px;
	}

	.section-title::before {
		width: 18px;
		height: 18px;
	}

	.privacy-content {
		padding: 30px;
	}

	.section-content,
	.section-list li {
		font-size: 1.02rem;
	}

	.privacy-section {
		margin-bottom: 45px;
	}
}

@media (max-width: 992px) {
	.privacy-container {
		max-width: 750px;
		padding: 0 20px;
	}

	.privacy-main {
		padding: 30px 0;
	}

	.privacy-title {
		font-size: 2.8rem;
	}

	.section-title {
		font-size: 1.8rem;
		padding-left: 26px;
	}

	.section-title::before {
		width: 17px;
		height: 17px;
	}

	.privacy-content {
		padding: 25px;
		border-radius: 15px;
	}

	.section-content,
	.section-list li {
		font-size: 1rem;
	}

	.privacy-section {
		margin-bottom: 40px;
	}

	.privacy-header {
		margin-bottom: 50px;
	}

	.update-info {
		padding: 20px;
	}

	.update-title {
		font-size: 1.4rem;
	}
}

@media (max-width: 768px) {
	.privacy-container {
		max-width: 100%;
		padding: 0 15px;
	}

	.privacy-main {
		padding: 20px 0;
	}

	.privacy-title {
		font-size: 2.5rem;
	}

	.section-title {
		font-size: 1.7rem;
		padding-left: 25px;
	}

	.section-title::before {
		width: 16px;
		height: 16px;
	}

	.privacy-content {
		padding: 20px;
	}

	.section-content,
	.section-list li {
		font-size: 0.95rem;
		line-height: 1.6;
	}

	.section-list li {
		padding-left: 25px;
	}

	.privacy-section {
		margin-bottom: 35px;
	}

	.privacy-header {
		margin-bottom: 40px;
	}

	.highlight-box {
		padding: 15px;
		margin: 15px 0;
	}

	.update-info {
		padding: 18px;
	}

	.update-title {
		font-size: 1.3rem;
	}
}

@media (max-width: 600px) {
	.privacy-container {
		padding: 0 12px;
	}

	.privacy-main {
		margin-top: 70px;
		padding: 15px 0;
	}

	.privacy-title {
		font-size: 2.2rem;
	}

	.privacy-title::after {
		width: 80px;
		height: 3px;
	}

	.section-title {
		font-size: 1.6rem;
		padding-left: 22px;
	}

	.section-title::before {
		width: 14px;
		height: 14px;
	}

	.privacy-content {
		padding: 18px;
		border-radius: 12px;
	}

	.section-content,
	.section-list li {
		font-size: 0.9rem;
		line-height: 1.5;
	}

	.section-list li {
		padding-left: 22px;
		margin-bottom: 10px;
	}

	.privacy-section {
		margin-bottom: 30px;
	}

	.privacy-header {
		margin-bottom: 35px;
	}

	.privacy-meta {
		font-size: 1rem;
	}

	.privacy-version {
		font-size: 0.9rem;
	}

	.highlight-box {
		padding: 12px;
		margin: 12px 0;
		border-radius: 8px;
	}

	.update-info {
		padding: 15px;
		border-radius: 12px;
	}

	.update-title {
		font-size: 1.2rem;
	}
}

@media (max-width: 480px) {
	.privacy-container {
		padding: 0 10px;
	}

	.privacy-main {
		margin-top: 60px;
		padding: 10px 0;
	}

	.privacy-title {
		font-size: 2rem;
	}

	.privacy-title::after {
		width: 70px;
		height: 2px;
	}

	.section-title {
		font-size: 1.5rem;
		padding-left: 20px;
	}

	.section-title::before {
		width: 12px;
		height: 12px;
	}

	.privacy-content {
		padding: 15px;
		border-radius: 10px;
	}

	.section-content,
	.section-list li {
		font-size: 0.85rem;
		line-height: 1.4;
	}

	.section-list li {
		padding-left: 20px;
		margin-bottom: 8px;
	}

	.privacy-section {
		margin-bottom: 25px;
	}

	.privacy-header {
		margin-bottom: 30px;
	}

	.privacy-meta {
		font-size: 0.95rem;
	}

	.privacy-version {
		font-size: 0.85rem;
	}

	.highlight-box {
		padding: 10px;
		margin: 10px 0;
		border-radius: 6px;
		font-size: 0.85rem;
	}

	.update-info {
		padding: 12px;
		border-radius: 10px;
	}

	.update-title {
		font-size: 1.1rem;
		flex-direction: column;
		align-items: flex-start;
		gap: 5px;
	}

	.update-title i {
		font-size: 1.4rem;
	}
}

@media (max-width: 300px) {
	.privacy-container {
		padding: 0 8px;
	}

	.privacy-main {
		margin-top: 50px;
		padding: 5px 0;
	}

	.privacy-title {
		font-size: 1.8rem;
	}

	.privacy-title::after {
		width: 60px;
		height: 2px;
	}

	.section-title {
		font-size: 1.3rem;
		padding-left: 18px;
	}

	.section-title::before {
		width: 10px;
		height: 10px;
	}

	.privacy-content {
		padding: 12px;
		border-radius: 8px;
	}

	.section-content,
	.section-list li {
		font-size: 0.8rem;
		line-height: 1.3;
	}

	.section-list li {
		padding-left: 18px;
		margin-bottom: 6px;
	}

	.privacy-section {
		margin-bottom: 20px;
	}

	.privacy-header {
		margin-bottom: 25px;
	}

	.privacy-meta {
		font-size: 0.9rem;
	}

	.privacy-version {
		font-size: 0.8rem;
	}

	.highlight-box {
		padding: 8px;
		margin: 8px 0;
		border-radius: 5px;
		font-size: 0.8rem;
	}

	.update-info {
		padding: 10px;
		border-radius: 8px;
		margin-bottom: 30px;
	}

	.update-title {
		font-size: 1rem;
		flex-direction: column;
		align-items: flex-start;
		gap: 3px;
	}

	.update-title i {
		font-size: 1.2rem;
	}

	.scroll-indicator {
		height: 3px;
	}
}

/* Scroll indicator */
.scroll-indicator {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: rgba(0, 102, 204, 0.2);
	z-index: 1000;
}

.scroll-progress {
	height: 100%;
	background: linear-gradient(45deg, #0066cc, #94ff00);
	width: 0%;
	transition: width 0.3s ease;
}
