html,
body {
  margin: 0;
  padding: 0;
  background: transparent;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
}

/* القطة + الكلام */
.wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  width: 700px;
  max-width: 95vw;
  direction: ltr;
}

/* القطة */
.cat-img {
  width: 170px;
  height: auto;
  flex-shrink: 0;

  margin-right: -35px;

  position: relative;
  z-index: 2;

  user-select: none;
  pointer-events: none;
}

/* منطقة الكلام */
.callout-box {
  width: 500px;
  box-sizing: border-box;

  padding: 10px 20px;

  background: transparent;
  border: none;
  box-shadow: none;

  position: relative;
  z-index: 1;

  direction: rtl;
  text-align: right;

  color: #ffffff;

  /* عشان الأبيض يفضل واضح */
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

/* العنوان */
.box-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;

  color: #000000;

  font-size: 15px;
  font-weight: bold;

  margin-bottom: 12px;

  text-shadow: none;
}

/* النص */
.intro-text {
  margin: 0 0 12px 0;

  color: #ffffff;

  font-size: 13px;
  line-height: 1.7;
}

/* القائمة */
.items-list {
  margin: 0;
  padding-right: 20px;

  color: #ffffff;

  font-size: 13px;
  line-height: 1.8;
}

/* الكلمات الغامقة */
.items-list strong {
  color: #ffffff;
}