    :root {
      --red: #e4091c;
      --blue: #0071bc;
      --dark: #131222;
      --panel: #1b1a2e;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: system-ui, -apple-system, Segoe UI, sans-serif;
    }

    /* body {
      background: linear-gradient(var(--red), var(--blue));
      min-height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
    } */
     
    .globe{
        background: linear-gradient(var(--red), var(--blue));
        min-height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .kraheb-chat {
      width: 100%;
      max-width: 960px;
      height: 70vh;
      background: linear-gradient(180deg, #131222, #0b0a16);
      border-radius: 22px;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      box-shadow: 0 25px 70px rgba(0, 0, 0, .6);
    }

    .kraheb-header {
      padding: 16px 18px;
      background: linear-gradient(90deg, #131222, #0071bc22);
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .header-left {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .logo-circle {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--red), var(--blue));
      display: flex;
      justify-content: center;
      align-items: center;
      color: white;
      font-weight: 700;
    }

    .header-text h3 {
      color: white;
      font-size: 16px;
    }

    .ai-badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 11px;
      color: #38bdf8;
    }

    .header-actions {
      color: #94a3b8;
      font-size: 20px;
      cursor: pointer;
    }

    .kraheb-body {
      flex: 1;
      padding: 18px 14px;
      overflow-y: auto;
    }

    .kraheb-body::-webkit-scrollbar {
      width: 5px;
    }

    .kraheb-body::-webkit-scrollbar-thumb {
      background: rgba(255, 255, 255, .18);
      border-radius: 10px;
    }

    .message {
      display: flex;
      margin-bottom: 18px;
      gap: 10px;
    }

    .message.user>div {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
    }

    .message.user {
      justify-content: flex-end;
    }

    .avatar {
      width: 32px;
      height: 32px;
      min-width: 32px;
      min-height: 32px;

      border-radius: 50%;
      background: #0071bc;

      display: flex;
      justify-content: center;
      align-items: center;

      color: white;

      box-shadow: 0 0 0 rgba(0, 113, 188, .6);
      animation: aiPulse 2.2s infinite;
    }

    .avatar i {
      font-size: 15px;
      line-height: 1;
      display: block;
    }

    .message.user .avatar {
      background: var(--red);
      animation: none;
    }

    @keyframes aiPulse {
      0% {
        box-shadow: 0 0 0 0 rgba(0, 113, 188, .6)
      }

      70% {
        box-shadow: 0 0 0 8px rgba(0, 113, 188, 0)
      }

      100% {
        box-shadow: 0 0 0 0 rgba(0, 113, 188, 0)
      }
    }

    .bubble {
      padding: 14px 16px;
      border-radius: 18px;
      max-width: 72%;
      background: var(--panel);
      color: white;
      line-height: 1.45;
    }

    .message.user .bubble {
      background: linear-gradient(135deg, var(--red), #b10716);
    }

    .time {
      font-size: 11px;
      color: white;
      margin-top: 6px;
    }

    .typing-bubble {
      display: flex;
      gap: 6px;
    }

    .typing-bubble span {
      width: 6px;
      height: 6px;
      background: #60a5fa;
      border-radius: 50%;
      animation: typing 1.4s infinite;
    }

    .typing-bubble span:nth-child(2) {
      animation-delay: .2s
    }

    .typing-bubble span:nth-child(3) {
      animation-delay: .4s
    }

    @keyframes typing {

      0%,
      80%,
      100% {
        opacity: .3
      }

      40% {
        opacity: 1
      }
    }

    /* QUICK ACTIONS */
    .quick-actions {
      padding: 12px 14px;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: center;
      border-top: 1px solid rgba(255, 255, 255, .08);
    }

    .quick-actions button {
      background: rgba(0, 113, 188, .15);
      border: 1px solid rgba(0, 113, 188, .35);
      padding: 8px 14px;
      border-radius: 999px;
      color: white;
      font-size: 12px;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: .25s;
    }

    .quick-actions button:hover {
      background: var(--blue);
    }

    /* INPUT BAR */
    .kraheb-input {
      padding: 12px;
      display: flex;
      gap: 10px;
      background: var(--dark);
      border-top: 1px solid rgba(255, 255, 255, .08);
    }

    .kraheb-input input {
      flex: 1;
      background: #1d1c30;
      border: none;
      outline: none;
      border-radius: 999px;
      padding: 12px 16px;
      color: white;
      font-size: 14px;
    }

    .icon-btn {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: #1d1c30;
      display: flex;
      justify-content: center;
      align-items: center;
      color: white;
      cursor: pointer;
      transition: .2s;
    }

    .icon-btn:hover {
      background: var(--blue);
    }

    .send-btn {
      background: var(--red);
    }

    /* MOBILE */
    @media(max-width:600px) {
      .kraheb-chat {
        height: 100vh;
        border-radius: 0;
        max-width: 100%;
      }
    }