* { 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.7;
    color: #333;
    background: #FFF5F7;
}

/* Navigation */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 107, 157, 0.15);
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav a {
    text-decoration: none;
    color: #FF6B9D;
    font-weight: 600;
    font-size: 14px;
    transition: opacity 0.2s;
}

.nav a:hover { opacity: 0.7; }

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: #FF6B9D;
    text-decoration: none;
}

.nav-logo img {
    width: 28px;
    height: 28px;
    border-radius: 6px;
}

/* Article Hero */
.article-hero {
    background: linear-gradient(135deg, #FF6B9D 0%, #C850C0 50%, #FF6B9D 100%);
    color: white;
    padding: 80px 24px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.article-hero::before {
    content: '💝';
    position: absolute;
    font-size: 200px;
    opacity: 0.08;
    top: -30px;
    right: -30px;
}

.article-hero::after {
    content: '🎁';
    position: absolute;
    font-size: 150px;
    opacity: 0.06;
    bottom: -20px;
    left: -20px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.article-hero h1 {
    font-size: 42px;
    font-weight: 800;
    max-width: 700px;
    margin: 0 auto 16px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.article-hero .subtitle {
    font-size: 18px;
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto 24px;
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 13px;
    opacity: 0.85;
    flex-wrap: wrap;
}

/* Content */
.content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Intro */
.intro {
    background: white;
    border-radius: 16px;
    padding: 32px;
    margin: -30px auto 40px;
    position: relative;
    z-index: 10;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.intro p {
    color: #555;
    font-size: 16px;
    margin-bottom: 12px;
}

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

/* Quick Nav */
.quick-nav {
    background: white;
    border-radius: 16px;
    padding: 24px 32px;
    margin-bottom: 40px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.quick-nav h2 {
    font-size: 16px;
    color: #FF6B9D;
    margin-bottom: 16px;
    font-weight: 700;
}

.quick-nav-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.qn-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: #555;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.qn-item:hover {
    background: #FFF0F3;
    color: #FF6B9D;
}

.qn-num {
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, #FF6B9D, #FF8BA7);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.qn-price {
    margin-left: auto;
    color: #999;
    font-size: 13px;
}

/* Product Cards */
.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 32px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 36px rgba(0,0,0,0.12);
}

.product-image {
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image .emoji-icon {
    font-size: 80px;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
    z-index: 2;
}

.product-image .rank {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    color: #FF6B9D;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    z-index: 3;
}

.product-image .cat-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #555;
    z-index: 3;
}

.product-info {
    padding: 28px 32px 32px;
}

.product-info h3 {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
    line-height: 1.3;
}

.product-info h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.product-info h3 a:hover { color: #FF6B9D; }

.product-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.stars {
    color: #FFB800;
    font-size: 15px;
    letter-spacing: 1px;
}

.stars .rt {
    color: #888;
    font-size: 13px;
    margin-left: 4px;
    letter-spacing: 0;
}

.price {
    background: #E8F5E9;
    color: #2E7D32;
    padding: 4px 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
}

.desc {
    color: #555;
    font-size: 15px;
    margin-bottom: 16px;
    line-height: 1.7;
}

.why-great {
    background: linear-gradient(135deg, #FFF8E1, #FFF3E0);
    border-left: 4px solid #FFB800;
    padding: 16px 20px;
    border-radius: 0 12px 12px 0;
    margin-bottom: 20px;
}

.why-great strong {
    display: block;
    color: #E65100;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.why-great p {
    color: #555;
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

.shop-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FF9900;
    color: white;
    padding: 12px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(255, 153, 0, 0.3);
}

.shop-btn:hover {
    background: #E68A00;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 153, 0, 0.4);
}

/* Gradients */
.grad-1 { background: linear-gradient(135deg, #FFE5EC, #FFB3C6); }
.grad-2 { background: linear-gradient(135deg, #FFECD2, #FCB69F); }
.grad-3 { background: linear-gradient(135deg, #E8EAF6, #C5CAE9); }
.grad-4 { background: linear-gradient(135deg, #FFF3E0, #FFE0B2); }
.grad-5 { background: linear-gradient(135deg, #F3E5F5, #E1BEE7); }
.grad-6 { background: linear-gradient(135deg, #E0F2F1, #B2DFDB); }
.grad-7 { background: linear-gradient(135deg, #FCE4EC, #F8BBD0); }
.grad-8 { background: linear-gradient(135deg, #E8F5E9, #C8E6C9); }
.grad-9 { background: linear-gradient(135deg, #FFF9C4, #FFF176); }
.grad-10 { background: linear-gradient(135deg, #F3E5F5, #CE93D8); }

/* Summary Table */
.summary-section {
    background: white;
    border-radius: 20px;
    padding: 32px;
    margin: 40px 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    overflow-x: auto;
}

.summary-section h2 {
    font-size: 24px;
    color: #FF6B9D;
    margin-bottom: 20px;
}

.summary-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.summary-table th {
    background: #FFF0F3;
    color: #FF6B9D;
    padding: 12px 16px;
    text-align: left;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.summary-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #F5F5F5;
    color: #555;
}

.summary-table tr:hover td { background: #FFFBFC; }

.summary-table a {
    color: #FF6B9D;
    text-decoration: none;
    font-weight: 600;
}

.summary-table a:hover { text-decoration: underline; }

/* App CTA */
.app-cta {
    background: linear-gradient(135deg, #FF6B9D, #C850C0);
    border-radius: 20px;
    padding: 48px 32px;
    margin: 40px 0;
    text-align: center;
    color: white;
}

.app-cta h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.app-cta p {
    opacity: 0.9;
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.cta-btn {
    display: inline-block;
    transition: all 0.3s;
}

.cta-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.cta-btn img { height: 48px; width: auto; }
.cta-btn.google-play img { height: 70px; margin: -11px 0; }

/* Disclosure */
.disclosure {
    margin: 0 0 32px;
    padding: 16px 24px;
    background: #F5F5F5;
    border-radius: 10px;
    font-size: 12px;
    color: #888;
    text-align: center;
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 24px;
    color: #999;
    font-size: 14px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.footer-links a {
    color: #FF6B9D;
    text-decoration: none;
    font-weight: 500;
}

.footer-links a:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 640px) {
    .article-hero { padding: 60px 20px 50px; }
    .article-hero h1 { font-size: 28px; }
    .article-hero .subtitle { font-size: 15px; }

    .content { padding: 0 16px; }

    .intro { padding: 24px; margin-top: -20px; }
    .quick-nav { padding: 20px; }
    .quick-nav-grid { grid-template-columns: 1fr; }

    .product-image { height: 200px; }
    .product-info { padding: 20px 24px 28px; }
    .product-info h3 { font-size: 19px; }

    .summary-section { padding: 20px 16px; }
    .summary-table { font-size: 12px; }
    .summary-table th, .summary-table td { padding: 8px 10px; }

    .app-cta { padding: 36px 24px; }
    .app-cta h2 { font-size: 22px; }
}

/* Blog Index Styles */
.blog-hero {
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8BA7 100%);
    color: white;
    padding: 60px 24px;
    text-align: center;
}

.blog-hero h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
}

.blog-hero p {
    font-size: 16px;
    opacity: 0.9;
}

.blog-content {
    max-width: 900px;
    margin: -20px auto 0;
    padding: 0 24px 60px;
    position: relative;
    z-index: 10;
}

.featured-label {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B9D, #C850C0);
    color: white;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
    margin-bottom: 24px;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 40px rgba(0,0,0,0.14);
}

.blog-card-image {
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.blog-card-image .card-emoji {
    font-size: 64px;
    z-index: 2;
}

.blog-card-image .card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px;
    background: linear-gradient(transparent, rgba(0,0,0,0.5));
    color: white;
    z-index: 3;
}

.blog-card-image .card-overlay .card-tag {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.blog-card-body {
    padding: 24px 28px 28px;
}

.blog-card-body h2 {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
    line-height: 1.3;
}

.blog-card-body .card-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: #999;
    margin-bottom: 12px;
}

.blog-card-body p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.read-more {
    color: #FF6B9D;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.coming-soon {
    text-align: center;
    padding: 60px 24px;
    color: #BBB;
}

.coming-soon .cs-icon { font-size: 48px; margin-bottom: 16px; }
.coming-soon h3 { font-size: 18px; color: #999; margin-bottom: 8px; }
.coming-soon p { font-size: 14px; }
