/* PB19 Home: logo/blackhole + title fit (layout handled by pb19-layout.css) */

    /* Logo tıklanmasın */
    #secretLogo{
      cursor: default;
      -webkit-tap-highlight-color: transparent;
      user-select:none;
      -webkit-user-select:none;
      touch-action: manipulation;
      position: relative;
    }
    #secretLogo *{ user-select:none; -webkit-user-select:none; }
    #secretLogo img{ pointer-events:none; }

    /* Blackhole görünmezken dokunuş yakalamasın */
    .pb19-blackhole{ pointer-events:none; }
    .pb19-blackhole.is-on{ pointer-events:auto; }

    /* Hamburger paneli: header içinde */
    .pb19-topbar .pb19-rightbar{ position:relative; }
    .pb19-topbar .pb19-rightbar .pb19-fab{ position:relative !important; inset:auto !important; margin:0; }
    .pb19-topbar .pb19-rightbar .pb19-fab-panel{
      position:absolute !important;
      right:0;
      top: calc(100% + 10px);
      bottom:auto !important;
      min-width:180px;
    }

    /* Home title fit */
    :root{
      --home-title-max: 34px;
      --home-title-min: 12px;
    }
    @media (max-width:520px){
      :root{ --home-title-max: 26px; --home-title-min: 12px; }
    }
    @media (max-width:860px) and (orientation:landscape){
      :root{ --home-title-max: 22px; --home-title-min: 11px; }
    }

    body.pb19-home .home-title{
      margin:0 0 14px 0;
      display:block;
      width:100%;
      max-width:100%;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:clip;
      line-height:1.12;
      font-size: var(--home-title-max);
      padding:0 2px;
      box-sizing:border-box;
    }
    body.pb19-home .home-desc{ margin:0; }
