* { box-sizing: border-box; margin: 0; padding: 0; }
body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	background: #faf8f6;
	color: #333;
	line-height: 1.6;
	font-size: 15px;
}
a { color: #e8475f; text-decoration: none; }
a:hover { color: #d63851; }
.container { max-width: 900px; margin: 0 auto; padding: 0 20px; }

/* Header */
.header { background: #fff; border-bottom: 1px solid #eee; }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 56px; }
.logo { font-size: 20px; font-weight: 800; color: #e8475f; }
.logo:hover { color: #d63851; }
.header-nav { display: flex; align-items: center; gap: 16px; }
.header-nav a { color: #666; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.header-nav a:hover { color: #e8475f; }
.lang-select {
	background: #f5f5f5; border: 1px solid #ddd; border-radius: 6px;
	padding: 4px 10px; font-size: 13px; color: #555; cursor: pointer; outline: none;
}

/* Hero */
.hero {
	background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 50%, #ff9a9e 100%);
	padding: 60px 20px 65px; text-align: center;
}
.hero h1 { font-size: 32px; font-weight: 800; color: #2d2d2d; margin-bottom: 10px; }
.hero-desc { color: rgba(0,0,0,0.55); font-size: 15px; margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
.search-box {
	display: flex; max-width: 660px; height: 52px; margin: 0 auto;
	background: #fff; border-radius: 26px; overflow: hidden;
	box-shadow: 0 6px 30px rgba(0,0,0,0.12);
}
.search-box input {
	flex: 1; height: 100%; padding: 0 20px; border: none; outline: none;
	font-size: 15px; color: #333; background: transparent;
}
.search-box input::placeholder { color: #aaa; }
.search-box button {
	width: 120px; height: 100%; border: none; cursor: pointer;
	background: #e8475f; color: #fff; font-size: 15px; font-weight: 600;
	transition: background 0.2s;
}
.search-box button:hover { background: #d63851; }
.search-box button:disabled { opacity: 0.6; cursor: default; }
.status { text-align: center; margin-top: 16px; font-size: 14px; color: #e8475f; }
.status.error { color: #d63851; }

/* Result */
.result-section { padding: 20px 20px 0; }
#info { text-align: center; padding: 30px 0; background: #fff; border-radius: 16px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); margin-bottom: 20px; }
#info img.cover { max-height: 320px; border-radius: 12px; margin-bottom: 16px; }
#info h3 { color: #2d2d2d; font-size: 18px; margin: 0 20px 16px; line-height: 1.4; }
.dl-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; padding: 0 20px; }
.dl-btn {
	display: inline-block; padding: 12px 28px; border-radius: 25px;
	font-size: 14px; font-weight: 600; text-decoration: none; transition: transform 0.15s, box-shadow 0.2s;
}
.dl-btn-mp4 { background: #e8475f; color: #fff; box-shadow: 0 4px 12px rgba(232,71,95,0.25); }
.dl-btn-mp4:hover { transform: scale(1.03); box-shadow: 0 6px 18px rgba(232,71,95,0.35); color: #fff; }
.dl-btn-mp3 { background: #fff; color: #e8475f; border: 2px solid #e8475f; }
.dl-btn-mp3:hover { background: #fef0f2; transform: scale(1.03); color: #e8475f; }
.dl-btn.loading { opacity: 0.5; pointer-events: none; }

/* Steps */
.steps { padding: 55px 20px; }
.steps h2 { text-align: center; font-size: 24px; font-weight: 700; color: #2d2d2d; margin-bottom: 32px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step {
	background: #fff; border: 1px solid #f0f0f0; border-radius: 14px;
	padding: 28px 20px; text-align: center; box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.step-num {
	display: inline-flex; align-items: center; justify-content: center;
	width: 48px; height: 48px; border-radius: 50%;
	background: linear-gradient(135deg, #fcb69f, #e8475f); color: #fff;
	font-size: 22px; font-weight: 700; margin-bottom: 14px;
}
.step p { font-size: 14px; color: #666; }

/* Features */
.features { padding: 55px 20px; background: #fff; }
.features h2 { text-align: center; font-size: 24px; font-weight: 700; color: #2d2d2d; margin-bottom: 32px; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-card {
	background: #faf8f6; border: 1px solid #f0ece8; border-radius: 14px;
	padding: 24px; transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover { border-color: #fcb69f; transform: translateY(-3px); }
.feature-card h3 { color: #e8475f; font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: #777; }

/* FAQ */
.faq { padding: 55px 20px; }
.faq h2 { text-align: center; font-size: 24px; font-weight: 700; color: #2d2d2d; margin-bottom: 32px; }
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #eee; padding: 18px 0; }
.faq-item h4 { color: #2d2d2d; font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.faq-item p { color: #777; font-size: 14px; }

/* Legal pages */
.legal { padding: 50px 20px; }
.legal h1 { font-size: 26px; font-weight: 700; color: #2d2d2d; margin-bottom: 24px; }
.legal h3 { font-size: 17px; font-weight: 600; color: #e8475f; margin: 24px 0 8px; }
.legal p { color: #555; font-size: 15px; line-height: 1.75; margin-bottom: 12px; }

/* Footer */
.footer { background: #fff; padding: 28px 20px; border-top: 1px solid #eee; }
.footer-inner { text-align: center; }
.footer-links { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 10px; }
.footer-links a { color: #999; font-size: 13px; transition: color 0.2s; }
.footer-links a:hover { color: #e8475f; }
.footer-copy { color: #bbb; font-size: 13px; }

/* Mobile */
@media (max-width: 768px) {
	.hero { padding: 40px 16px 45px; }
	.hero h1 { font-size: 24px; }
	.search-box { height: 48px; }
	.search-box input { padding: 0 14px; font-size: 14px; }
	.search-box button { width: 100px; font-size: 14px; }
	.steps-grid { grid-template-columns: 1fr; }
	.features-grid { grid-template-columns: 1fr; }
}
