
  @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,400&family=Source+Sans+Pro:wght@400;600&family=Caveat:wght@700&family=Courier+Prime&display=swap');

  /* --- PAGE SETUP --- */
  body {
    background-color: #000000; /* PITCH BLACK BACKGROUND */
    margin: 0;
    padding: 0;
    font-family: 'Source Sans Pro', sans-serif;
    color: #2c2c2c;
    line-height: 1.7;
  }

  #journal-wrapper {
    display: flex;
    justify-content: center;
    padding: 60px 20px;
    min-height: 100vh;
    background-color: #000000;
  }

  /* --- THE PAPER SHEET --- */
  .journal-sheet {
    width: 100%;
    max-width: 850px;
    background-color: #fffcf5; /* Cream Paper */
    box-shadow: 
      0 0 20px rgba(255, 255, 255, 0.05), 
      0 10px 0 -5px #fffcf5, 
      0 20px 0 -10px #fffcf5, 
      0 30px 40px rgba(0,0,0,0.5);
    position: relative;
    padding: 80px 60px;
    box-sizing: border-box;
    margin-bottom: 60px;
  }

  /* The Red Margin Line */
  .journal-sheet::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 60px;
    width: 2px;
    background-color: #ffcccc;
    z-index: 0;
  }

  /* The Blue Horizontal Lines */
  .journal-content-layer {
    position: relative;
    z-index: 1;
    background-image: linear-gradient(#e1e8f0 1px, transparent 1px);
    background-size: 100% 32px;
    line-height: 32px;
  }

  /* --- TYPOGRAPHY --- */
  h1.main-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.2;
    border-bottom: 3px solid #1a1a1a;
    padding-bottom: 20px;
    text-align: center;
  }
  
  .subtitle {
    text-align: center;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin-top: -10px;
    margin-bottom: 40px;
    font-size: 0.9rem;
  }

  h2.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #2c3e50;
    margin-top: 64px;
    margin-bottom: 32px;
    font-weight: 700;
    background-color: #fffcf5;
    display: inline-block;
    padding-right: 15px;
  }

  h3.sub-title {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #444;
    margin-top: 32px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: #fffcf5;
    display: inline-block;
  }

  /* FIXED: Scoped p and li to .journal-sheet to prevent breaking global site text */
  .journal-sheet p, 
  .journal-sheet li {
    margin-bottom: 0;
    font-size: 1.1rem;
  }

  /* --- STICKY NOTE (Quick Answer) --- */
  .sticky-note {
    background-color: #fff740;
    color: #333;
    padding: 20px;
    font-family: 'Caveat', cursive;
    font-size: 1.3rem;
    line-height: 1.4;
    transform: rotate(-1deg);
    box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
    margin: 32px auto;
    border-bottom-right-radius: 20px 5px;
    position: relative;
    width: 90%;
  }
  .sticky-note strong {
    display: block;
    font-weight: 700;
    margin-bottom: 5px;
    text-decoration: underline;
    font-family: 'Source Sans Pro', sans-serif; /* Readable header for sticky */
    font-size: 1rem;
    text-transform: uppercase;
  }
  /* Tape effect */
  .sticky-note::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 45%;
    width: 60px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.4);
    border-left: 1px solid rgba(0,0,0,0.05);
    border-right: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    transform: rotate(2deg);
  }

  /* --- LIST STYLES (FIXED) --- */
  /* Added .journal-sheet prefix to prevent orange dots on other website tabs */
  .journal-sheet ul {
    list-style: none;
    padding-left: 0;
    margin-top: 0;
  }
  .journal-sheet ul li {
    position: relative;
    padding-left: 25px;
  }
  .journal-sheet ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 30px;
  }

  /* --- HIGHLIGHTER --- */
  .highlight {
    background: linear-gradient(120deg, rgba(255, 225, 0, 0.4) 0%, rgba(255, 225, 0, 0.1) 100%);
    padding: 0 3px;
  }

  /* --- MOBILE --- */
  @media (max-width: 768px) {
    .journal-sheet { padding: 40px 20px; }
    .journal-sheet::before { left: 20px; }
    h1.main-title { font-size: 2rem; }
    .sticky-note { width: 100%; transform: rotate(0); }
  }
