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

body { font-family: 'Segoe UI', Arial, sans-serif; color: #333; background: #fff; line-height: 1.7; font-size: 16px; }

a { color: #d63384; text-decoration: none; }
a:hover { text-decoration: underline; }

/* HEADER */
header { background: #fff; border-bottom: 2px solid #f8e1ec; padding: 0 20px; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 8px rgba(0,0,0,.06); }
.header-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { font-size: 1.3rem; font-weight: 700; color: #d63384; white-space: nowrap; }
.logo span { color: #ff6b6b; }
nav { display: flex; gap: 24px; flex-wrap: wrap; }
nav a { font-size: 0.9rem; color: #555; font-weight: 500; }
nav a:hover { color: #d63384; text-decoration: none; }

/* HERO */
.hero { background: linear-gradient(135deg, #ffe0ef 0%, #fff5f0 100%); padding: 64px 20px; text-align: center; }
.hero h1 { font-size: 2.4rem; color: #1a1a2e; margin-bottom: 16px; line-height: 1.25; }
.hero p { font-size: 1.15rem; color: #555; max-width: 620px; margin: 0 auto 28px; }
.btn { display: inline-block; background: #d63384; color: #fff; padding: 13px 30px; border-radius: 30px; font-weight: 600; font-size: 1rem; transition: background .2s; }
.btn:hover { background: #b5286e; text-decoration: none; color: #fff; }
.btn-outline { background: transparent; border: 2px solid #d63384; color: #d63384; margin-left: 12px; }
.btn-outline:hover { background: #d63384; color: #fff; }

/* CONTAINER */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.section { padding: 56px 20px; }
.section-title { font-size: 1.8rem; font-weight: 700; color: #1a1a2e; margin-bottom: 8px; text-align: center; }
.section-subtitle { text-align: center; color: #777; margin-bottom: 36px; font-size: 1.05rem; }

/* CARDS GRID */
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.card { border: 1px solid #f0dce8; border-radius: 12px; padding: 24px; background: #fff; transition: box-shadow .2s, transform .2s; }
.card:hover { box-shadow: 0 8px 24px rgba(214,51,132,.1); transform: translateY(-3px); }
.card-tag { font-size: 0.75rem; font-weight: 700; color: #d63384; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 8px; }
.card h3 { font-size: 1.1rem; margin-bottom: 10px; color: #1a1a2e; }
.card p { font-size: 0.92rem; color: #666; margin-bottom: 14px; }
.card a.read-more { font-size: 0.88rem; font-weight: 600; color: #d63384; }

/* ARTICLE PAGE */
.article-header { background: linear-gradient(135deg, #ffe0ef 0%, #fff5f0 100%); padding: 48px 20px 40px; text-align: center; }
.article-header .breadcrumb { font-size: 0.82rem; color: #999; margin-bottom: 14px; }
.article-header .breadcrumb a { color: #999; }
.article-header h1 { font-size: 2rem; color: #1a1a2e; max-width: 720px; margin: 0 auto 14px; line-height: 1.3; }
.article-header .meta { font-size: 0.85rem; color: #aaa; }

.article-body { max-width: 760px; margin: 48px auto; padding: 0 20px 64px; }
.article-body h2 { font-size: 1.4rem; color: #1a1a2e; margin: 36px 0 14px; }
.article-body h3 { font-size: 1.1rem; color: #333; margin: 24px 0 10px; }
.article-body p { margin-bottom: 18px; color: #444; }
.article-body ul, .article-body ol { padding-left: 22px; margin-bottom: 18px; color: #444; }
.article-body li { margin-bottom: 8px; }
.article-body .highlight-box { background: #fff5f9; border-left: 4px solid #d63384; padding: 16px 20px; border-radius: 0 8px 8px 0; margin: 28px 0; }
.article-body .highlight-box p { margin: 0; font-style: italic; color: #555; }
.article-body a { color: #d63384; font-weight: 500; }

/* CTA BOX */
.cta-box { background: linear-gradient(135deg, #d63384, #ff6b6b); color: #fff; border-radius: 16px; padding: 32px 28px; text-align: center; margin: 40px 0; }
.cta-box h3 { font-size: 1.3rem; margin-bottom: 10px; }
.cta-box p { margin-bottom: 20px; opacity: .9; font-size: 0.95rem; }
.cta-box .btn { background: #fff; color: #d63384; }
.cta-box .btn:hover { background: #f8e1ec; }

/* TIPS LIST */
.tips-list { counter-reset: tips; list-style: none; padding: 0; }
.tips-list li { counter-increment: tips; padding: 16px 16px 16px 60px; position: relative; border-bottom: 1px solid #f5e8f0; }
.tips-list li::before { content: counter(tips); position: absolute; left: 16px; top: 14px; background: #d63384; color: #fff; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; }

/* COMPARISON TABLE */
.comparison-table { width: 100%; border-collapse: collapse; margin: 28px 0; font-size: 0.92rem; }
.comparison-table th { background: #d63384; color: #fff; padding: 12px 16px; text-align: left; }
.comparison-table td { padding: 11px 16px; border-bottom: 1px solid #f0dce8; }
.comparison-table tr:nth-child(even) td { background: #fff9fc; }
.comparison-table .winner { color: #16a34a; font-weight: 600; }

/* FOOTER */
footer { background: #1a1a2e; color: #aaa; padding: 40px 20px 24px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; margin-bottom: 32px; }
footer h4 { color: #fff; font-size: 0.95rem; margin-bottom: 14px; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 8px; }
footer ul a { color: #aaa; font-size: 0.88rem; }
footer ul a:hover { color: #d63384; text-decoration: none; }
.footer-bottom { max-width: 1100px; margin: 0 auto; border-top: 1px solid #2d2d45; padding-top: 20px; text-align: center; font-size: 0.82rem; color: #666; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 { font-size: 1.7rem; }
  nav { gap: 14px; }
  .logo { font-size: 1.1rem; }
  .article-header h1 { font-size: 1.5rem; }
  .btn-outline { margin-left: 0; margin-top: 10px; }
}
