* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	line-height: 1.6;
	color: #333;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	min-height: 100vh;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	xpadding: 20px;
}

header {
	text-align: center;
	padding: 60px 20px;
	color: white;
}

h1 {
	font-size: 3.5em;
	margin-bottom: 10px;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.tagline {
	font-size: 1.5em;
	margin-bottom: 20px;
	opacity: 0.9;
}

.subtitle {
	font-size: 1.1em;
	opacity: 0.8;
	margin-bottom: 30px;
}

.hero-buttons {
	display: flex;
	gap: 15px;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 30px;
}

.btn {
	padding: 15px 30px;
	font-size: 1.1em;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	text-decoration: none;
	display: inline-block;
	transition: transform 0.2s, box-shadow 0.2s;
	font-weight: 600;
}

.btn-primary {
	background: green;
	color: white;
}

.btn-secondary {
	background: white;
	color: #667eea;
}

.btn-thirdly {
	background: orange;
	color: white;
}

.btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.content {
	background: white;
	border-radius: 12px;
	padding: 40px;
	margin-bottom: 30px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.content h2 {
	color: #667eea;
	font-size: 2.2em;
	margin-bottom: 15px;
	border-bottom: 3px solid #667eea;
	padding-bottom: 10px;
}

.content h3 {
	color: #764ba2;
	font-size: 1.6em;
	margin: 25px 0 15px 0;
}

.steps {
	background: #f8f9fa;
	padding: 20px;
	border-radius: 8px;
	margin: 20px 0;
}

.steps ol {
	margin-left: 25px;
}

.steps li {
	margin: 10px 0;
	padding-left: 10px;
}

.warning {
	background: #fff3cd;
	border-left: 5px solid #ffc107;
	padding: 15px;
	margin: 20px 0;
	border-radius: 4px;
}

.warning strong {
	color: #856404;
}

.checklist {
	list-style: none;
	margin: 20px 0;
}

.checklist li {
	padding: 10px 0;
	padding-left: 30px;
	position: relative;
}

.checklist li:before {
	content: "✅";
	position: absolute;
	left: 0;
}

.fun-list {
	list-style: none;
	margin: 20px 0;
}

.fun-list li {
	padding: 8px 0;
	padding-left: 30px;
}

.info-box {
	background: #e7f3ff;
	border-left: 5px solid #2196F3;
	padding: 20px;
	margin: 20px 0;
	border-radius: 4px;
}

.support-box {
  background: #ffff99;
  border: 2px solid #ff0000;
  color: #333;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
  margin: 10px 0;
  font-size: 12px;
}

.support-box h2 {
  margin: 0;
  border-left: 0;
  font-size: 14px;
}

.support-box p {
  margin-bottom: 10px;
  font-size: 12px;
}

.support-box .btn {
  margin-top: 5px;
  background: #ff0000;
  color: #ffff99;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.3s;
}

.support-box .btn:hover {
  background: #cc0000;
}

.faq {
	margin-top: 20px;
}

.faq-item {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #eee;
}

.faq-item:last-child {
	border-bottom: none;
}

.faq-q {
	font-weight: 700;
	color: #667eea;
	margin-bottom: 8px;
}

.faq-a {
	color: #555;
}

.footer {
	border-radius: 12px;
	max-width: 1200px;
	margin: 0 auto;
	background: white;
	padding: 0px 10px 10px 10px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	text-align: center;
}

.disclaimer {
	background: #fff3cd;
	padding: 20px;
	border-radius: 8px;
	margin: 20px 0;
	font-size: 0.95em;
}

.disclaimer ul {
	margin-left: 20px;
	margin-top: 10px;
}

.disclaimer li {
	margin: 8px 0;
}

@media (max-width: 768px) {
	h1 {
		font-size: 2.5em;
	}

	.tagline {
		font-size: 1.2em;
	}

	.content {
		padding: 25px;
	}

	.content h2 {
		font-size: 1.8em;
	}

	.hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.btn {
		width: 100%;
		max-width: 300px;
	}
}

