      /* Módulo de Ranking (Modular) RANKING MODULE STYLES TOP5 */
      #ranking-module10 {
          position: fixed;
          top: 35px;
          right: 20px;
          width: 140px;
          background: rgba(44, 62, 80, 0.85);
          /* Dark neutral background */
          color: #ecf0f1;
          padding: 15px;
          border-radius: 8px;
          font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
          z-index: 400;
          /* High Z-index ensures visibility */
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
          border: 1px solid rgba(255, 255, 255, 0.1);
          backdrop-filter: blur(4px);
          user-select: none;
          /* pointer-events removed to allow hover */
      }

      .ranking-header10 {
          font-size: 0.85rem;
          text-transform: uppercase;
          letter-spacing: 0px;
          color: #bdc3c7;
          text-align: center;
          margin-bottom: 10px;
          padding-bottom: 5px;
          border-bottom: 1px solid rgba(255, 255, 255, 0.15);
          font-weight: bold;
      }

      .ranking-list10 {
          list-style: none;
          padding: 0;
          margin: 0;
          font-size: 0.8rem;
          line-height: 0.8;
      }

      .ranking-row10 {
          display: flex;
          justify-content: space-between;
          margin-bottom: 6px;
          padding: 5px 8px;
          border-radius: 4px;
          transition: all 0.2s ease;
      }

      .ranking-row10:hover {
          background: rgba(255, 255, 255, 0.15);
          transform: scale(1.05);
          cursor: default;
      }

      .ranking-row10:last-child {
          margin-bottom: 0;
      }

      .rank-name10 {
          font-weight: 500;
      }

      .rank-score10 {
          font-weight: bold;
      }

      /* Cores Específicas do Ranking */
      .ranking-row10:nth-child(1) {
          color: #f1c40f;
          text-shadow: 0 0 5px rgba(241, 196, 15, 0.3);
      }

      /* Gold */
      .ranking-row10:nth-child(2) {
          color: #bdc3c7;
      }

      /* Silver */
      .ranking-row10:nth-child(3) {
          color: #e67e22;
      }

      /* Orange/Bronze */
      .ranking-row10:nth-child(n+4) {
          color: #ecf0f1;
      }

      /* White */

      /* Responsive placement */
      @media (max-width: 900px) {
          #ranking-module10 {
              width: 130px;
              padding: 12px;
              font-size: 0.75rem;
          }

          .ranking-header10 {
              font-size: 0.75rem;
          }
      }

      @media (max-width: 768px) {
          #ranking-module10 {
              top: auto;
              bottom: 50px;
              right: 5px;
              width: 120px;
              font-size: 0.7rem;
              padding: 8px;
          }

          .ranking-header10 {
              font-size: 0.7rem;
              margin-bottom: 6px;
          }

          .ranking-row10 {
              padding: 3px 5px;
              margin-bottom: 4px;
          }
      }

      @media (max-width: 480px) {
          #ranking-module10 {
              width: 100px;
              padding: 6px;
              font-size: 0.6rem;
              bottom: 45px;
              right: 3px;
          }

          .ranking-header10 {
              font-size: 0.6rem;
              margin-bottom: 4px;
              padding-bottom: 3px;
          }

          .ranking-list10 {
              font-size: 0.55rem;
              line-height: 1;
          }

          .ranking-row10 {
              padding: 2px 4px;
              margin-bottom: 2px;
          }

          .ranking-row10:hover {
              transform: none;
          }
      }

      @media (max-width: 360px) {
          #ranking-module10 {
              width: 90px;
              padding: 5px;
              font-size: 0.55rem;
          }

          .ranking-header10 {
              font-size: 0.55rem;
          }
      }

      /* Landscape on mobile - hide ranking */
      @media (orientation: landscape) and (max-height: 500px) {
          #ranking-module10 {
              display: none;
          }
      }