  :root {
    --ink: #1a1a2e;
    --paper: #FAF7F2;
    --ruled: #d6cfc2;
    --accent: #14400F;
    --accent-light: #ede6f7;
    --gold: #b8860b;
    --card-bg: white;
    --shadow: rgba(107,63,160,0.10);
  }

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

  body {
    background-color: var(--paper);

    color: var(--ink);
    font-family:Helvetica, sans-serif;
    font-weight: 300;
    min-height: 100vh;
    padding: 2rem 1rem 4rem;
  }

  .page-wrap {
    max-width: 720px;
    margin: 0 auto;
  }

  header {
    text-align: center;
    padding: 2.5rem 0 2rem;
    border-bottom: 2px solid var(--accent);
    margin-bottom: 2.5rem;
    position: relative;
  }

  header::before {
    content: '❧';
    display: block;
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
  }

  h1 {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
    font-weight: 700;
    color: var(--accent);
    line-height: 1.2;
    letter-spacing: -0.01em;
  }

  .inLinePhrase{

      font-weight:600;
}

  .subtitle {
    font-size: 0.9rem;
    color: #601F4D;
    margin-top: 0.5rem;
    font-style: italic;
    letter-spacing: 0.04em;
  }

  .expression-card {
    background: var(--card-bg);
    border-left: 4px solid var(--accent);
    border-radius: 0 8px 8px 0;
    padding: 1.4rem 1.6rem;
    margin-bottom: 1.6rem;
    box-shadow: 2px 3px 12px var(--shadow);
    animation: fadeUp 0.5s ease both;
  }

  .expression-card:nth-child(1) { animation-delay: 0.05s; }
  .expression-card:nth-child(2) { animation-delay: 0.10s; }
  .expression-card:nth-child(3) { animation-delay: 0.15s; }
  .expression-card:nth-child(4) { animation-delay: 0.20s; }
  .expression-card:nth-child(5) { animation-delay: 0.25s; }
  .expression-card:nth-child(6) { animation-delay: 0.30s; }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .phrase {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.4rem;
  }

  .phrase .number {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--gold);
    margin-right: 0.4rem;
    vertical-align: middle;
  }

  .definition {
    font-size: 0.85rem;
    color: #35192D;
    line-height: 1.6;
    margin-bottom: 0.9rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px dashed var(--ruled);
  }

  .example {
   /* font-size: 0.95rem;*/
    line-height: 1.7;
    color: #35192D;
    font-style: italic;
    font-weight:500;
  }

  .example .speaker {
    font-style: normal;
    font-weight: 400;
    color: purple;
    font-size: 0.8rem;
    margin-right: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  .dialog-line {
    display: block;
    margin-bottom: 0.3rem;
  }

  footer {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.8rem;
    color: #aaa;
    font-style: italic;
  }
