
    .enershare-article {
      --primary: #1a5fb4;
      --primary-light: #3584e4;
      --accent: #ff6b35;
      --accent-light: #ff8c5a;
      --text: #1c1c1e;
      --text-secondary: #636366;
      --bg: #f5f7fa;
      --card-bg: #ffffff;
      --border: #e5e7eb;
      --success: #34c759;
      --warning: #ff9500;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      line-height: 1.7;
      color: var(--text);
      background: var(--bg);
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 20px 60px;
    }

    .enershare-article * { box-sizing: border-box; }

    /* Hero Section */
    .article-hero {
      background: linear-gradient(135deg, #1a5fb4 0%, #0d3b7a 100%);
      color: white;
      padding: 60px 40px;
      border-radius: 16px;
      margin: 30px 0 40px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(26, 95, 180, 0.25);
    }
    .article-hero::before {
      content: "";
      position: absolute;
      top: -50%;
      right: -20%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
      border-radius: 50%;
    }
    .article-hero h1 {
      font-size: 2.2rem;
      font-weight: 800;
      margin: 0 0 16px;
      line-height: 1.3;
      position: relative;
    }
    .article-hero .hero-subtitle {
      font-size: 1.1rem;
      opacity: 0.9;
      max-width: 700px;
      margin: 0;
      position: relative;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.15);
      backdrop-filter: blur(10px);
      padding: 8px 16px;
      border-radius: 50px;
      font-size: 0.85rem;
      margin-bottom: 20px;
      border: 1px solid rgba(255,255,255,0.2);
    }
    .hero-badge svg { width: 16px; height: 16px; }

    /* Intro Card */
    .intro-card {
      background: var(--card-bg);
      border-radius: 16px;
      padding: 32px;
      margin-bottom: 40px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.06);
      border: 1px solid var(--border);
      position: relative;
    }
    .intro-card p { margin: 0 0 16px; font-size: 1.05rem; color: var(--text-secondary); }
    .intro-card p:last-child { margin-bottom: 0; }
    .intro-card strong { color: var(--text); }
    .intro-card a {
      color: var(--primary);
      text-decoration: none;
      font-weight: 600;
      border-bottom: 2px solid transparent;
      transition: border-color 0.3s;
    }
    .intro-card a:hover { border-bottom-color: var(--primary); }

    /* Section Styling */
    .article-section {
      background: var(--card-bg);
      border-radius: 16px;
      padding: 40px;
      margin-bottom: 30px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.06);
      border: 1px solid var(--border);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .article-section:hover {
      box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    }

    .section-header {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 24px;
      padding-bottom: 20px;
      border-bottom: 2px solid var(--bg);
    }
    .section-number {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
      color: white;
      width: 48px;
      height: 48px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 1.2rem;
      flex-shrink: 0;
      box-shadow: 0 4px 12px rgba(26, 95, 180, 0.3);
    }
    .section-title {
      font-size: 1.5rem;
      font-weight: 700;
      margin: 0;
      color: var(--text);
      line-height: 1.3;
      padding-top: 4px;
    }

    .article-section p {
      margin: 0 0 16px;
      font-size: 1.02rem;
      color: var(--text-secondary);
    }
    .article-section p:last-child { margin-bottom: 0; }
    .article-section strong { color: var(--text); }
    .article-section a {
      color: var(--primary);
      text-decoration: none;
      font-weight: 600;
      border-bottom: 1px solid transparent;
      transition: all 0.3s;
    }
    .article-section a:hover {
      border-bottom-color: var(--primary);
    }

    /* Image Styling */
    .article-image {
      margin: 24px 0;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 24px rgba(0,0,0,0.1);
      position: relative;
    }
    .article-image img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.5s ease;
    }
    .article-image:hover img {
      transform: scale(1.02);
    }
    .image-caption {
      background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
      color: white;
      padding: 20px 16px 12px;
      font-size: 0.9rem;
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
    }

    /* Lists */
    .feature-list {
      list-style: none;
      padding: 0;
      margin: 20px 0;
    }
    .feature-list li {
      padding: 12px 0 12px 44px;
      position: relative;
      border-bottom: 1px solid var(--bg);
      font-size: 1rem;
      color: var(--text-secondary);
    }
    .feature-list li:last-child { border-bottom: none; }
    .feature-list li::before {
      content: "✓";
      position: absolute;
      left: 0;
      top: 12px;
      width: 28px;
      height: 28px;
      background: linear-gradient(135deg, var(--success) 0%, #2db34a 100%);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.85rem;
      font-weight: 700;
      box-shadow: 0 2px 8px rgba(52, 199, 89, 0.3);
    }

    /* Highlight Box */
    .highlight-box {
      background: linear-gradient(135deg, #e8f4fd 0%, #f0f9ff 100%);
      border-left: 4px solid var(--primary);
      padding: 20px 24px;
      border-radius: 0 12px 12px 0;
      margin: 20px 0;
      font-size: 1rem;
      color: var(--text);
    }
    .highlight-box strong { color: var(--primary); }

    /* Scenario Cards */
    .scenario-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-top: 24px;
    }
    .scenario-card {
      border-radius: 12px;
      padding: 24px;
      position: relative;
      overflow: hidden;
    }
    .scenario-card.good {
      background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
      border: 1px solid #c8e6c9;
    }
    .scenario-card.bad {
      background: linear-gradient(135deg, #ffebee 0%, #fce4ec 100%);
      border: 1px solid #ffcdd2;
    }
    .scenario-card h3 {
      margin: 0 0 16px;
      font-size: 1.1rem;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .scenario-card.good h3 { color: #2e7d32; }
    .scenario-card.bad h3 { color: #c62828; }
    .scenario-card ul {
      margin: 0;
      padding-left: 18px;
      color: var(--text-secondary);
      font-size: 0.95rem;
    }
    .scenario-card ul li { margin-bottom: 8px; }
    .scenario-card ul li:last-child { margin-bottom: 0; }

    /* Specs Grid */
    .specs-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 16px;
      margin: 24px 0;
    }
    .spec-item {
      background: var(--bg);
      padding: 20px;
      border-radius: 12px;
      text-align: center;
      transition: transform 0.3s;
    }
    .spec-item:hover { transform: translateY(-4px); }
    .spec-value {
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--primary);
      display: block;
      margin-bottom: 4px;
    }
    .spec-label {
      font-size: 0.85rem;
      color: var(--text-secondary);
    }

    /* Summary Section */
    .summary-section {
      background: linear-gradient(135deg, #1a5fb4 0%, #0d3b7a 100%);
      color: white;
      padding: 48px 40px;
      border-radius: 16px;
      margin-top: 40px;
      position: relative;
      overflow: hidden;
    }
    .summary-section::before {
      content: "";
      position: absolute;
      bottom: -30%;
      left: -10%;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
      border-radius: 50%;
    }
    .summary-section h2 {
      font-size: 1.6rem;
      margin: 0 0 20px;
      position: relative;
    }
    .summary-section p {
      color: rgba(255,255,255,0.85);
      font-size: 1.05rem;
      margin: 0 0 16px;
      position: relative;
    }
    .summary-section a {
      color: #7ec4ff;
      text-decoration: none;
      font-weight: 600;
      border-bottom: 1px solid transparent;
      transition: border-color 0.3s;
    }
    .summary-section a:hover { border-bottom-color: #7ec4ff; }

    /* Product Link Box */
    .product-link-box {
      background: rgba(255,255,255,0.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 12px;
      padding: 20px 24px;
      margin-top: 24px;
      display: flex;
      align-items: center;
      gap: 16px;
      position: relative;
    }
    .product-link-box svg {
      width: 24px;
      height: 24px;
      flex-shrink: 0;
      opacity: 0.8;
    }
    .product-link-box a {
      color: white !important;
      font-size: 1rem;
      word-break: break-all;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .enershare-article { padding: 0 16px 40px; }
      .article-hero { padding: 40px 24px; }
      .article-hero h1 { font-size: 1.6rem; }
      .article-section { padding: 28px 24px; }
      .section-header { flex-direction: column; gap: 12px; }
      .scenario-grid { grid-template-columns: 1fr; }
      .specs-grid { grid-template-columns: repeat(2, 1fr); }
      .summary-section { padding: 36px 24px; }
    }

    /* Animations */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .article-hero, .intro-card, .article-section, .summary-section {
      animation: fadeInUp 0.6s ease-out forwards;
    }
    .intro-card { animation-delay: 0.1s; }
    .article-section:nth-of-type(1) { animation-delay: 0.15s; }
    .article-section:nth-of-type(2) { animation-delay: 0.2s; }
    .article-section:nth-of-type(3) { animation-delay: 0.25s; }
    .article-section:nth-of-type(4) { animation-delay: 0.3s; }
    .article-section:nth-of-type(5) { animation-delay: 0.35s; }
    .article-section:nth-of-type(6) { animation-delay: 0.4s; }
    .summary-section { animation-delay: 0.45s; }
  